readPixels method

void readPixels(
  1. int x,
  2. int y,
  3. int w,
  4. int h,
  5. int implFormat,
  6. int implType,
  7. TypedData buf,
)

Implementation

void readPixels(
    int x, int y, int w, int h, int implFormat, int implType, TypedData buf) {
  _gl.readPixels(x, y, w, h, implFormat, implType, buf);
}