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