diff options
author | Eric Anholt <eric@anholt.net> | 2007-05-16 15:14:20 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-05-16 15:14:20 -0700 |
commit | 7b971a50088caeeb2d66d99dbf6bef580a01c5d9 (patch) | |
tree | f3a0159a6e041110d1e5e4cdf9531b5b8b30b2cf /src/mesa/drivers/dri/Makefile.template | |
parent | 64700be4e11ff735f0530812f6f319628e4b33c5 (diff) |
WIP: Replace TTM buffer pool manager with a simplified interface.
The interface is not solid yet (some simplification to do still, and
adjustment for 0-copy), and the drivers are not converted. However, the new
interface allows using the same calls to support either a TTM or a classic
static allocation backend, with the static backend allowing a more limited
feature set.
Diffstat (limited to 'src/mesa/drivers/dri/Makefile.template')
-rw-r--r-- | src/mesa/drivers/dri/Makefile.template | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/Makefile.template b/src/mesa/drivers/dri/Makefile.template index 5261a4b55d..3d0389c60c 100644 --- a/src/mesa/drivers/dri/Makefile.template +++ b/src/mesa/drivers/dri/Makefile.template @@ -13,7 +13,8 @@ COMMON_SOURCES = \ COMMON_BM_SOURCES = \ ../common/dri_bufmgr.c \ - ../common/dri_drmpool.c + ../common/dri_bufmgr_ttm.c \ + ../common/dri_bufmgr_fake.c ifeq ($(WINDOW_SYSTEM),dri) |