glTransformFeedbackVaryingsNv function opengl_glext

void glTransformFeedbackVaryingsNv(
  1. int program,
  2. int count,
  3. Pointer<Int32> locations,
  4. int bufferMode,
)
GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode)

Implementation

void glTransformFeedbackVaryingsNv(
  int program,
  int count,
  Pointer<Int32> locations,
  int bufferMode,
) {
  final glTransformFeedbackVaryingsNvAsFunction = _glTransformFeedbackVaryingsNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 program,
            Uint32 count,
            Pointer<Int32> locations,
            Uint32 bufferMode,
          )
        >
      >()
      .asFunction<
        void Function(
          int program,
          int count,
          Pointer<Int32> locations,
          int bufferMode,
        )
      >();
  return glTransformFeedbackVaryingsNvAsFunction(
    program,
    count,
    locations,
    bufferMode,
  );
}