glPathSubCommandsNv function opengl_glext
void
glPathSubCommandsNv()
GLAPI void APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords)
Implementation
void glPathSubCommandsNv(
int path,
int commandStart,
int commandsToDelete,
int numCommands,
Pointer<Uint8> commands,
int numCoords,
int coordType,
Pointer<NativeType> coords,
) {
final glPathSubCommandsNvAsFunction = _glPathSubCommandsNv
.cast<
NativeFunction<
Void Function(
Uint32 path,
Uint32 commandStart,
Uint32 commandsToDelete,
Uint32 numCommands,
Pointer<Uint8> commands,
Uint32 numCoords,
Uint32 coordType,
Pointer<NativeType> coords,
)
>
>()
.asFunction<
void Function(
int path,
int commandStart,
int commandsToDelete,
int numCommands,
Pointer<Uint8> commands,
int numCoords,
int coordType,
Pointer<NativeType> coords,
)
>();
return glPathSubCommandsNvAsFunction(
path,
commandStart,
commandsToDelete,
numCommands,
commands,
numCoords,
coordType,
coords,
);
}