diff options
author | Marek Olšák <[email protected]> | 2010-11-29 23:37:25 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-11-30 10:12:26 +0100 |
commit | 80f24c1575688e9cd4a5a811137f43b7e0a661bb (patch) | |
tree | cc76bc3861f325d9f4bf372eeee7ff328541e5e7 /src/gallium/drivers/r300/r300_screen.h | |
parent | 557280542399629ac64a48f5b618365e2b18fce1 (diff) |
util: rename u_mempool -> u_slab
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.h b/src/gallium/drivers/r300/r300_screen.h index 8b7f1fab61b..d646f4e8fdd 100644 --- a/src/gallium/drivers/r300/r300_screen.h +++ b/src/gallium/drivers/r300/r300_screen.h @@ -28,7 +28,7 @@ #include "r300_chipset.h" -#include "util/u_mempool.h" +#include "util/u_slab.h" #include <stdio.h> @@ -44,7 +44,7 @@ struct r300_screen { struct r300_capabilities caps; /* Memory pools. */ - struct util_mempool pool_buffers; + struct util_slab_mempool pool_buffers; /** Combination of DBG_xxx flags */ unsigned debug; |