summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Marchesin <[email protected]>2011-06-28 02:14:43 -0700
committerStéphane Marchesin <[email protected]>2011-06-28 02:14:43 -0700
commitde33b0dd231d646cbbc7ba6c25bf6dd04a96cd86 (patch)
treec6d164ff6941456de767b71c32550660c51f84e4
parent2e481e5fc4c99d353cc5b21dacf1470847a11646 (diff)
i915g: Add a debug_printf when we get the Abs flag.
-rw-r--r--src/gallium/drivers/i915/i915_fpc_translate.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_fpc_translate.c b/src/gallium/drivers/i915/i915_fpc_translate.c
index b1e0f6a3f03..41c94e66a51 100644
--- a/src/gallium/drivers/i915/i915_fpc_translate.c
+++ b/src/gallium/drivers/i915/i915_fpc_translate.c
@@ -272,6 +272,9 @@ src_vector(struct i915_fp_compile *p,
/* XXX enable these assertions, or fix things */
assert(!source->Register.Absolute);
#endif
+ if (source->Register.Absolute)
+ debug_printf("Exceeded max generics\n");
+
return src;
}