glGetPathMetricRangeNv function opengl_glext

void glGetPathMetricRangeNv(
  1. int metricQueryMask,
  2. int firstPathName,
  3. int numPaths,
  4. int stride,
  5. Pointer<Float> metrics,
)
GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics)

Implementation

void glGetPathMetricRangeNv(
  int metricQueryMask,
  int firstPathName,
  int numPaths,
  int stride,
  Pointer<Float> metrics,
) {
  final glGetPathMetricRangeNvAsFunction = _glGetPathMetricRangeNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 metricQueryMask,
            Uint32 firstPathName,
            Uint32 numPaths,
            Uint32 stride,
            Pointer<Float> metrics,
          )
        >
      >()
      .asFunction<
        void Function(
          int metricQueryMask,
          int firstPathName,
          int numPaths,
          int stride,
          Pointer<Float> metrics,
        )
      >();
  return glGetPathMetricRangeNvAsFunction(
    metricQueryMask,
    firstPathName,
    numPaths,
    stride,
    metrics,
  );
}