glCopyPathNv function opengl_glext

void glCopyPathNv(
  1. int resultPath,
  2. int srcPath
)
GLAPI void APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath)

Implementation

void glCopyPathNv(int resultPath, int srcPath) {
  final glCopyPathNvAsFunction = _glCopyPathNv
      .cast<NativeFunction<Void Function(Uint32 resultPath, Uint32 srcPath)>>()
      .asFunction<void Function(int resultPath, int srcPath)>();
  return glCopyPathNvAsFunction(resultPath, srcPath);
}