summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915/i915_debug.c
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2010-11-29 21:37:09 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2011-01-21 20:53:29 +0100
commit2e60aa511dd232f88697d1cc2091442caaef79b2 (patch)
treeab5b478e618aa54cd6f87141cc7de43be87d2b01 /src/gallium/drivers/i915/i915_debug.c
parent7287964f944d7e2bcf409b758163ab75c61b0f8e (diff)
i915g: Don't emit FS constants when VS contants change
Diffstat (limited to 'src/gallium/drivers/i915/i915_debug.c')
-rw-r--r--src/gallium/drivers/i915/i915_debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c
index 87c435a2f3..845e92cf5c 100644
--- a/src/gallium/drivers/i915/i915_debug.c
+++ b/src/gallium/drivers/i915/i915_debug.c
@@ -948,7 +948,8 @@ i915_dump_dirty(struct i915_context *i915, const char *func)
{I915_NEW_DEPTH_STENCIL, "depth_stencil"},
{I915_NEW_SAMPLER, "sampler"},
{I915_NEW_SAMPLER_VIEW, "sampler_view"},
- {I915_NEW_CONSTANTS, "constants"},
+ {I915_NEW_VS_CONSTANTS, "vs_const"},
+ {I915_NEW_FS_CONSTANTS, "fs_const"},
{I915_NEW_VBO, "vbo"},
{I915_NEW_VS, "vs"},
{0, NULL},