glTransformFeedbackVaryingsExt function opengl_glext

void glTransformFeedbackVaryingsExt(
  1. int program,
  2. int count,
  3. Pointer<Pointer<Int8>> varyings,
  4. int bufferMode,
)
GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode)

Implementation

void glTransformFeedbackVaryingsExt(
  int program,
  int count,
  Pointer<Pointer<Int8>> varyings,
  int bufferMode,
) {
  final glTransformFeedbackVaryingsExtAsFunction =
      _glTransformFeedbackVaryingsExt
          .cast<
            NativeFunction<
              Void Function(
                Uint32 program,
                Uint32 count,
                Pointer<Pointer<Int8>> varyings,
                Uint32 bufferMode,
              )
            >
          >()
          .asFunction<
            void Function(
              int program,
              int count,
              Pointer<Pointer<Int8>> varyings,
              int bufferMode,
            )
          >();
  return glTransformFeedbackVaryingsExtAsFunction(
    program,
    count,
    varyings,
    bufferMode,
  );
}