glFramebufferTexture1Dext function opengl_glext
void
glFramebufferTexture1Dext()
GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
Implementation
void glFramebufferTexture1Dext(
int target,
int attachment,
int textarget,
int texture,
int level,
) {
final glFramebufferTexture1DextAsFunction = _glFramebufferTexture1Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 attachment,
Uint32 textarget,
Uint32 texture,
Int32 level,
)
>
>()
.asFunction<
void Function(
int target,
int attachment,
int textarget,
int texture,
int level,
)
>();
return glFramebufferTexture1DextAsFunction(
target,
attachment,
textarget,
texture,
level,
);
}