diff options
author | Eric Anholt <[email protected]> | 2011-05-24 16:34:27 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-05-27 08:51:39 -0700 |
commit | 11dd9e9c0fcf9985b90ff4b63b2833345fece027 (patch) | |
tree | 1c21b7988cd8d3e3b99a490e0d70829071c78dd2 /src/mesa/drivers/dri/i965/Makefile | |
parent | b7b700aeb0eab2cae26a01d9db42feea969333c7 (diff) |
i965/fs: Split the BRW native code emit to brw_fs_emit.cpp
This is all separate from the visitor and the optimization passes
which feed into it.
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 32e96165994..9f27b8f98ec 100644 --- a/src/mesa/drivers/dri/i965/Makefile +++ b/src/mesa/drivers/dri/i965/Makefile @@ -116,6 +116,7 @@ C_SOURCES = \ CXX_SOURCES = \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ + brw_fs_emit.cpp \ brw_fs_channel_expressions.cpp \ brw_fs_reg_allocate.cpp \ brw_fs_schedule_instructions.cpp \ |