Home
last modified time | relevance | path

Searched refs:RowLength (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dimage.c133 if (packing->RowLength > 0) { in _mesa_image_offset()
134 pixels_per_row = packing->RowLength; in _mesa_image_offset()
303 if (packing->RowLength == 0) { in _mesa_image_row_stride()
307 bytesPerRow = (packing->RowLength + 7) / 8; in _mesa_image_row_stride()
315 if (packing->RowLength == 0) { in _mesa_image_row_stride()
319 bytesPerRow = bytesPerPixel * packing->RowLength; in _mesa_image_row_stride()
351 if (packing->RowLength == 0) { in _mesa_image_image_stride()
355 bytesPerRow = (packing->RowLength + 7) / 8; in _mesa_image_image_stride()
363 if (packing->RowLength == 0) { in _mesa_image_image_stride()
367 bytesPerRow = bytesPerPixel * packing->RowLength; in _mesa_image_image_stride()
[all …]
Dpixelstore.c62 ctx->Pack.RowLength = param; in pixel_storei()
151 ctx->Unpack.RowLength = param; in pixel_storei()
269 ctx->Pack.RowLength = 0; in _mesa_init_pixelstore()
283 ctx->Unpack.RowLength = 0; in _mesa_init_pixelstore()
304 ctx->DefaultPacking.RowLength = 0; in _mesa_init_pixelstore()
Dtexstore.c1292 if (packing->RowLength) { in _mesa_compute_compressed_pixelstore()
1294 ((packing->RowLength + bw - 1) / bw); in _mesa_compute_compressed_pixelstore()
Dattrib.c1145 dst->RowLength = src->RowLength; in copy_pixelstore()
Dmtypes.h1487 GLint RowLength; member
Dteximage.c2873 if (unpackNew->RowLength == 0) in strip_texture_border()
2874 unpackNew->RowLength = *width; in strip_texture_border()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_drawpixels.c494 if ((unpack->RowLength != 0 && unpack->RowLength != width) || in search_drawpixels_cache()
574 if ((unpack->RowLength == 0 || unpack->RowLength == width) && in cache_drawpixels_image()
1199 if (unpack->RowLength == 0) in clamp_size()
1200 unpack->RowLength = *width; in clamp_size()
Dst_pbo.c127 unsigned pixels_per_row = store->RowLength > 0 ? in st_pbo_addresses_pixelstore()
128 store->RowLength : addr->width; in st_pbo_addresses_pixelstore()
Dst_pbo_compute.c765 return !(pack->RowLength || in can_copy_direct()
1029 …memset(&packing.RowLength, 0, offsetof(struct gl_pixelstore_attrib, SwapBytes) - offsetof(struct g… in copy_converted_buffer()