| Summary: | SDL is blocking window compositor. | ||
|---|---|---|---|
| Product: | SDL | Reporter: | tadaddd111111 |
| Component: | main | Assignee: | Ryan C. Gordon <icculus> |
| Status: | WAITING --- | QA Contact: | Sam Lantinga <slouken> |
| Severity: | major | ||
| Priority: | P2 | CC: | icculus |
| Version: | 2.0.13 | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
|
Description
tadaddd111111
2020-08-22 10:52:59 UTC
Is this with X11? Set this environment variable:
export SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR=0
Or if you want to force it in your app, do this before calling SDL_CreateWindow:
SDL_SetHint(SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0");
--ryan.
|