void
glVertexAttribLFormatNv(
- int index,
- int size,
- int type,
- int stride,
)
GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride)
Implementation
void glVertexAttribLFormatNv(int index, int size, int type, int stride) {
final glVertexAttribLFormatNvAsFunction = _glVertexAttribLFormatNv
.cast<
NativeFunction<
Void Function(Uint32 index, Int32 size, Uint32 type, Uint32 stride)
>
>()
.asFunction<void Function(int index, int size, int type, int stride)>();
return glVertexAttribLFormatNvAsFunction(index, size, type, stride);
}