summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2015-03-24 10:17:32 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2015-05-06 10:29:30 -0700
commit76c1086f2dfb37a1edf6d2df6eebbe11ccbfc50b (patch)
tree77c92abcba1704f22004b9b00596c05195150aa8 /src/mesa/drivers/dri/i965/brw_fs_cse.cpp
parenta9ccb14d141de57487933d9535479acd3612aa9e (diff)
downloadexternal_mesa3d-76c1086f2dfb37a1edf6d2df6eebbe11ccbfc50b.zip
external_mesa3d-76c1086f2dfb37a1edf6d2df6eebbe11ccbfc50b.tar.gz
external_mesa3d-76c1086f2dfb37a1edf6d2df6eebbe11ccbfc50b.tar.bz2
i965: Change header_present to header_size in backend_instruction
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_cse.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_cse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_cse.cpp b/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
index 9c4ed0b..ad38475 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
@@ -179,7 +179,7 @@ instructions_match(fs_inst *a, fs_inst *b, bool *negate)
a->regs_written == b->regs_written &&
a->base_mrf == b->base_mrf &&
a->eot == b->eot &&
- a->header_present == b->header_present &&
+ a->header_size == b->header_size &&
a->shadow_compare == b->shadow_compare)
: true) &&
operands_match(a, b, negate);