Home
last modified time | relevance | path

Searched refs:SkipPixels (Results 1 – 18 of 18) sorted by relevance

/external/mesa3d/src/mesa/main/
Dpixelstore.c94 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()
Dimage.c129 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()
Dpack.c175 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 …]
Dattrib.c1338 dst->SkipPixels = src->SkipPixels; in copy_pixelstore()
Dget.c718 { GL_PACK_SKIP_PIXELS, CONTEXT_INT(Pack.SkipPixels), NO_EXTRA },
721 { GL_UNPACK_SKIP_PIXELS, CONTEXT_INT(Unpack.SkipPixels), NO_EXTRA },
Dmtypes.h1534 GLint SkipPixels; member
Dteximage.c2892 unpackNew->SkipPixels++; /* skip the border */ in strip_texture_border()
/external/mesa3d/src/mesa/swrast/
Ds_bitmap.c83 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/
Dintel_pixel_bitmap.c111 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()
Dintel_tex_image.c151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_pixel_bitmap.c111 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()
Dintel_tex_image.c151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_pixel_bitmap.c111 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()
Dintel_tex_image.c151 unpack->SkipPixels || unpack->SkipRows) { in try_pbo_upload()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_drawpixels.c1375 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/
Dxm_dd.c386 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/
Dr200_swtcl.c863 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); in r200PointsBitmap()
880 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); in r200PointsBitmap()
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c2233 tileUnpack.SkipPixels = unpack->SkipPixels + i; in tiled_draw_pixels()