/external/mesa3d/src/mesa/main/ |
D | pixelstore.c | 94 if (ctx->Pack.SkipPixels == param) in _mesa_PixelStorei() 97 ctx->Pack.SkipPixels = param; in _mesa_PixelStorei() 198 if (ctx->Unpack.SkipPixels == param) in _mesa_PixelStorei() 201 ctx->Unpack.SkipPixels = param; in _mesa_PixelStorei() 267 ctx->Pack.SkipPixels = 0; in _mesa_init_pixelstore() 280 ctx->Unpack.SkipPixels = 0; in _mesa_init_pixelstore() 299 ctx->DefaultPacking.SkipPixels = 0; in _mesa_init_pixelstore()
|
D | image.c | 129 skippixels = packing->SkipPixels; in _mesa_image_offset() 403 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); in _mesa_expand_bitmap() 425 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); in _mesa_expand_bitmap() 607 unpack->SkipPixels += (buffer->_Xmin - *destX); in _mesa_clip_drawpixels() 675 pack->SkipPixels += (0 - *srcX); in _mesa_clip_readpixels()
|
D | pack.c | 175 if ((packing->SkipPixels & 7) == 0) { in _mesa_unpack_bitmap() 185 GLubyte srcMask = 1 << (packing->SkipPixels & 0x7); in _mesa_unpack_bitmap() 212 GLubyte srcMask = 128 >> (packing->SkipPixels & 0x7); in _mesa_unpack_bitmap() 267 if ((packing->SkipPixels & 7) == 0) { in _mesa_pack_bitmap() 278 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); in _mesa_pack_bitmap() 305 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); in _mesa_pack_bitmap() 2796 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); in extract_uint_indexes() 2810 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); in extract_uint_indexes() 5892 if ((type == GL_BITMAP) && (unpack->SkipPixels & 0x7)) { in _mesa_unpack_image() 5896 GLubyte srcMask = 1 << (unpack->SkipPixels & 0x7); in _mesa_unpack_image() [all …]
|
D | attrib.c | 1338 dst->SkipPixels = src->SkipPixels; in copy_pixelstore()
|
D | get.c | 718 { GL_PACK_SKIP_PIXELS, CONTEXT_INT(Pack.SkipPixels), NO_EXTRA }, 721 { GL_UNPACK_SKIP_PIXELS, CONTEXT_INT(Unpack.SkipPixels), NO_EXTRA },
|
D | mtypes.h | 1534 GLint SkipPixels; member
|
D | teximage.c | 2892 unpackNew->SkipPixels++; /* skip the border */ in strip_texture_border()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_bitmap.c | 83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); in _swrast_Bitmap() 105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); in _swrast_Bitmap() 181 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 201 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_pixel_bitmap.c | 111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; in get_bitmap_rect() 120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask); in get_bitmap_rect()
|
D | intel_tex_image.c | 151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_pixel_bitmap.c | 111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; in get_bitmap_rect() 120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask); in get_bitmap_rect()
|
D | intel_tex_image.c | 151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_pixel_bitmap.c | 111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; in get_bitmap_rect() 120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask); in get_bitmap_rect()
|
D | intel_tex_image.c | 151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_drawpixels.c | 1375 drawX = dstx + pack.SkipPixels; in blit_copy_pixels() 1381 readX = readX - pack.SkipPixels + unpack.SkipPixels; in blit_copy_pixels() 1571 pack.SkipPixels, pack.SkipRows, 0, /* dest pos */ in st_CopyPixels() 1608 pipe_put_tile_rgba_format(pipe, ptTex, pack.SkipPixels, pack.SkipRows, in st_CopyPixels() 1616 pipe_put_tile_z(pipe, ptTex, pack.SkipPixels, pack.SkipRows, in st_CopyPixels()
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | xm_dd.c | 386 const int srcX = clippedUnpack.SkipPixels; in xmesa_DrawPixels_8R8G8B() 520 const int srcX = clippedUnpack.SkipPixels; in xmesa_DrawPixels_5R6G5B()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_swtcl.c | 863 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); in r200PointsBitmap() 880 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); in r200PointsBitmap()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 2233 tileUnpack.SkipPixels = unpack->SkipPixels + i; in tiled_draw_pixels()
|