HomeSort by relevance Sort by last modified time
    Searched refs:dirty (Results 51 - 75 of 534) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as 52 if ( dirty || (cursor>=n && n==1) ) {
  /external/dng_sdk/source/
dng_simple_image.h 74 bool dirty) const;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_blend.c 73 llvmpipe->dirty |= LP_NEW_BLEND;
100 llvmpipe->dirty |= LP_NEW_BLEND_COLOR;
145 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
173 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
lp_state_surface.c 86 lp->dirty |= LP_NEW_FRAMEBUFFER;
  /external/mesa3d/src/gallium/drivers/r600/
r600_hw_context_priv.h 55 int dirty, int index);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_rasterizer.c 58 softpipe->dirty |= SP_NEW_RASTERIZER;
sp_state_vertex.c 66 softpipe->dirty |= SP_NEW_VERTEX;
93 softpipe->dirty |= SP_NEW_VERTEX;
  /external/skia/src/animator/
SkDrawColor.h 18 void dirty() override;
  /external/iw/
version.sh 16 v="$v"-dirty
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_state.c 86 brw->state.dirty.cache |= CACHE_NEW_GS_UNIT;
90 .dirty = {
brw_state_upload.c 41 * has a .dirty value which changes according to the parameters of the
276 assert((*atoms)->dirty.mesa |
277 (*atoms)->dirty.brw |
278 (*atoms)->dirty.cache);
439 struct brw_state_flags *state = &brw->state.dirty;
454 brw->state.dirty.brw |= BRW_NEW_FRAGMENT_PROGRAM;
459 brw->state.dirty.brw |= BRW_NEW_VERTEX_PROGRAM;
480 if (check_state(state, &atom->dirty)) {
484 accumulate_state(&examined, &atom->dirty);
499 if (check_state(state, &atom->dirty)) {
    [all...]
gen6_clip_state.c 87 .dirty = {
  /system/core/libpixelflinger/
clear.cpp 42 c->state.clear.dirty = GGL_STENCIL_BUFFER_BIT |
118 if (c->state.clear.dirty & GGL_COLOR_BUFFER_BIT) {
119 c->state.clear.dirty &= ~GGL_COLOR_BUFFER_BIT;
134 if (c->state.clear.dirty & GGL_DEPTH_BUFFER_BIT) {
135 c->state.clear.dirty &= ~GGL_DEPTH_BUFFER_BIT;
154 c->state.clear.dirty |= GGL_COLOR_BUFFER_BIT;
161 c->state.clear.dirty |= GGL_DEPTH_BUFFER_BIT;
168 c->state.clear.dirty |= GGL_STENCIL_BUFFER_BIT;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatDirectoryEntry.java 66 private boolean dirty; field in class:FatDirectoryEntry
136 this.dirty = true;
173 return dirty;
251 this.dirty = true;
266 this.dirty = true;
279 this.dirty = true;
340 this.dirty = true;
379 this.dirty = false;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Sprite.java 46 private boolean dirty = true; field in class:Sprite
126 dirty = sprite.dirty;
137 if (dirty) return;
154 if (rotation != 0 || scaleX != 1 || scaleY != 1) dirty = true;
164 if (dirty) return;
181 if (rotation != 0 || scaleX != 1 || scaleY != 1) dirty = true;
226 if (dirty) return;
240 if (dirty) return;
255 if (dirty) return;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 80 emit_rss(struct svga_context *svga, unsigned dirty)
88 if (dirty & SVGA_NEW_BLEND) {
110 if (dirty & SVGA_NEW_BLEND_COLOR) {
122 if (dirty & (SVGA_NEW_DEPTH_STENCIL | SVGA_NEW_RAST)) {
197 if (dirty & SVGA_NEW_STENCIL_REF) {
201 if (dirty & (SVGA_NEW_RAST | SVGA_NEW_NEED_PIPELINE))
231 if (dirty & (SVGA_NEW_RAST | SVGA_NEW_FRAME_BUFFER | SVGA_NEW_NEED_PIPELINE))
252 if (dirty & SVGA_NEW_FRAME_BUFFER) {
262 if (dirty & SVGA_NEW_RAST) {
287 * dirty state gets re-emitted. Fix this by re-instating partia
    [all...]
svga_state_vdecl.c 46 emit_hw_vs_vdecl(struct svga_context *svga, unsigned dirty)
136 emit_hw_vdecl(struct svga_context *svga, unsigned dirty)
143 return emit_hw_vs_vdecl( svga, dirty );
svga_pipe_misc.c 40 svga->dirty |= SVGA_NEW_SCISSOR;
144 svga->dirty |= SVGA_NEW_FRAME_BUFFER;
156 svga->dirty |= SVGA_NEW_CLIP;
171 svga->dirty |= SVGA_NEW_VIEWPORT;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleElementStream.cs 71 * can be reused in future subrules. So, reset must set a dirty bit.
72 * If dirty, then next() always returns a dup.
77 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
108 * the dirty bit.
113 dirty = true;
140 * size==1. If we've already used the element, dup (dirty bit set).
145 if (dirty || (cursor >= n && n == 1)) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 73 * can be reused in future subrules. So, reset must set a dirty bit.
74 * If dirty, then next() always returns a dup.
79 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
113 * the dirty bit.
119 dirty = true;
150 * size==1. If we've already used the element, dup (dirty bit set).
156 if ( dirty || ( cursor >= n && n == 1 ) )
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_immediate.c 68 if (i915->dirty & I915_NEW_VBO) {
226 if (i915->dirty & atoms[i]->dirty)
i915_state_derived.c 179 i915->dirty |= I915_NEW_VERTEX_FORMAT;
216 if (atoms[i]->dirty & i915->dirty)
219 i915->dirty = 0;
  /external/mesa3d/src/gallium/drivers/r300/
r300_flush.c 60 r300->vs_state.dirty = FALSE;
61 r300->vs_constants.dirty = FALSE;
62 r300->clip_state.dirty = FALSE;
101 /* Even if hw is not dirty, we should at least reset the CS in case
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.h 72 BITSET_DECLARE(dirty, MAX_NOUVEAU_STATE);
104 BITSET_SET(to_nouveau_context(ctx)->dirty, NOUVEAU_STATE_##s)
106 BITSET_SET(to_nouveau_context(ctx)->dirty, NOUVEAU_STATE_##s##0 + i)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.java 70 if ( dirty || (cursor>=n && n==1) ) {

Completed in 902 milliseconds

1 23 4 5 6 7 8 91011>>