aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-27Use ARGB8888 pixel format for cursor boTony Crisci
The previous pixel format (RGBA8888) is not supported on all devices for cursors. Weston uses ARGB8888 exclusively for its cursor buffer object which leads me to believe this pixel format is better supported.
2017-07-24Merge pull request #34 from acrisci/bug/fix-cleanup-pageflip-raceDrew DeVault
bugfix: add null check on output gbm on pageflip
2017-07-24Merge pull request #33 from acrisci/bug/fix-software-cursorDrew DeVault
bugfix: fix cursor software rendering fallback
2017-07-24bugfix: add null check on output gbm on pageflipTony Crisci
The gbm for the output might be null for the pageflip in the case that the output has been disconnected. The gbm might be set to null by wlr_drm_output_cleanup() in this case. If the output is cleaned up before the pageflip, then a double free will crash the compositor on the call to gbm_surface_release_buffer() in the pageflip handler. The outputs buffer object bo[1] will point to invalid memory.
2017-07-24bugfix: fix cursor software rendering fallbackTony Crisci
wlr_surface_attach_pixels() expects a wl_shm_format but a GL format was given. This caused a bug where software rendering of the cursor would fail when no pixel format can be found.
2017-07-18Fix LTO (fixes #26)Drew DeVault
2017-07-12Oh my god Clang seriously just fuck offDrew DeVault
2017-07-12Fuck off, clangDrew DeVault
2017-07-12Remove use of missing headerDrew DeVault
2017-07-12Merge pull request #30 from mikkeloscar/add-travisDrew DeVault
Build on travis-ci.
2017-07-12Fix unused variables in release buildsDrew DeVault
2017-07-12Build on travis-ci.Mikkel Oscar Lyderik Larsen
2017-07-11Revert "Merge pull request #27 from ascent12/meson"Drew DeVault
This reverts commit 85805da021006697c85489c3e30717c2b807441c, reversing changes made to 8189c64d7f07a756abf5a6189719f02b2f1af967.
2017-07-11Revert "Fixed linking error"Drew DeVault
This reverts commit c81324bd0ba61ef82bc5ebd32178528c25334e69.
2017-07-12Fixed linking errorScott Anderson
2017-07-11Merge pull request #27 from ascent12/mesonDrew DeVault
[Proposal] Use the Meson build system
2017-07-11Small linking fixScott Anderson
2017-07-11Use subdirScott Anderson
2017-07-11Changed build system to mesonScott Anderson
2017-07-11Fixed that warnings that showed up with optimisations.Scott Anderson
2017-07-09Merge pull request #25 from ascent12/forkingDrew DeVault
Forking session backend
2017-07-10Exit cleanly if we cannot open Wayland socket.Scott Anderson
2017-07-09Session documentation.Scott Anderson
2017-07-09Stop remembering the drm fd in child.Scott Anderson
2017-07-09Moved IPC to its own file.Scott Anderson
2017-07-09Added public fields to wlr_sessionScott Anderson
2017-07-09Removed KDSKBMUTE. This actually isn't supported by Linux.Scott Anderson
2017-07-04include fixesScott Anderson
2017-07-04Make libcap optional.Scott Anderson
2017-07-04Added forkingScott Anderson
2017-07-03Minor fixesScott Anderson
2017-07-03Added direct session supportScott Anderson
2017-06-29Merge branch 'wlcore'Drew DeVault
2017-06-28Add shim implementations of wl_{compositor,shell}Drew DeVault
To example compositor
2017-06-28Move example -> examplesDrew DeVault
And the compositor example into its own directory
2017-06-28Remove wlr_compositorDrew DeVault
2017-06-28Remove excessive logging in wayland backendDrew DeVault
2017-06-26Merge pull request #23 from ascent12/cursorDrew DeVault
Software cursor + Hardware cursor improvements
2017-06-26Add new interfaces to wayland backendDrew DeVault
2017-06-26Log max cursor size on errorDrew DeVault
2017-06-26Add wlr_wl_compositor and remove wlr_wl_shmDrew DeVault
2017-06-26Hardware cursor improvements.Scott Anderson
2017-06-26Added software cursor fallbackScott Anderson
2017-06-23Remove endian.hDrew DeVault
Fuck big endian systems anyway
2017-06-23Support wl_shm pixel formats in gles2 rendererDrew DeVault
2017-06-23Add wlcore/wl_shm (WIP)Drew DeVault
2017-06-23Manually transpose matricies in shaderDrew DeVault
Since GLES2 doesn't do this for us, it seems, on all platforms.
2017-06-23Switch to GLES2Drew DeVault
Closes #13
2017-06-22Add wl_output globals for wlr_outputsDrew DeVault
2017-06-22Merge pull request #19 from nyorain/wayland-inputDrew DeVault
Basic wayland backend input