summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ilo/ilo_transfer.c
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2013-06-07 13:11:49 +0800
committerChia-I Wu <[email protected]>2013-06-07 13:23:43 +0800
commit7142da6dd1b12f203a7daaa7d79235da8b5bc721 (patch)
tree938892e0fef57d277b38307f337b71d33210d113 /src/gallium/drivers/ilo/ilo_transfer.c
parent09f62a13fcddd237e7a3aef6185377f9a585a332 (diff)
ilo: use slab allocator for transfers
Slab allocator is perfect for transfer. Improved OpenArena performance by 1% with several casual runs.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_transfer.c')
-rw-r--r--src/gallium/drivers/ilo/ilo_transfer.c31
1 files changed, 3 insertions, 28 deletions
diff --git a/src/gallium/drivers/ilo/ilo_transfer.c b/src/gallium/drivers/ilo/ilo_transfer.c
index 4d6e3262a99..5bdace2da81 100644
--- a/src/gallium/drivers/ilo/ilo_transfer.c
+++ b/src/gallium/drivers/ilo/ilo_transfer.c
@@ -34,32 +34,6 @@
#include "ilo_resource.h"
#include "ilo_transfer.h"
-enum ilo_transfer_map_method {
- /* map() / map_gtt() / map_unsynchronized() */
- ILO_TRANSFER_MAP_CPU,
- ILO_TRANSFER_MAP_GTT,
- ILO_TRANSFER_MAP_UNSYNC,
-
- /* use staging system buffer */
- ILO_TRANSFER_MAP_SW_CONVERT,
- ILO_TRANSFER_MAP_SW_ZS,
-};
-
-struct ilo_transfer {
- struct pipe_transfer base;
-
- enum ilo_transfer_map_method method;
- void *ptr;
-
- void *staging_sys;
-};
-
-static inline struct ilo_transfer *
-ilo_transfer(struct pipe_transfer *transfer)
-{
- return (struct ilo_transfer *) transfer;
-}
-
static bool
is_bo_busy(struct ilo_context *ilo, struct intel_bo *bo, bool *need_flush)
{
@@ -993,7 +967,8 @@ ilo_transfer_unmap(struct pipe_context *pipe,
tex_unmap(ilo, xfer);
pipe_resource_reference(&xfer->base.resource, NULL);
- FREE(xfer);
+
+ util_slab_free(&ilo->transfer_mempool, xfer);
}
static void *
@@ -1008,7 +983,7 @@ ilo_transfer_map(struct pipe_context *pipe,
struct ilo_transfer *xfer;
bool success;
- xfer = MALLOC_STRUCT(ilo_transfer);
+ xfer = util_slab_alloc(&ilo->transfer_mempool);
if (!xfer) {
*transfer = NULL;
return NULL;