aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-06-13Merge pull request #1047 from NotKit/gles2fixemersion
Fix GLES2 renderer to use glGetUniformLocations locations
2018-06-13Merge pull request #1050 from emersion/wlr-bufferDrew DeVault
Introduce wlr_buffer
2018-06-13gles2 renderer: introduce struct wlr_gles2_tex_shaderNeKit
2018-06-11buffer: make wlr_buffer_ref return the bufferemersion
2018-06-09Merge pull request #1052 from VincentVanlaer/egl-damage-khrDrew DeVault
Split eglSwapBuffersWithDamage feature detection
2018-06-09Rename egl.exts to match the extension namesVincent Vanlaer
2018-06-09Merge branch 'master' into wlr-bufferemersion
2018-06-09Split eglSwapBuffersWithDamage feature detectionVincent Vanlaer
Detecting whether eglSwapBuffersWithDamageEXT or eglSwapBuffersWithDamageKHR is used should be based on the extension string, not only on the availability of the function.
2018-06-09Merge pull request #1051 from RedSoxFan/fix-atti-assertemersion
Fix atti assert in wlr_egl_init
2018-06-08Fix atti assert in wlr_egl_initBrian Ashworth
2018-06-08Merge branch 'surface-fix-buffer-release'Drew DeVault
2018-06-08Merge pull request #1028 from emersion/egl-context-priorityemersion
Request a high priority EGL context
2018-06-08buffer: improve docsemersion
2018-06-08Introduce wlr_bufferemersion
2018-06-08Merge pull request #1049 from emersion/fix-xwayland-restart-on-shutdownemersion
rootston: destroy xwayland before all clients
2018-06-08rootston: destroy xwayland before all clientsemersion
Destroying all clients disconnects the xwayland client, and xwayland automatically restarts when disconnected.
2018-06-08render/egl: only request high priority context on DRMemersion
2018-06-08render/egl: consistent extension checkingemersion
2018-06-08Request a high priority EGL contextemersion
2018-06-08surface: don't release wl_drm and linux-dmabuf buffers earlyemersion
2018-06-08Merge pull request #1029 from emersion/wl-backend-keyboard-focus-keysemersion
backend/wayland: fix keyboard keys not pressed/released when focus changes
2018-06-07Fix GLES2 renderer to use glGetUniformLocations locationsNeKit
This is needed as uniform locations are driver implementation-specific.
2018-06-07Merge pull request #1043 from acrisci/drag-icon-unmapemersion
drag-icon map and unmap fixes
2018-06-06Merge pull request #1045 from ammen99/masteremersion
xdg-shells: add a set_parent signal to toplevel surfaces
2018-06-06dont damage drag icon after update_positionTony Crisci
2018-06-06Merge pull request #1044 from emersion/fix-box-intersectionTony Crisci
box: fix wlr_box_intersection
2018-06-06Merge pull request #1036 from martinetd/subsurface-draworderemersion
wlr_surface: walk up surfaces in reverse order
2018-06-06xdg-shells: add a set_parent signal to toplevel surfacesIlia Bozhinov
2018-06-06box: fix wlr_box_intersectionemersion
2018-06-05update drag position at the right timesTony Crisci
2018-06-05handle drag icon map in rootstonTony Crisci
2018-06-05add back map eventTony Crisci
2018-06-05rename drag-icon map to unmapTony Crisci
2018-06-05wlr_surface: insert subsurfaces in revert orderDominique Martinet
sibling surfaces were drawn in incorrect order (e.g. latest below). This attempts to fix that by reverting the order of the list.
2018-06-05Merge pull request #1040 from acrisci/fix-box-minus-oneemersion
fix wlr_box_intersection and closest_point
2018-06-04fix wlr_box_intersection and closest_pointTony Crisci
2018-06-04Merge pull request #1033 from RyanDwyer/fix-xdg-popupsTony Crisci
Fix mistakes in xdg_popup and xdg_popup_v6
2018-06-04Merge pull request #1039 from acrisci/positioner-invert-x-fixemersion
add missing anchor case in positioner invert-x for xdg-shell
2018-06-04add missing anchor case in positioner invert-xTony Crisci
2018-06-04Merge pull request #1031 from martinetd/multibind-seatemersion
seat: allow clients to bind to seat multiple times
2018-06-04Merge pull request #1035 from martinetd/subsurface-rootemersion
wlr_surface_get_root_surface: walk up parent
2018-06-05wlr_surface_get_root_surface: walk up parentDominique Martinet
This would dead-loop and never walk up if called on a subsurface
2018-06-04Merge pull request #1034 from rah2501/armhf-printf-conversion-fixemersion
wlr_linux_dmabuf: Fix printf conversion specifiers on armhf
2018-06-04seat: allow clients to bind to seat multiple timesDominique Martinet
This lets clients bind to a seat multiple times by re-using the existing wlr_seat_client whenever a duplicate request happens. Previously, an independant wlr_seat_client would be created and only events from one would be processed. Fixes #1023.
2018-06-04wlr_linux_dmabuf: Fix printf conversion specifiers on armhfBob Ham
The printf conversion specifiers in a call to wl_resource_post_error do not specify the type correctly on armhf: ../types/wlr_linux_dmabuf.c: In function 'params_add': ../types/wlr_linux_dmabuf.c:104:21: error: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'uint64_t {aka long long unsigned int}' [-Werror=format=] "sent modifier %lu for plane %u, expected modifier %lu like other planes", ~~^ %llu To fix this, we use standard printf conversion specifier macros from inttypes.h.
2018-06-04Fix mistakes in xdg_popup and xdg_popup_v6Ryan Dwyer
2018-06-04Merge pull request #1032 from acrisci/drag-icon-dataemersion
add data to wlr_drag_icon
2018-06-03add data to wlr_drag_iconTony Crisci
2018-06-03Merge pull request #1030 from Shugyousha/removeSeatRemoveDeviceemersion
Remove redundant roots_seat_remove_device function
2018-06-03Remove redundant roots_seat_remove_device functionSilvan Jegen
This function is unimplemented and is redundant because all devices added with roots_seat_add_device get destruction handlers assigned already. This fixes issue #998.