diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-02-20 22:22:49 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-02-20 22:23:31 +0000 |
commit | 9d1061b8cfaf91bff6b55398c6059be97c2e0165 (patch) | |
tree | ab1ccfd5fe231319b6c7ba5e06914be6bb37a251 | |
parent | 6c41e5381fb8ea890943b6679fe6ae7ac4cfea4d (diff) |
fix SAREA
-rw-r--r-- | shared-core/i915_drm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shared-core/i915_drm.h b/shared-core/i915_drm.h index b889a303..3dcb6278 100644 --- a/shared-core/i915_drm.h +++ b/shared-core/i915_drm.h @@ -125,6 +125,15 @@ typedef struct _drm_i915_sarea { int third_offset; int third_size; unsigned int third_tiled; + + /* buffer object handles for the static buffers. May change + * over the lifetime of the client, though it doesn't in our current + * implementation. + */ + unsigned int front_bo_handle; + unsigned int back_bo_handle; + unsigned int third_bo_handle; + unsigned int depth_bo_handle; } drm_i915_sarea_t; /* Driver specific fence types and classes. |