summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-01-20 19:07:04 -0800
committerMatt Turner <[email protected]>2017-01-20 19:12:31 -0800
commit892781d6c7d31317dba6958a340d676f55c30034 (patch)
tree35ec01ac278f95e15e4f1048f1d3e75161c01a44 /src/mesa
parentd871f8e820289750832e45b8d09e80d6bce6fe7e (diff)
Revert "i965: Really don't emit Q or UQ moves on Gen < 8"
This reverts commit c95380c4044237d73fb537511667c3c8f658fcee. Acked-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_eu_emit.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index 4b557d98b48..de6a1d9b33f 100644
--- a/src/mesa/drivers/dri/i965/brw_eu_emit.c
+++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c
@@ -94,14 +94,6 @@ unsigned
brw_reg_type_to_hw_type(const struct gen_device_info *devinfo,
enum brw_reg_type type, enum brw_reg_file file)
{
- /* If the type is Q or UQ and Gen < 8, change the type to DF. On Gen < 8,
- * the only Q or UQ moves the should occur are actually to move doubles
- * anyway.
- */
- if (devinfo->gen < 8 && (type == BRW_REGISTER_TYPE_UQ ||
- type == BRW_REGISTER_TYPE_Q))
- type = BRW_REGISTER_TYPE_DF;
-
if (file == BRW_IMMEDIATE_VALUE) {
static const int imm_hw_types[] = {
[BRW_REGISTER_TYPE_UD] = BRW_HW_REG_TYPE_UD,