glVertex4bvOes function opengl_glext

void glVertex4bvOes(
  1. String coords
)
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;
}