projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dee58ec
)
intel/fs/nir: Return Q types from brw_reg_type_for_bit_size
author
Jason Ekstrand
<jason.ekstrand@intel.com>
Thu, 2 Nov 2017 22:59:58 +0000
(15:59 -0700)
committer
Jason Ekstrand
<jason.ekstrand@intel.com>
Tue, 7 Nov 2017 18:41:24 +0000
(10:41 -0800)
Reviewed-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
src/intel/compiler/brw_fs_nir.cpp
patch
|
blob
|
history
diff --git
a/src/intel/compiler/brw_fs_nir.cpp
b/src/intel/compiler/brw_fs_nir.cpp
index 342ac8170b03788d61c81f71c748b5c71015e2a0..15f2d8862438947fb4bca4cc4f2a375de87d87bc 100644
(file)
--- a/
src/intel/compiler/brw_fs_nir.cpp
+++ b/
src/intel/compiler/brw_fs_nir.cpp
@@
-295,7
+295,7
@@
brw_reg_type_from_bit_size(const unsigned bit_size,
case 32:
return BRW_REGISTER_TYPE_D;
case 64:
- return BRW_REGISTER_TYPE_
DF
;
+ return BRW_REGISTER_TYPE_
Q
;
default:
unreachable("Invalid bit size");
}
@@
-308,7
+308,7
@@
brw_reg_type_from_bit_size(const unsigned bit_size,
case 32:
return BRW_REGISTER_TYPE_UD;
case 64:
- return BRW_REGISTER_TYPE_
DF
;
+ return BRW_REGISTER_TYPE_
UQ
;
default:
unreachable("Invalid bit size");
}