This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 117f44cf3323cab17798651ccdedc9018e5a95fc (commit) from 561ab88b80e943a571fa0aa84b3ed0816e6812eb (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/117f44cf3323cab17798651ccdedc9018e5a9...
commit 117f44cf3323cab17798651ccdedc9018e5a95fc Author: Cyril Hrubis metan@ucw.cz Date: Tue Nov 12 22:54:47 2013 +0100
backends: X11: Warn if _NET_WM_STATE is not supported.
Print warning and don't send the client message in case NetWM window fullscreen state is not supported.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/libs/backends/GP_X11_Win.h b/libs/backends/GP_X11_Win.h index 8466961..b728bcf 100644 --- a/libs/backends/GP_X11_Win.h +++ b/libs/backends/GP_X11_Win.h @@ -100,6 +100,11 @@ static void x11_win_fullscreen(struct x11_win *win, int mode) return; }
+ if (!x11_conn.S__NET_WM_STATE || !x11_conn.S__NET_WM_STATE_FULLSCREEN) { + GP_WARN("NetWM Fullscreen not supported"); + return; + } + GP_DEBUG(2, "Requesting fullscreen mode = %u", mode);
memset(&ev, 0, sizeof(ev));
-----------------------------------------------------------------------
Summary of changes: libs/backends/GP_X11_Win.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.