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