diff options
Diffstat (limited to 'src/i830_dri.h')
-rw-r--r-- | src/i830_dri.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/i830_dri.h b/src/i830_dri.h index 5ac99e5e..b1cb5887 100644 --- a/src/i830_dri.h +++ b/src/i830_dri.h @@ -9,8 +9,8 @@ #define I830_MAX_DRAWABLES 256 #define I830_MAJOR_VERSION 1 -#define I830_MINOR_VERSION 4 -#define I830_PATCHLEVEL 1 +#define I830_MINOR_VERSION 5 +#define I830_PATCHLEVEL 0 #define I830_REG_SIZE 0x80000 @@ -24,6 +24,9 @@ typedef struct _I830DRIRec { drmSize depthbufferSize; drm_handle_t depthbuffer; + drmSize rotatedSize; + drm_handle_t rotatedbuffer; + drm_handle_t textures; int textureSize; @@ -46,6 +49,9 @@ typedef struct _I830DRIRec { int depthOffset; int depthPitch; + int rotatedOffset; + int rotatedPitch; + int logTextureGranularity; int textureOffset; |