void
glVertexAttribIFormat(
- int attribindex,
- int size,
- int type,
- int relativeoffset,
)
GLAPI void APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset)
Implementation
void glVertexAttribIFormat(
int attribindex,
int size,
int type,
int relativeoffset,
) {
final glVertexAttribIFormatAsFunction = _glVertexAttribIFormat
.cast<
NativeFunction<
Void Function(
Uint32 attribindex,
Int32 size,
Uint32 type,
Uint32 relativeoffset,
)
>
>()
.asFunction<
void Function(int attribindex, int size, int type, int relativeoffset)
>();
return glVertexAttribIFormatAsFunction(
attribindex,
size,
type,
relativeoffset,
);
}