DRI2 compat build fix: it's drawable->pScreen not drawable->screen

Fallout from the conversion; DRI2 compat path was broken.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
Jesse Barnes 2009-10-12 14:02:12 -07:00
parent b37ac9d317
commit d8c7678dda
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ static DRI2BufferPtr
I830DRI2CreateBuffers(DrawablePtr drawable, unsigned int *attachments,
int count)
{
ScreenPtr screen = drawable->screen;
ScreenPtr screen = drawable->pScreen;
ScrnInfoPtr scrn = xf86Screens[screen->myNum];
intel_screen_private *intel = intel_get_screen_private(scrn);
DRI2BufferPtr buffers;