Removed flicker-inducing workaround.

Fixes #267.
master
Camilla Berglund ago%!(EXTRA string=11 years)
parent c1ed0b2d5b
commit 99c98407c9
  1. 1
      README.md
  2. 10
      src/x11_window.c

@ -85,6 +85,7 @@ The following dependencies are needed by the examples and test programs:
- [X11] Bugfix: The message type of ICCCM protocol events was not checked
- [X11] Bugfix: `glfwDestroyWindow` did not flush the output buffer.
- [X11] Bugfix: Window frame interactions were reported as focus events
- [X11] Bugfix: Workaround for legacy Compiz caused flickering during resize
## Contact

@ -182,16 +182,6 @@ static GLboolean createWindow(_GLFWwindow* window,
ExposureMask | FocusChangeMask | VisibilityChangeMask |
EnterWindowMask | LeaveWindowMask | PropertyChangeMask;
if (wndconfig->monitor == NULL)
{
// HACK: This is a workaround for windows without a background pixel
// not getting any decorations on certain older versions of
// Compiz running on Intel hardware
wa.background_pixel = BlackPixel(_glfw.x11.display,
_glfw.x11.screen);
wamask |= CWBackPixel;
}
_glfwGrabXErrorHandler();
window->x11.handle = XCreateWindow(_glfw.x11.display,

Loading…
Cancel
Save