glScissor method

void glScissor(
  1. int x,
  2. int y,
  3. int width,
  4. int height,
)

Implementation

void glScissor(
  int x,
  int y,
  int width,
  int height,
) {
  return (_glScissor ??=
      _dylib.lookupFunction<_c_glScissor, _dart_glScissor>('glScissor'))(
    x,
    y,
    width,
    height,
  );
}