glTransformFeedbackVaryings function opengl_glext

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

Implementation

void glTransformFeedbackVaryings(
  int program,
  int count,
  Pointer<Pointer<Int8>> varyings,
  int bufferMode,
) {
  final glTransformFeedbackVaryingsAsFunction = _glTransformFeedbackVaryings
      .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 glTransformFeedbackVaryingsAsFunction(
    program,
    count,
    varyings,
    bufferMode,
  );
}