summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2015-06-03 22:22:10 +0300
committerFrancisco Jerez <currojerez@riseup.net>2015-06-09 15:18:32 +0300
commit8f626c14989f005599f7841b89144d2bf58b5704 (patch)
tree46c356489aa04cb236dc44b07aa9e60db9a81423 /src/mesa/drivers/dri/i965/brw_fs.h
parent4af4cfba9ee1014baa4a777660fc9d53d57e4c82 (diff)
downloadexternal_mesa3d-8f626c14989f005599f7841b89144d2bf58b5704.zip
external_mesa3d-8f626c14989f005599f7841b89144d2bf58b5704.tar.gz
external_mesa3d-8f626c14989f005599f7841b89144d2bf58b5704.tar.bz2
i965/fs: Migrate Gen4 send dependency workarounds to the IR builder.
v2: Change brw_null_reg() to bld.null_reg_f(). Reviewed-by: Matt Turner <mattst88@gmail.com>
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, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index bdda9d0..5ad137b 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -131,7 +131,6 @@ public:
enum brw_conditional_mod condition);
fs_inst *LRP(const fs_reg &dst, const fs_reg &a, const fs_reg &y,
const fs_reg &x);
- fs_inst *DEP_RESOLVE_MOV(int grf);
fs_inst *BFREV(const fs_reg &dst, const fs_reg &value);
fs_inst *BFE(const fs_reg &dst, const fs_reg &bits, const fs_reg &offset,
const fs_reg &value);
@@ -159,6 +158,7 @@ public:
const fs_reg &surf_index,
const fs_reg &varying_offset,
uint32_t const_offset);
+ void DEP_RESOLVE_MOV(const brw::fs_builder &bld, int grf);
bool run_fs();
bool run_vs();