wgl: Don't call ExtEscape if we don't have a GL context.
This commit is contained in:
parent
d869bd6265
commit
be7b8be8b8
|
@ -2136,7 +2136,7 @@ static void WINAPI X11DRV_wglFinish(void)
|
||||||
sync_context(ctx);
|
sync_context(ctx);
|
||||||
pglFinish();
|
pglFinish();
|
||||||
wine_tsx11_unlock();
|
wine_tsx11_unlock();
|
||||||
ExtEscape(ctx->hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );
|
if (ctx) ExtEscape(ctx->hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );
|
||||||
}
|
}
|
||||||
|
|
||||||
static void WINAPI X11DRV_wglFlush(void)
|
static void WINAPI X11DRV_wglFlush(void)
|
||||||
|
@ -2148,7 +2148,7 @@ static void WINAPI X11DRV_wglFlush(void)
|
||||||
sync_context(ctx);
|
sync_context(ctx);
|
||||||
pglFlush();
|
pglFlush();
|
||||||
wine_tsx11_unlock();
|
wine_tsx11_unlock();
|
||||||
ExtEscape(ctx->hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );
|
if (ctx) ExtEscape(ctx->hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue