summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/dri/intel/intel_winsys.h
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2008-05-22 16:42:53 +0200
committerJakob Bornecrantz <jakob@tungstengraphics.com>2008-05-23 11:02:14 +0200
commit45fd9ec462bf338b286d3b757c3e67d54f663dad (patch)
tree27fad764011d1956bd7b2401fc1b27181a338d46 /src/gallium/winsys/dri/intel/intel_winsys.h
parent9395fb6e8d341d7a3f923b5ec03630ab656c8f2f (diff)
i915: Use the malloc pool for constant buffers since they don't go to the GPU directly.
Diffstat (limited to 'src/gallium/winsys/dri/intel/intel_winsys.h')
-rw-r--r--src/gallium/winsys/dri/intel/intel_winsys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/dri/intel/intel_winsys.h b/src/gallium/winsys/dri/intel/intel_winsys.h
index d0a319f9a4..3d32db10a4 100644
--- a/src/gallium/winsys/dri/intel/intel_winsys.h
+++ b/src/gallium/winsys/dri/intel/intel_winsys.h
@@ -53,6 +53,7 @@ intel_create_i915simple( struct intel_context *intel,
struct intel_buffer {
struct pipe_buffer base;
+ struct _DriBufferPool *pool;
struct _DriBufferObject *driBO;
};
@@ -69,5 +70,4 @@ dri_bo( struct pipe_buffer *buf )
}
-
#endif