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:
parent
b37ac9d317
commit
d8c7678dda
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue