glGetActiveVaryingNv function opengl_glext

void glGetActiveVaryingNv(
  1. int program,
  2. int index,
  3. int bufSize,
  4. Pointer<Uint32> length,
  5. Pointer<Uint32> size,
  6. Pointer<Uint32> type,
  7. Pointer<Int8> name,
)
GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)

Implementation

void glGetActiveVaryingNv(
  int program,
  int index,
  int bufSize,
  Pointer<Uint32> length,
  Pointer<Uint32> size,
  Pointer<Uint32> type,
  Pointer<Int8> name,
) {
  final glGetActiveVaryingNvAsFunction = _glGetActiveVaryingNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 program,
            Uint32 index,
            Uint32 bufSize,
            Pointer<Uint32> length,
            Pointer<Uint32> size,
            Pointer<Uint32> type,
            Pointer<Int8> name,
          )
        >
      >()
      .asFunction<
        void Function(
          int program,
          int index,
          int bufSize,
          Pointer<Uint32> length,
          Pointer<Uint32> size,
          Pointer<Uint32> type,
          Pointer<Int8> name,
        )
      >();
  return glGetActiveVaryingNvAsFunction(
    program,
    index,
    bufSize,
    length,
    size,
    type,
    name,
  );
}