mirror of
https://github.com/glfw/glfw.git
synced 2025-04-04 21:15:07 +00:00
Merge 91637f4578
into e7ea71be03
This commit is contained in:
commit
dc947f6785
1 changed files with 22 additions and 1 deletions
|
@ -868,7 +868,13 @@ GLFWbool _glfwChooseVisualEGL(const _GLFWwndconfig* wndconfig,
|
|||
XVisualInfo desired;
|
||||
EGLConfig native;
|
||||
EGLint visualID = 0, count = 0;
|
||||
const long vimask = VisualScreenMask | VisualIDMask;
|
||||
long vimask;
|
||||
|
||||
if (fbconfig->transparent) {
|
||||
vimask = VisualScreenMask;
|
||||
} else {
|
||||
vimask = VisualScreenMask | VisualIDMask;
|
||||
}
|
||||
|
||||
if (!chooseEGLConfig(ctxconfig, fbconfig, &native))
|
||||
return GLFW_FALSE;
|
||||
|
@ -887,6 +893,21 @@ GLFWbool _glfwChooseVisualEGL(const _GLFWwndconfig* wndconfig,
|
|||
return GLFW_FALSE;
|
||||
}
|
||||
|
||||
if (fbconfig->transparent) {
|
||||
int i;
|
||||
for (i = 0; i < count; i++) {
|
||||
XVisualInfo *vinfo = &result[i];
|
||||
if (vinfo->class == DirectColor || vinfo->class == TrueColor) {
|
||||
if (vinfo->depth == 32) {
|
||||
*visual = vinfo->visual;
|
||||
*depth = vinfo->depth;
|
||||
XFree(result);
|
||||
return GLFW_TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*visual = result->visual;
|
||||
*depth = result->depth;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue