glColor3bv function opengl

void glColor3bv(
  1. String v
)
GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v )

Implementation

void glColor3bv(String v) {
  final glColor3bvAsFunction = _glColor3bv
      .cast<NativeFunction<Void Function(Pointer<Utf8> v)>>()
      .asFunction<void Function(Pointer<Utf8> v)>();
  final vPointer = v.toNativeUtf8();
  final result = glColor3bvAsFunction(vPointer);
  calloc.free(vPointer);
  return result;
}