glTransformPathNv function opengl_glext

void glTransformPathNv(
  1. int resultPath,
  2. int srcPath,
  3. int transformType,
  4. Pointer<Float> transformValues,
)
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,
  );
}