- May 22, 2019
-
-
Olivier Fourdan authored
Now that we have support for that new setting, make use of it for the default theme(s). Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Change the newly added “frame_border_top” setting to set the size of the top resize handle as well. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
damufo authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
- May 21, 2019
-
-
Olivier Fourdan authored
Bug: 15432 Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 15432 Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Bug: 14470 Themes can take advantage of this with the frame_border_top property. Existing themes without that property will not be affected or broken. Signed-off-by:
Adam K <chkboom@safe-mail.net>
-
Signed-off-by:
Adam K <chkboom@safe-mail.net>
-
- May 20, 2019
-
-
Olivier Fourdan authored
Reset the fence after the last buffer access to make sure it's fully and reliably completed before the next GL buffer swap. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Anonymous authored
144 translated messages, 25 untranslated messages. Transifex (https://www.transifex.com/xfce/public/).
-
Anonymous authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
- May 18, 2019
-
-
Olivier Fourdan authored
Fix a typo when initializing the pointer location when starting to zoom in. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Not need to change clipping after painting the cursor with GLX, we don't use it anymore after that point. But we need to reset the fence just before painting the cursor otherwise the fence will be triggered too soon, causing flicker. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
The new fence scheduling we're using now is causing flickering, revert to the previous way of dealing with the fence. This reverts commit 340f9e82. Reported-by:
Philip Müller <philm@manjaro.org> Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
- May 17, 2019
-
-
Anonymous authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
- May 16, 2019
-
-
damufo authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
Anonymous authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
If present flip failed, we should not wait for the flip notification that will never arrive. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
It's not worth keeping XPresent active if it generates XErrors. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
`present_flip()` now takes the buffer number instead of the rendering buffer. Fix the caller to pass the appropriate expected value. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 14741 Clicking a window title button would keep the button pressed even after the pointer leaves the button. This is just a simple case of receiving multiple enter/leave events without actually checking for the window, so any additional enter events received after the leave event would let the button in a pressed state. Fix the issue by checking for the actual event window against the button window. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Anonymous authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
- May 15, 2019
-
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 15400 Dialog windows which have no parent should not be skipped from taskbar. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 15399 If a client specifies an invalid NET_WM_WINDOW_TYPE, fallback to normal window type. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 14741 For button enter/leave events, checking the crossing mode prevents the events from being handled. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Bug: 15384 Commit f5da3d66 cause a serious regression by preventing the filter to be run on any window but the one being grabbed. This reverts commit f5da3d66.
-
Olivier Fourdan authored
The number of buffers we need to allocate/manage depends on the feature enabled at build time. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Basically, we want the fence to prevent GL from accessing the pixmap buffer until its update is complete. However, depending on the code path, we may update the buffer more than once, so to prevent any flickering, we need a finer grain control over the fence operations. Split the fence support into different actions as we need them, i.e. create, destroy, reset, trigger and wait. Make sure we reset the fence before each time we are to update the pixmap buffer and wait for the fence just before doing the GL swap. Also create a different fence for each buffer, so if ever decide to use multiple buffers with GL, the existing code will be able to support that and not use the same fence for multiple pixmaps. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Rename `scale_glx_texture()` as `set_glx_scale()`. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Fences support was added in XSync 3.1, make sure the XServer has support for this. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Olivier Fourdan authored
Fences support was added later in XSync, make sure we have a version with fences support or the build would fail. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-
Anonymous authored
169 translated messages. Transifex (https://www.transifex.com/xfce/public/).
-
- May 13, 2019
-
-
Olivier Fourdan authored
This is not needed and breaks the fence mechanism, hence causing flickering. Signed-off-by:
Olivier Fourdan <fourdan@xfce.org>
-