xquartz: Remove support for Panther and earlier versions of macOS

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
(cherry picked from commit 74aef85bd8)
This commit is contained in:
Jeremy Huddleston Sequoia 2021-01-27 13:25:54 -08:00
parent d39eb58409
commit be9d2fd871
1 changed files with 2 additions and 8 deletions

View File

@ -216,12 +216,10 @@ DRIUpdateSurface(DRIDrawablePrivPtr pDRIDrawablePriv, DrawablePtr pDraw)
if (pDRIDrawablePriv->sid == 0)
return;
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
wc.depth = (pDraw->bitsPerPixel == 32 ? XP_DEPTH_ARGB8888
: pDraw->bitsPerPixel == 16 ? XP_DEPTH_RGB555 : XP_DEPTH_NIL);
if (wc.depth != XP_DEPTH_NIL)
flags |= XP_DEPTH;
#endif
if (pDraw->type == DRAWABLE_WINDOW) {
WindowPtr pWin = (WindowPtr)pDraw;
@ -382,17 +380,13 @@ DRICreateSurface(ScreenPtr pScreen, Drawable id,
if (NULL == pDRIDrawablePriv)
return FALSE; /*error*/
}
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
else if (pDrawable->type == DRAWABLE_PIXMAP) {
} else if (pDrawable->type == DRAWABLE_PIXMAP) {
pDRIDrawablePriv = CreateSurfaceForPixmap(pScreen,
(PixmapPtr)pDrawable);
if (NULL == pDRIDrawablePriv)
return FALSE; /*error*/
}
#endif
else {
} else {
/* We handle GLXPbuffers in a different way (via CGL). */
return FALSE;
}