diff options
author | Eric Anholt <[email protected]> | 2011-05-24 16:45:17 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-05-27 08:51:40 -0700 |
commit | d1f70a8a6c6ec7007bad22d3d6013415be2d243a (patch) | |
tree | 809feed97a1dc9bb8e5e555e1025668368e6362c /src/mesa/drivers/dri/i965/Makefile | |
parent | 11dd9e9c0fcf9985b90ff4b63b2833345fece027 (diff) |
i965/fs: Split the GLSL IR -> FS LIR visitor to brw_fs_visitor.cpp.
We now have:
brw_fs.cpp handles calling out to everything and optimization.
brw_fs_visitor.cpp handles translating to our LIR.
brw_fs_emit.cpp handles emitting from our LIR to native code.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile b/src/mesa/drivers/dri/i965/Makefile index 9f27b8f98ec..d80628b1e77 100644 --- a/src/mesa/drivers/dri/i965/Makefile +++ b/src/mesa/drivers/dri/i965/Makefile @@ -117,6 +117,7 @@ CXX_SOURCES = \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ brw_fs_emit.cpp \ + brw_fs_visitor.cpp \ brw_fs_channel_expressions.cpp \ brw_fs_reg_allocate.cpp \ brw_fs_schedule_instructions.cpp \ |