diff options
author | Dave Airlie <[email protected]> | 2010-09-08 08:30:59 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-08 08:30:59 +1000 |
commit | 9ef1c51be16ea360481cf9f82ebb1e3eb01efb18 (patch) | |
tree | 5d95005b7ef70af1c750616aca523a62073bd176 /src/gallium/drivers/r600/Makefile | |
parent | f09fabc448c0781f0cf9160565e1b0bab59a16e5 (diff) |
r600g: abstract the hw states out behind a vtbl.
this is step one towards evergreen support, it lets us plug in whole
new hw level states.
Diffstat (limited to 'src/gallium/drivers/r600/Makefile')
-rw-r--r-- | src/gallium/drivers/r600/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/Makefile b/src/gallium/drivers/r600/Makefile index fc94ae71f4a..707c2fd0f4f 100644 --- a/src/gallium/drivers/r600/Makefile +++ b/src/gallium/drivers/r600/Makefile @@ -19,6 +19,7 @@ C_SOURCES = \ r600_state.c \ r600_texture.c \ r600_asm.c \ - r700_asm.c + r700_asm.c \ + r600_hw_states.c include ../../Makefile.template |