mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-22 16:10:36 +02:00
i915g: make dynamic state emission actually lazy
Premature semicolon. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
11f9ec5422
commit
132dc0b6d2
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ i915_emit_hardware_state(struct i915_context *i915 )
|
|||
{
|
||||
int i;
|
||||
for (i = 0; i < I915_MAX_DYNAMIC; i++) {
|
||||
if (i915->dynamic_dirty & (1 << i));
|
||||
if (i915->dynamic_dirty & (1 << i))
|
||||
OUT_BATCH(i915->current.dynamic[i]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue