Browse Source

added support for MESA_GLX_FORCE_ALPHA env var

tags/R300_DRIVER_0
Brian Paul 22 years ago
parent
commit
a13331d59b
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/mesa/drivers/x11/fakeglx.c

+ 4
- 0
src/mesa/drivers/x11/fakeglx.c View File

@@ -282,6 +282,10 @@ save_glx_visual( Display *dpy, XVisualInfo *vinfo,
else
comparePointers = GL_FALSE;

/* Force the visual to have an alpha channel */
if (rgbFlag && _mesa_getenv("MESA_GLX_FORCE_ALPHA"))
alphaFlag = GL_TRUE;

/* First check if a matching visual is already in the list */
for (i=0; i<NumVisuals; i++) {
XMesaVisual v = VisualTable[i];

Loading…
Cancel
Save