glColor4bv function opengl

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

Implementation

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