void
glVertexAttribP2ui(
- int index,
- int type,
- int normalized,
- int value,
)
GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value)
Implementation
void glVertexAttribP2ui(int index, int type, int normalized, int value) {
final glVertexAttribP2uiAsFunction = _glVertexAttribP2ui
.cast<
NativeFunction<
Void Function(
Uint32 index,
Uint32 type,
Int32 normalized,
Uint32 value,
)
>
>()
.asFunction<
void Function(int index, int type, int normalized, int value)
>();
return glVertexAttribP2uiAsFunction(index, type, normalized, value);
}