--- xf86-video-i810-1.6.4/src/i830_dri.h 2006-08-08 20:21:25.000000000 -0230 +++ xf86-video-i810-1.6.4/src/i830_dri.h.new 2006-08-10 15:35:23.000000000 -0230 @@ -19,6 +19,21 @@ drm_handle_t regs; drmSize regsSize; + drmSize backbufferSize; + drm_handle_t backbuffer; + + drmSize depthbufferSize; + drm_handle_t depthbuffer; + + drmSize rotatedSize; + drm_handle_t rotatedbuffer; + + drm_handle_t textures; + int textureSize; + + drm_handle_t agp_buffers; + drmSize agp_buf_size; + int deviceID; int width; int height; @@ -26,6 +41,21 @@ int cpp; int bitsPerPixel; + int fbOffset; + int fbStride; + + int backOffset; + int backPitch; + + int depthOffset; + int depthPitch; + + int rotatedOffset; + int rotatedPitch; + + int logTextureGranularity; + int textureOffset; + int irq; int sarea_priv_offset; } I830DRIRec, *I830DRIPtr;