glCompressedMultiTexImage1Dext function opengl_glext

void glCompressedMultiTexImage1Dext(
  1. int texunit,
  2. int target,
  3. int level,
  4. int internalformat,
  5. int width,
  6. int border,
  7. int imageSize,
  8. Pointer<NativeType> bits,
)
GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits)

Implementation

void glCompressedMultiTexImage1Dext(
  int texunit,
  int target,
  int level,
  int internalformat,
  int width,
  int border,
  int imageSize,
  Pointer<NativeType> bits,
) {
  final glCompressedMultiTexImage1DextAsFunction =
      _glCompressedMultiTexImage1Dext
          .cast<
            NativeFunction<
              Void Function(
                Uint32 texunit,
                Uint32 target,
                Int32 level,
                Uint32 internalformat,
                Uint32 width,
                Int32 border,
                Uint32 imageSize,
                Pointer<NativeType> bits,
              )
            >
          >()
          .asFunction<
            void Function(
              int texunit,
              int target,
              int level,
              int internalformat,
              int width,
              int border,
              int imageSize,
              Pointer<NativeType> bits,
            )
          >();
  return glCompressedMultiTexImage1DextAsFunction(
    texunit,
    target,
    level,
    internalformat,
    width,
    border,
    imageSize,
    bits,
  );
}