glTransformPathNv function opengl_glext
void
glTransformPathNv()
GLAPI void APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues)
Implementation
void glTransformPathNv(
int resultPath,
int srcPath,
int transformType,
Pointer<Float> transformValues,
) {
final glTransformPathNvAsFunction = _glTransformPathNv
.cast<
NativeFunction<
Void Function(
Uint32 resultPath,
Uint32 srcPath,
Uint32 transformType,
Pointer<Float> transformValues,
)
>
>()
.asFunction<
void Function(
int resultPath,
int srcPath,
int transformType,
Pointer<Float> transformValues,
)
>();
return glTransformPathNvAsFunction(
resultPath,
srcPath,
transformType,
transformValues,
);
}