Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Currently breaks VT switching for examples.
|
|
Remove unnecessary calls to glActiveTexture
|
|
Use meson as build system
|
|
|
|
Since wlroots shaders only use one texture at a time (ie there is only one
sampler2D variable in any shader), it is unnecessary to switch between active
texture units at this time.
|
|
|
|
|
|
|
|
Add surface interface stubs in compositor example
|
|
Add a signal for wlr_surface destruction on the wlr_surface that compositors
can listen to to remove the surface from their state.
Implement a listener for this in the example wl_compositor to remove the
surface from its internal list of surfaces.
Destroy the surface in the compositor destroy_surface callback given when the
surface resource was created.
Add a reference to the surface resource to the wlr_surface so a compositor can
find it in its list of resources upon wlr_resource destruction.
|
|
Implement surface_attach method. This is called when a client attaches an shm
buffer with wl_surface_attach().
Implement the GLES2 interface for attaching shm buffers. This creates an opengl
texture with the shm buffer contents for the surface.
This commit also includes some working code to render the surfaces onto the
screen for demonstration purposes.
|
|
Add the wayland surface interface to the example compositor.
Implement the create_surface method to create a new wlr surface from the
wayland surface and add the interface.
|
|
|
|
Use correct pixel format enum in touch example
|
|
Fix a call to `wlr_surface_attach_pixels()` in the main method of the touch
example to use the correct enum for this method (wayland instead of gl).
|
|
Use ARGB8888 pixel format for cursor bo
|
|
Correctly get session path
|
|
The old way of getting the session path was to simply append the session id to
the path "/org/freedesktop/login1/session/". However this is not the correct
path for newer systems like Fedora 26.
Instead, get the session path directly from the session manager from the id via
a dbus call to GetSession().
fixes #35
|
|
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.
|
|
bugfix: add null check on output gbm on pageflip
|
|
bugfix: fix cursor software rendering fallback
|
|
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.
|
|
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.
|
|
|
|
|
|
|
|
|
|
Build on travis-ci.
|
|
|
|
|
|
This reverts commit 85805da021006697c85489c3e30717c2b807441c, reversing
changes made to 8189c64d7f07a756abf5a6189719f02b2f1af967.
|
|
This reverts commit c81324bd0ba61ef82bc5ebd32178528c25334e69.
|
|
|
|
[Proposal] Use the Meson build system
|
|
|
|
|
|
|
|
|
|
Forking session backend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|