mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 22:10:38 +02:00
i965/fs: rename our lower_d2f pass to lower_d2x
Since it no longer handles conversions from double to float but from double to various other 32-bit types. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
efaf62a40a
commit
9741cff1ec
4 changed files with 4 additions and 4 deletions
|
|
@ -26,7 +26,7 @@ i965_compiler_FILES = \
|
|||
brw_fs.h \
|
||||
brw_fs_live_variables.cpp \
|
||||
brw_fs_live_variables.h \
|
||||
brw_fs_lower_d2f.cpp \
|
||||
brw_fs_lower_d2x.cpp \
|
||||
brw_fs_lower_pack.cpp \
|
||||
brw_fs_nir.cpp \
|
||||
brw_fs_reg_allocate.cpp \
|
||||
|
|
|
|||
|
|
@ -5359,7 +5359,7 @@ fs_visitor::optimize()
|
|||
OPT(dead_code_eliminate);
|
||||
}
|
||||
|
||||
if (OPT(lower_d2f)) {
|
||||
if (OPT(lower_d2x)) {
|
||||
OPT(opt_copy_propagate);
|
||||
OPT(dead_code_eliminate);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ public:
|
|||
void lower_uniform_pull_constant_loads();
|
||||
bool lower_load_payload();
|
||||
bool lower_pack();
|
||||
bool lower_d2f();
|
||||
bool lower_d2x();
|
||||
bool lower_logical_sends();
|
||||
bool lower_integer_multiplication();
|
||||
bool lower_minmax();
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
using namespace brw;
|
||||
|
||||
bool
|
||||
fs_visitor::lower_d2f()
|
||||
fs_visitor::lower_d2x()
|
||||
{
|
||||
bool progress = false;
|
||||
|
||||
Loading…
Add table
Reference in a new issue