glBindImageTextureExt function opengl_glext

void glBindImageTextureExt(
  1. int index,
  2. int texture,
  3. int level,
  4. int layered,
  5. int layer,
  6. int access,
  7. int format,
)
GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format)

Implementation

void glBindImageTextureExt(
  int index,
  int texture,
  int level,
  int layered,
  int layer,
  int access,
  int format,
) {
  final glBindImageTextureExtAsFunction = _glBindImageTextureExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 index,
            Uint32 texture,
            Int32 level,
            Int32 layered,
            Int32 layer,
            Uint32 access,
            Int32 format,
          )
        >
      >()
      .asFunction<
        void Function(
          int index,
          int texture,
          int level,
          int layered,
          int layer,
          int access,
          int format,
        )
      >();
  return glBindImageTextureExtAsFunction(
    index,
    texture,
    level,
    layered,
    layer,
    access,
    format,
  );
}