• Home
  • Raw
  • Download

Lines Matching refs:width

11 void IOStream::readbackPixels(void* context, int width, int height, unsigned int format, unsigned i…  in readbackPixels()  argument
21 ctx->state()->getPackingOffsets2D(width, height, format, type, in readbackPixels()
30 width, height, 1, format, type, 1 /* is pack */); in readbackPixels()
36 } else if (pixelRowSize == totalRowSize && (pixelRowSize == width * bpp)) { in readbackPixels()
56 if (pixelRowSize != width * bpp) { in readbackPixels()
57 size_t rowSlack = pixelRowSize - width * bpp; in readbackPixels()
59 readback(start, width * bpp); in readbackPixels()
76 void IOStream::uploadPixels(void* context, int width, int height, int depth, unsigned int format, u… in uploadPixels() argument
87 ctx->state()->getUnpackingOffsets2D(width, height, format, type, in uploadPixels()
96 width, height, 1, format, type, 0 /* is unpack */); in uploadPixels()
102 } else if (pixelRowSize == totalRowSize && (pixelRowSize == width * bpp)) { in uploadPixels()
122 if (pixelRowSize != width * bpp) { in uploadPixels()
123 size_t rowSlack = pixelRowSize - width * bpp; in uploadPixels()
125 writeFully(start, width * bpp); in uploadPixels()
150 ctx->state()->getUnpackingOffsets3D(width, height, depth, format, type, in uploadPixels()
162 width, height, depth, format, type, 0 /* is unpack */); in uploadPixels()
174 pixelRowSize == (width * bpp)) { in uploadPixels()
194 size_t rowSlack = pixelRowSize - width * bpp; in uploadPixels()
202 if (pixelRowSize != width * bpp) { in uploadPixels()
203 writeFully(start, width * bpp); in uploadPixels()