diff options
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 4 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_generator.cpp (renamed from src/mesa/drivers/dri/i965/brw_fs_emit.cpp) | 4 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_generator.cpp (renamed from src/mesa/drivers/dri/i965/brw_vec4_emit.cpp) | 0 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 07c1053e84b..4063bf15b99 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 \ diff --git a/src/mesa/drivers/dri/i965/brw_fs_emit.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp index bfb3d331b0a..7ce42c4b9dc 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_emit.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp @@ -21,9 +21,9 @@ * IN THE SOFTWARE. */ -/** @file brw_fs_emit.cpp +/** @file brw_fs_generator.cpp * - * This file supports emitting code from the FS LIR to the actual + * This file supports generating code from the FS LIR to the actual * native instructions. */ diff --git a/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp index 6916134c1ac..6916134c1ac 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp |