summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/Makefile.sources
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-09-17 23:32:10 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-09-18 00:08:31 -0700
commitec44d56a5b20632bcd4cb19ae6fa5d615df4149f (patch)
treea815604e7792bcda90732447e7a0c0af5c5dbc10 /src/mesa/drivers/dri/i965/Makefile.sources
parenta3b51a22f71819236baa6bbda9d0d050914b149d (diff)
downloadexternal_mesa3d-ec44d56a5b20632bcd4cb19ae6fa5d615df4149f.zip
external_mesa3d-ec44d56a5b20632bcd4cb19ae6fa5d615df4149f.tar.gz
external_mesa3d-ec44d56a5b20632bcd4cb19ae6fa5d615df4149f.tar.bz2
i965: Rename brw_{fs,vec4}_emit.cpp to brw_{fs,vec4}_generator.cpp.
The previous names were really confusing to talk about: - brw_fs_visitor() contained methods named emit_whatever(). - brw_fs_generator() contained methods named generate_whatever(), but lived in brw_fs_emit.cpp. So when someone said "the emit layer", or "emit code", we weren't sure whether they meant the visitor's emit() functions or the generator in brw_fs_emit.cpp. By renaming these files, the method names, class names, and file names all match, which is much less confusing. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Acked-by: Paul Berry <stereotype441@gmail.com> Acked-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r--src/mesa/drivers/dri/i965/Makefile.sources4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources
index 07c1053..4063bf1 100644
--- a/src/mesa/drivers/dri/i965/Makefile.sources
+++ b/src/mesa/drivers/dri/i965/Makefile.sources
@@ -54,8 +54,8 @@ i965_FILES = \
brw_fs_channel_expressions.cpp \
brw_fs_copy_propagation.cpp \
brw_fs_cse.cpp \
- brw_fs_emit.cpp \
brw_fs_fp.cpp \
+ brw_fs_generator.cpp \
brw_fs_live_variables.cpp \
brw_fs_reg_allocate.cpp \
brw_fs_vector_splitting.cpp \
@@ -87,7 +87,7 @@ i965_FILES = \
brw_util.c \
brw_vec4.cpp \
brw_vec4_copy_propagation.cpp \
- brw_vec4_emit.cpp \
+ brw_vec4_generator.cpp \
brw_vec4_gs.c \
brw_vec4_gs_visitor.cpp \
brw_vec4_live_variables.cpp \