glFramebufferTextureLayerExt function

void glFramebufferTextureLayerExt(
  1. int target,
  2. int attachment,
  3. int texture,
  4. int level,
  5. int layer,
)
define glFramebufferTextureLayerEXT GLEW_GET_FUN(__glewFramebufferTextureLayerEXT)
GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC __glewFramebufferTextureLayerEXT
typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)

Implementation

void glFramebufferTextureLayerExt(
    int target, int attachment, int texture, int level, int layer) {
  final glFramebufferTextureLayerExtAsFunction = _glFramebufferTextureLayerExt
      .cast<
          NativeFunction<
              Void Function(Uint32 target, Uint32 attachment, Uint32 texture,
                  Int32 level, Int32 layer)>>()
      .asFunction<
          void Function(
              int target, int attachment, int texture, int level, int layer)>();
  return glFramebufferTextureLayerExtAsFunction(
      target, attachment, texture, level, layer);
}