glColor4bv function
GLAPI void GLAPIENTRY glColor4bv (const GLbyte *v)
Implementation
void glColor4bv(String v) {
final glColor4bvLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Utf8> v),
void Function(Pointer<Utf8> v)>('glColor4bv');
final vPointer = v.toNativeUtf8();
final result = glColor4bvLookupFunction(vPointer);
calloc.free(vPointer);
return result;
}