summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915simple/i915_screen.h
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2009-08-30 20:49:01 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2009-09-01 00:47:02 +0100
commitd2110064c2075a8537d4b7f87ba894ebaa6ccb33 (patch)
tree7d08142c3a3fc44e2cf3b349e5d4e325eb0ab524 /src/gallium/drivers/i915simple/i915_screen.h
parentdd040753d7703ac5edbf1aeb336c0093862a2486 (diff)
i915g: Switch from pipe_winsys to intel_winsys
Also includes moving lots of functions from i915_batch.h into intel_batchbuffer.h
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_screen.h')
-rw-r--r--src/gallium/drivers/i915simple/i915_screen.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915simple/i915_screen.h b/src/gallium/drivers/i915simple/i915_screen.h
index 757baa76b8..5126485caa 100644
--- a/src/gallium/drivers/i915simple/i915_screen.h
+++ b/src/gallium/drivers/i915simple/i915_screen.h
@@ -32,6 +32,9 @@
#include "pipe/p_screen.h"
+struct intel_winsys;
+
+
/**
* Subclass of pipe_screen
*/
@@ -39,6 +42,8 @@ struct i915_screen
{
struct pipe_screen base;
+ struct intel_winsys *iws;
+
boolean is_i945;
uint pci_id;
};