| /xsrc/external/mit/libX11/dist/src/ |
| CrGC.c | 84 gc->dirty = 0L; 93 if ((req->mask = gc->dirty)) 98 gc->dirty = 0L; /* allow extensions to see dirty bits */ 105 * GenerateGCList looks at the GC dirty bits, and appends all the required 119 register unsigned long dirty = gc->dirty; local 125 if (dirty & GCFunction) *value++ = gv->function; 126 if (dirty & GCPlaneMask) *value++ = gv->plane_mask; 127 if (dirty & GCForeground) *value++ = gv->foreground [all...] |
| SetLStyle.c | 46 gc->dirty |= GCLineWidth; 50 gc->dirty |= GCLineStyle; 54 gc->dirty |= GCCapStyle; 58 gc->dirty |= GCJoinStyle;
|
| SetState.c | 47 gc->dirty |= GCFunction; 51 gc->dirty |= GCPlaneMask; 55 gc->dirty |= GCForeground; 59 gc->dirty |= GCBackground;
|
| SetClOrig.c | 44 gc->dirty |= GCClipXOrigin; 48 gc->dirty |= GCClipYOrigin;
|
| SetTSOrig.c | 44 gc->dirty |= GCTileStipXOrigin; 48 gc->dirty |= GCTileStipYOrigin;
|
| SetCRects.c | 43 unsigned long dirty; local 56 dirty = (gc->dirty & (unsigned long) ~(GCClipMask | GCClipXOrigin | GCClipYOrigin)); 57 gc->dirty = GCClipMask | GCClipXOrigin | GCClipYOrigin; 61 gc->dirty = dirty;
|
| GCMisc.c | 41 gc->dirty |= GCArcMode; 57 gc->dirty |= GCFillRule; 73 gc->dirty |= GCFillStyle; 89 gc->dirty |= GCGraphicsExposures; 105 gc->dirty |= GCSubwindowMode;
|
| ChGC.c | 46 if (gc->dirty & (GCFont | GCTile | GCStipple))
|
| SetBack.c | 41 gc->dirty |= GCBackground;
|
| SetClMask.c | 41 gc->dirty |= GCClipMask;
|
| SetFont.c | 41 gc->dirty |= GCFont;
|
| SetFore.c | 41 gc->dirty |= GCForeground;
|
| SetFunc.c | 41 gc->dirty |= GCFunction;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_atom.c | 81 uint64_t dirty = 0; local 89 dirty |= old_vp->affected_states; 91 dirty |= ST_NEW_VERTEX_PROGRAM(st, st_program(new_vp)); 96 dirty |= old_tcp->affected_states; 98 dirty |= st_program(new_tcp)->affected_states; 103 dirty |= old_tep->affected_states; 105 dirty |= st_program(new_tep)->affected_states; 110 dirty |= old_gp->affected_states; 112 dirty |= st_program(new_gp)->affected_states; 117 dirty |= old_fp->affected_states 178 uint64_t dirty, pipeline_mask; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_atom.c | 81 uint64_t dirty = 0; local 89 dirty |= old_vp->affected_states; 91 dirty |= ST_NEW_VERTEX_PROGRAM(st, st_vertex_program(new_vp)); 96 dirty |= old_tcp->affected_states; 98 dirty |= st_common_program(new_tcp)->affected_states; 103 dirty |= old_tep->affected_states; 105 dirty |= st_common_program(new_tep)->affected_states; 110 dirty |= old_gp->affected_states; 112 dirty |= st_common_program(new_gp)->affected_states; 117 dirty |= old_fp->affected_states 175 uint64_t dirty, pipeline_mask; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/ |
| fd2_emit.h | 43 void fd2_emit_state_binning(struct fd_context *ctx, const enum fd_dirty_3d_state dirty); 44 void fd2_emit_state(struct fd_context *ctx, const enum fd_dirty_3d_state dirty);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/ |
| svga_pipe_constants.c | 88 svga->dirty |= SVGA_NEW_FS_CONSTS; 90 svga->dirty |= SVGA_NEW_VS_CONSTS; 92 svga->dirty |= SVGA_NEW_GS_CONSTS; 94 svga->dirty |= SVGA_NEW_TCS_CONSTS; 96 svga->dirty |= SVGA_NEW_TES_CONSTS; 99 svga->dirty |= SVGA_NEW_FS_CONST_BUFFER; 101 svga->dirty |= SVGA_NEW_VS_CONST_BUFFER; 103 svga->dirty |= SVGA_NEW_GS_CONST_BUFFER; 105 svga->dirty |= SVGA_NEW_TCS_CONST_BUFFER; 107 svga->dirty |= SVGA_NEW_TES_CONST_BUFFER [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/ |
| nv40_verttex.c | 33 unsigned dirty = nv30->vertprog.dirty_samplers; local 35 while (dirty) { 36 unsigned unit = ffs(dirty) - 1; 45 dirty &= ~(1 << unit); 69 nv30->dirty |= NV30_NEW_VERTTEX; 99 nv30->dirty |= NV30_NEW_VERTTEX;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/ |
| nv40_verttex.c | 33 unsigned dirty = nv30->vertprog.dirty_samplers; local 35 while (dirty) { 36 unsigned unit = ffs(dirty) - 1; 45 dirty &= ~(1 << unit); 69 nv30->dirty |= NV30_NEW_VERTTEX; 93 nv30->dirty |= NV30_NEW_VERTTEX;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/ |
| fd2_emit.h | 44 const enum fd_dirty_3d_state dirty) assert_dt; 46 const enum fd_dirty_3d_state dirty) assert_dt;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/ |
| nouveau_texture.h | 45 GLboolean dirty; member in struct:nouveau_texture 50 to_nouveau_texture(t)->dirty = GL_TRUE
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/ |
| nouveau_texture.h | 45 GLboolean dirty; member in struct:nouveau_texture 50 to_nouveau_texture(t)->dirty = GL_TRUE
|
| /xsrc/external/mit/xorg-server/dist/dix/ |
| pixmap.c | 178 PixmapDirtyUpdatePtr dirty = closure; local 180 dirty->damage = NULL; 267 PixmapDirtyUpdatePtr dirty, 270 DrawablePtr src = dirty->src; 297 dirty->x + dst_box.x1, dirty->y + dst_box.y1, w, h, 298 dirty->dst_x + dst_box.x1, 299 dirty->dst_y + dst_box.y1); 307 PixmapDirtyUpdatePtr dirty, 310 ScreenPtr pScreen = dirty->src->pScreen [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_state_derived.c | 238 if (llvmpipe->dirty & (LP_NEW_FS | 259 llvmpipe->dirty |= LP_NEW_SAMPLER_VIEW; 263 if (llvmpipe->dirty & (LP_NEW_RASTERIZER | 271 if (llvmpipe->dirty & (LP_NEW_FS | 282 if (llvmpipe->dirty & (LP_NEW_FS | 305 if (llvmpipe->dirty & (LP_NEW_FS | 310 if (llvmpipe->dirty & LP_NEW_SAMPLE_MASK) 313 if (llvmpipe->dirty & LP_NEW_BLEND_COLOR) 317 if (llvmpipe->dirty & LP_NEW_SCISSOR) 320 if (llvmpipe->dirty & LP_NEW_DEPTH_STENCIL_ALPHA) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_emit.c | 129 uint32_t dirty = ctx->dirty; local 133 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) { 142 if (unlikely(dirty & (ETNA_DIRTY_VERTEX_ELEMENTS | ETNA_DIRTY_SHADER))) { 147 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) { 163 uint32_t dirty = ctx->dirty; local 167 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) { 170 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) { 175 if (unlikely(dirty & (ETNA_DIRTY_VERTEX_ELEMENTS | ETNA_DIRTY_SHADER))) 230 uint32_t dirty = ctx->dirty; local [all...] |