glVertexFormatNv function opengl_glext
GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride)
Implementation
void glVertexFormatNv(int size, int type, int stride) {
final glVertexFormatNvAsFunction = _glVertexFormatNv
.cast<
NativeFunction<Void Function(Int32 size, Uint32 type, Uint32 stride)>
>()
.asFunction<void Function(int size, int type, int stride)>();
return glVertexFormatNvAsFunction(size, type, stride);
}