diff options
author | Keith Whitwell <[email protected]> | 2009-11-24 14:09:24 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-24 14:09:24 +0000 |
commit | 56ee132f9671f70ff2b3ee04659beac0dfc6126d (patch) | |
tree | 0f0e09a1e291f30b68e426441316e6c0c2d9ccfb /src/gallium/drivers/i915/i915_fpc_translate.c | |
parent | ba1ca28cc62fed71c77902b95ae4ed36c6bf25f8 (diff) |
gallium: try and update r300 and nv drivers for tgsi changes
It would be nice if these drivers built under the linux-debug header
so that these types of interface changes can be minimally propogated
into those drivers by people without the hardware. They don't have to
generate a working driver -- though a command-dumping winsys would be
an excellent for regression checking.
Diffstat (limited to 'src/gallium/drivers/i915/i915_fpc_translate.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_fpc_translate.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/i915/i915_fpc_translate.c b/src/gallium/drivers/i915/i915_fpc_translate.c index a96ba8f192e..f2554998a9e 100644 --- a/src/gallium/drivers/i915/i915_fpc_translate.c +++ b/src/gallium/drivers/i915/i915_fpc_translate.c @@ -229,12 +229,11 @@ src_vector(struct i915_fp_compile *p, src = negate(src, n, n, n, n); } - /* no abs() or post-abs negation */ + /* no abs() */ #if 0 /* XXX assertions disabled to allow arbfplight.c to run */ /* XXX enable these assertions, or fix things */ - assert(!source->SrcRegisterExtMod.Absolute); - assert(!source->SrcRegisterExtMod.Negate); + assert(!source->SrcRegister.Absolute); #endif return src; } |