glVertexAttribFormat function opengl_glext
void
glVertexAttribFormat()
GLAPI void APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset)
Implementation
void glVertexAttribFormat(
int attribindex,
int size,
int type,
int normalized,
int relativeoffset,
) {
final glVertexAttribFormatAsFunction = _glVertexAttribFormat
.cast<
NativeFunction<
Void Function(
Uint32 attribindex,
Int32 size,
Uint32 type,
Int32 normalized,
Uint32 relativeoffset,
)
>
>()
.asFunction<
void Function(
int attribindex,
int size,
int type,
int normalized,
int relativeoffset,
)
>();
return glVertexAttribFormatAsFunction(
attribindex,
size,
type,
normalized,
relativeoffset,
);
}