/external/mesa3d/src/mesa/main/ |
pixelstore.c | 94 if (ctx->Pack.SkipPixels == param) 97 ctx->Pack.SkipPixels = param; 198 if (ctx->Unpack.SkipPixels == param) 201 ctx->Unpack.SkipPixels = param; 267 ctx->Pack.SkipPixels = 0; 280 ctx->Unpack.SkipPixels = 0; 299 ctx->DefaultPacking.SkipPixels = 0;
|
image.c | 109 GLint skippixels; local 129 skippixels = packing->SkipPixels; 152 + (skippixels + column) / 8; 186 + (skippixels + column) * bytes_per_pixel; 403 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 425 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); 581 * and the unpack SkipPixels and SkipRows are adjusted so that the image 607 unpack->SkipPixels += (buffer->_Xmin - *destX); 652 * and size, and the pack skipPixels, skipRows and rowLength are adjuste [all...] |
pack.c | 175 if ((packing->SkipPixels & 7) == 0) { 182 /* handling SkipPixels is a bit tricky (no pun intended!) */ 185 GLubyte srcMask = 1 << (packing->SkipPixels & 0x7); 212 GLubyte srcMask = 128 >> (packing->SkipPixels & 0x7); 267 if ((packing->SkipPixels & 7) == 0) { 274 /* handling SkipPixels is a bit tricky (no pun intended!) */ 278 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); 305 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); [all...] |
attrib.c | [all...] |
mtypes.h | [all...] |
get.c | 718 { GL_PACK_SKIP_PIXELS, CONTEXT_INT(Pack.SkipPixels), NO_EXTRA }, 721 { GL_UNPACK_SKIP_PIXELS, CONTEXT_INT(Unpack.SkipPixels), NO_EXTRA }, [all...] |
teximage.c | [all...] |
/external/mesa3d/src/mesa/swrast/ |
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);
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_bitmap.c | 111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7; 120 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
|
intel_tex_image.c | 151 unpack->SkipPixels || unpack->SkipRows) {
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_drawpixels.c | [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_swtcl.c | 863 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); 880 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
|
/external/mesa3d/src/mesa/drivers/x11/ |
xm_dd.c | 386 const int srcX = clippedUnpack.SkipPixels; 520 const int srcX = clippedUnpack.SkipPixels;
|
/external/mesa3d/src/mesa/drivers/common/ |
meta.c | [all...] |