glPathSubCommandsNv function opengl_glext

void glPathSubCommandsNv(
  1. int path,
  2. int commandStart,
  3. int commandsToDelete,
  4. int numCommands,
  5. Pointer<Uint8> commands,
  6. int numCoords,
  7. int coordType,
  8. Pointer<NativeType> coords,
)
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,
  );
}