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