glVertex4bvOes function opengl_glext
GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords)
Implementation
void glVertex4bvOes(String coords) {
final glVertex4bvOesAsFunction = _glVertex4bvOes
.cast<NativeFunction<Void Function(Pointer<Utf8> coords)>>()
.asFunction<void Function(Pointer<Utf8> coords)>();
final coordsPointer = coords.toNativeUtf8();
final result = glVertex4bvOesAsFunction(coordsPointer);
calloc.free(coordsPointer);
return result;
}