aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-06-28 23:31:04 -0700
committerMatt Turner <[email protected]>2014-06-30 22:31:05 -0700
commit6d2536395d45e0c8c21186811b1a63da4cb12198 (patch)
treef8c48928a4a5d8c2b4629dee4a87e722734c3452 /src/mesa/drivers/dri/i965/brw_fs.h
parentbcbb7c41b75aa780f93f32937697c2999ff2eb36 (diff)
i965/fs: Add no_dd_{clear,check} fields to fs_inst.
And plumb them through. Also make the assert in the generator look like the vec4 one. Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 3d0da23acf1..58e71756b16 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -239,6 +239,8 @@ public:
bool force_uncompressed:1;
bool force_sechalf:1;
bool force_writemask_all:1;
+ bool no_dd_clear:1;
+ bool no_dd_check:1;
};
/**