glWeightPathsNv function opengl_glext
void
glWeightPathsNv()
GLAPI void APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights)
Implementation
void glWeightPathsNv(
int resultPath,
int numPaths,
Pointer<Uint32> paths,
Pointer<Float> weights,
) {
final glWeightPathsNvAsFunction = _glWeightPathsNv
.cast<
NativeFunction<
Void Function(
Uint32 resultPath,
Uint32 numPaths,
Pointer<Uint32> paths,
Pointer<Float> weights,
)
>
>()
.asFunction<
void Function(
int resultPath,
int numPaths,
Pointer<Uint32> paths,
Pointer<Float> weights,
)
>();
return glWeightPathsNvAsFunction(resultPath, numPaths, paths, weights);
}