void
glTransformFeedbackBufferBase(
- int xfb,
- int index,
- int buffer
)
GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer)
Implementation
void glTransformFeedbackBufferBase(int xfb, int index, int buffer) {
final glTransformFeedbackBufferBaseAsFunction = _glTransformFeedbackBufferBase
.cast<
NativeFunction<Void Function(Uint32 xfb, Uint32 index, Uint32 buffer)>
>()
.asFunction<void Function(int xfb, int index, int buffer)>();
return glTransformFeedbackBufferBaseAsFunction(xfb, index, buffer);
}