glVertexArrayVertexAttribFormatExt function opengl_glext

void glVertexArrayVertexAttribFormatExt(
  1. int vaobj,
  2. int attribindex,
  3. int size,
  4. int type,
  5. int normalized,
  6. int relativeoffset,
)
GLAPI void APIENTRY glVertexArrayVertexAttribFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset)

Implementation

void glVertexArrayVertexAttribFormatExt(
  int vaobj,
  int attribindex,
  int size,
  int type,
  int normalized,
  int relativeoffset,
) {
  final glVertexArrayVertexAttribFormatExtAsFunction =
      _glVertexArrayVertexAttribFormatExt
          .cast<
            NativeFunction<
              Void Function(
                Uint32 vaobj,
                Uint32 attribindex,
                Int32 size,
                Uint32 type,
                Int32 normalized,
                Uint32 relativeoffset,
              )
            >
          >()
          .asFunction<
            void Function(
              int vaobj,
              int attribindex,
              int size,
              int type,
              int normalized,
              int relativeoffset,
            )
          >();
  return glVertexArrayVertexAttribFormatExtAsFunction(
    vaobj,
    attribindex,
    size,
    type,
    normalized,
    relativeoffset,
  );
}