glWeightPathsNv function opengl_glext

void glWeightPathsNv(
  1. int resultPath,
  2. int numPaths,
  3. Pointer<Uint32> paths,
  4. Pointer<Float> weights,
)
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);
}