• Home
  • Raw
  • Download

Lines Matching refs:packing

976                   const struct gl_pixelstore_attrib *packing,  in store_texsubimage()  argument
1007 format, type, pixels, packing, caller); in store_texsubimage()
1033 srcImageStride = _mesa_image_row_stride(packing, width, format, type); in store_texsubimage()
1041 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1048 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1054 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1083 format, type, src, packing); in store_texsubimage()
1097 _mesa_unmap_teximage_pbo(ctx, packing); in store_texsubimage()
1112 const struct gl_pixelstore_attrib *packing) in _mesa_store_teximage() argument
1127 format, type, pixels, packing, "glTexImage"); in _mesa_store_teximage()
1140 const struct gl_pixelstore_attrib *packing) in _mesa_store_texsubimage() argument
1144 format, type, pixels, packing, "glTexSubImage"); in _mesa_store_texsubimage()
1270 const struct gl_pixelstore_attrib *packing, in _mesa_compute_compressed_pixelstore() argument
1284 if (packing->CompressedBlockWidth && in _mesa_compute_compressed_pixelstore()
1285 packing->CompressedBlockSize) { in _mesa_compute_compressed_pixelstore()
1287 bw = packing->CompressedBlockWidth; in _mesa_compute_compressed_pixelstore()
1289 if (packing->RowLength) { in _mesa_compute_compressed_pixelstore()
1290 store->TotalBytesPerRow = packing->CompressedBlockSize * in _mesa_compute_compressed_pixelstore()
1291 ((packing->RowLength + bw - 1) / bw); in _mesa_compute_compressed_pixelstore()
1295 packing->SkipPixels * packing->CompressedBlockSize / bw; in _mesa_compute_compressed_pixelstore()
1298 if (dims > 1 && packing->CompressedBlockHeight && in _mesa_compute_compressed_pixelstore()
1299 packing->CompressedBlockSize) { in _mesa_compute_compressed_pixelstore()
1301 bh = packing->CompressedBlockHeight; in _mesa_compute_compressed_pixelstore()
1303 store->SkipBytes += packing->SkipRows * store->TotalBytesPerRow / bh; in _mesa_compute_compressed_pixelstore()
1306 if (packing->ImageHeight) { in _mesa_compute_compressed_pixelstore()
1307 store->TotalRowsPerSlice = (packing->ImageHeight + bh - 1) / bh; in _mesa_compute_compressed_pixelstore()
1311 if (dims > 2 && packing->CompressedBlockDepth && in _mesa_compute_compressed_pixelstore()
1312 packing->CompressedBlockSize) { in _mesa_compute_compressed_pixelstore()
1314 int bd = packing->CompressedBlockDepth; in _mesa_compute_compressed_pixelstore()
1316 store->SkipBytes += packing->SkipImages * store->TotalBytesPerRow * in _mesa_compute_compressed_pixelstore()