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