diff options
author | Eric Anholt <[email protected]> | 2011-05-26 09:57:36 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-05-27 08:51:05 -0700 |
commit | 14b86f3c9131c1b26b01e07679cc899df0885b23 (patch) | |
tree | b9095aa46eab064864e660709aebcb1dc2b46eaf /src/mesa/drivers/dri/i965/Makefile | |
parent | 53c89c67f33639afef951e178f93f4e29acc5d53 (diff) |
i965: Move non-FS-specific shader support to brw_shader.cpp.
These only existed in brw_fs.cpp because it was the only .cpp file in
the area when I wrote them.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile b/src/mesa/drivers/dri/i965/Makefile index b96f42bfe88..32e96165994 100644 --- a/src/mesa/drivers/dri/i965/Makefile +++ b/src/mesa/drivers/dri/i965/Makefile @@ -119,7 +119,8 @@ CXX_SOURCES = \ brw_fs_channel_expressions.cpp \ brw_fs_reg_allocate.cpp \ brw_fs_schedule_instructions.cpp \ - brw_fs_vector_splitting.cpp + brw_fs_vector_splitting.cpp \ + brw_shader.cpp ASM_SOURCES = |