glProgramNamedParameter4fNv function opengl_glext

void glProgramNamedParameter4fNv(
  1. int id,
  2. int len,
  3. Pointer<Uint8> name,
  4. double x,
  5. double y,
  6. double z,
  7. double w,
)
GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w)

Implementation

void glProgramNamedParameter4fNv(
  int id,
  int len,
  Pointer<Uint8> name,
  double x,
  double y,
  double z,
  double w,
) {
  final glProgramNamedParameter4fNvAsFunction = _glProgramNamedParameter4fNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 id,
            Uint32 len,
            Pointer<Uint8> name,
            Float x,
            Float y,
            Float z,
            Float w,
          )
        >
      >()
      .asFunction<
        void Function(
          int id,
          int len,
          Pointer<Uint8> name,
          double x,
          double y,
          double z,
          double w,
        )
      >();
  return glProgramNamedParameter4fNvAsFunction(id, len, name, x, y, z, w);
}