void
glNamedFramebufferTextureExt(
- int framebuffer,
- int attachment,
- int texture,
- int level,
)
GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level)
Implementation
void glNamedFramebufferTextureExt(
int framebuffer,
int attachment,
int texture,
int level,
) {
final glNamedFramebufferTextureExtAsFunction = _glNamedFramebufferTextureExt
.cast<
NativeFunction<
Void Function(
Uint32 framebuffer,
Uint32 attachment,
Uint32 texture,
Int32 level,
)
>
>()
.asFunction<
void Function(int framebuffer, int attachment, int texture, int level)
>();
return glNamedFramebufferTextureExtAsFunction(
framebuffer,
attachment,
texture,
level,
);
}