| /xsrc/external/mit/mesa-demos/dist/src/demos/ |
| H A D | drawpix.c | 23 static int SkipPixels, SkipRows; variable in typeref:typename:int 39 SkipPixels = SkipRows = 0; 59 glPixelStorei(GL_UNPACK_SKIP_PIXELS, SkipPixels); 90 glPixelStorei(GL_UNPACK_SKIP_PIXELS, SkipPixels); 167 if (SkipPixels > 0) 168 SkipPixels--; 171 SkipPixels++;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| H A D | s_bitmap.c | 83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); 181 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 201 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| H A D | s_bitmap.c | 83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); 181 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 201 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | pixelstore.c | 74 ctx->Pack.SkipPixels = param; 159 ctx->Unpack.SkipPixels = param; 265 ctx->Pack.SkipPixels = 0; 280 ctx->Unpack.SkipPixels = 0; 301 ctx->DefaultPacking.SkipPixels = 0; 329 packing->SkipPixels % packing->CompressedBlockWidth) {
|
| H A D | pack.c | 166 if ((packing->SkipPixels & 7) == 0) { 173 /* handling SkipPixels is a bit tricky (no pun intended!) */ 177 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); 204 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); 280 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); 294 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); 1254 if ((type == GL_BITMAP) && (unpack->SkipPixels & 0x7)) { 1258 GLubyte srcMask = 1 << (unpack->SkipPixels & 0x7); 1285 GLubyte srcMask = 128 >> (unpack->SkipPixels & 0x7);
|
| H A D | image.c | 146 skippixels = packing->SkipPixels; 418 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 440 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); 595 * and the unpack SkipPixels and SkipRows are adjusted so that the image 621 unpack->SkipPixels += (buffer->_Xmin - *destX); 701 pack->SkipPixels += (0 - *srcX);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | pixelstore.c | 75 ctx->Pack.SkipPixels = param; 164 ctx->Unpack.SkipPixels = param; 270 ctx->Pack.SkipPixels = 0; 284 ctx->Unpack.SkipPixels = 0; 304 ctx->DefaultPacking.SkipPixels = 0; 331 packing->SkipPixels % packing->CompressedBlockWidth) {
|
| H A D | image.c | 146 skippixels = packing->SkipPixels; 418 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 440 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); 595 * and the unpack SkipPixels and SkipRows are adjusted so that the image 621 unpack->SkipPixels += (buffer->_Xmin - *destX); 701 pack->SkipPixels += (0 - *srcX);
|
| H A D | pack.c | 167 if ((packing->SkipPixels & 7) == 0) { 174 /* handling SkipPixels is a bit tricky (no pun intended!) */ 178 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); 205 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); 281 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); 295 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); 1255 if ((type == GL_BITMAP) && (unpack->SkipPixels & 0x7)) { 1259 GLubyte srcMask = 1 << (unpack->SkipPixels & 0x7); 1286 GLubyte srcMask = 128 >> (unpack->SkipPixels & 0x7);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_pixel_bitmap.c | 113 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; 122 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
|
| H A D | intel_tex_image.c | 124 unpack->SkipPixels || unpack->SkipRows) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | intel_pixel_bitmap.c | 110 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; 119 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
|
| H A D | intel_pixel_read.c | 100 pack->SkipPixels > 0 || 198 pack->Alignment, pack->RowLength, pack->SkipPixels,
|
| H A D | intel_pixel_draw.c | 92 unpack->SkipPixels || unpack->SkipRows) {
|
| H A D | intel_tex_image.c | 213 packing->SkipPixels > 0 || 285 packing->Alignment, packing->RowLength, packing->SkipPixels, 709 packing->SkipPixels > 0 || 782 packing->Alignment, packing->RowLength, packing->SkipPixels,
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_pixel_bitmap.c | 113 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; 122 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
|
| H A D | intel_tex_image.c | 124 unpack->SkipPixels || unpack->SkipRows) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_pixel_bitmap.c | 112 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; 121 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
|
| H A D | brw_pixel_read.c | 100 pack->SkipPixels > 0 || 198 pack->Alignment, pack->RowLength, pack->SkipPixels,
|
| H A D | brw_pixel_draw.c | 92 unpack->SkipPixels || unpack->SkipRows) {
|
| H A D | brw_tex_image.c | 213 packing->SkipPixels > 0 || 285 packing->Alignment, packing->RowLength, packing->SkipPixels, 761 packing->SkipPixels > 0 || 834 packing->Alignment, packing->RowLength, packing->SkipPixels,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_drawpixels.c | 500 unpack->SkipPixels != 0 || 580 unpack->SkipPixels == 0 && 1556 drawX = dstx + pack.SkipPixels; 1562 readX = readX - pack.SkipPixels + unpack.SkipPixels; 1822 blit.dst.box.x = pack.SkipPixels;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_drawpixels.c | 499 unpack->SkipPixels != 0 || 579 unpack->SkipPixels == 0 && 1609 drawX = dstx + pack.SkipPixels; 1615 readX = readX - pack.SkipPixels + unpack.SkipPixels; 1946 blit.dst.box.x = pack.SkipPixels;
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 11.0.7.rst | 50 - meta: Compute correct buffer size with SkipRows/SkipPixels
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/ |
| H A D | r200_swtcl.c | 872 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 889 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|