aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_ir_fs.h
diff options
context:
space:
mode:
authorFrancisco Jerez <[email protected]>2016-05-18 22:40:40 -0700
committerFrancisco Jerez <[email protected]>2016-05-27 23:29:05 -0700
commit7d430fc05e8f0a6211fb587f1bc7b2a76ed7de10 (patch)
tree4b4e588d9f0ca803f8b74e5f42d068b88fabe888 /src/mesa/drivers/dri/i965/brw_ir_fs.h
parentecd7a7255aa1d6c313ead14e1b472c073c7111ac (diff)
i965/fs: Clean up remaining uses of fs_inst::reads_flag and ::writes_flag.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_ir_fs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_ir_fs.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_ir_fs.h b/src/mesa/drivers/dri/i965/brw_ir_fs.h
index ca4b40a3a14..cae41a02b8c 100644
--- a/src/mesa/drivers/dri/i965/brw_ir_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_ir_fs.h
@@ -288,18 +288,6 @@ public:
*/
unsigned flags_written() const;
- bool reads_flag() const
- {
- /* XXX - Will get rid of this hack shortly. */
- const brw_device_info devinfo = {};
- return flags_read(&devinfo);
- }
-
- bool writes_flag() const
- {
- return flags_written();
- }
-
fs_reg dst;
fs_reg *src;