Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-09 | Implement wlr_region using pixman | nyorain | |
2017-08-10 | Added null check on crtc | Scott Anderson | |
2017-08-09 | Merge pull request #49 from ascent12/drm-atomic | Drew DeVault | |
Atomic modesetting | |||
2017-08-09 | Atomic modesetting | Scott Anderson | |
2017-08-08 | Switch .build.yml to meson | Drew DeVault | |
2017-08-08 | Merge pull request #48 from nyorain/wlr_texture | Drew DeVault | |
Rename wlr_surface -> wlr_texture; attach -> upload | |||
2017-08-08 | Rename wlr_surface -> wlr_texture; attach -> upload | nyorain | |
2017-08-08 | Add logging in wlr_cursor | Drew DeVault | |
2017-08-08 | Accomodate for hotspot in cursor position | Drew DeVault | |
2017-08-08 | Fix software cursor. Fixes #45 | Scott Anderson | |
2017-08-07 | Add xcursor sublibrary | Drew DeVault | |
2017-08-07 | Merge pull request #44 from ascent12/drm | Drew DeVault | |
DRM plane support, refactoring, and other changes | |||
2017-08-07 | Use gbm_bo_map for cursor | Scott Anderson | |
2017-08-07 | Style changes | Scott Anderson | |
2017-08-06 | Remove old fields | Scott Anderson | |
2017-08-06 | Moved headers | Scott Anderson | |
2017-08-06 | Renamed some variables to be less generic | Scott Anderson | |
2017-08-06 | Updated DRM cursor rendering | Scott Anderson | |
2017-08-06 | Clean up resources when plane is reassigned | Scott Anderson | |
2017-08-06 | More cleanups | Scott Anderson | |
2017-08-06 | Various cleanups | Scott Anderson | |
2017-08-06 | Split off some functions into drm-util | Scott Anderson | |
2017-08-06 | Use plane for rendering | Scott Anderson | |
2017-08-06 | Add planes. | Scott Anderson | |
2017-08-06 | Upgraded CRTC and Encoder matching | Scott Anderson | |
2017-08-06 | Various changes/cleanups | Scott Anderson | |
2017-08-06 | DRM resource initalisation | Scott Anderson | |
2017-08-06 | Added DRM property infrastructure | Scott Anderson | |
2017-08-05 | Merge pull request #29 from ascent12/session | Drew DeVault | |
Moved session into backend/session and changed ownership | |||
2017-08-05 | Check for multi backend before using it | Drew DeVault | |
2017-08-05 | Log that the X11 backend is unimplemented | Drew DeVault | |
2017-08-06 | Fixed VT switching | Scott Anderson | |
2017-08-06 | Update build files | Scott Anderson | |
2017-08-06 | Changed header paths. | Scott Anderson | |
2017-08-06 | Moved session/ into backend/ | Scott Anderson | |
2017-08-06 | Changed ownership of wlr_session to the multi backend. | Scott Anderson | |
Currently breaks VT switching for examples. | |||
2017-08-05 | Merge pull request #42 from acrisci/bug/no-switch-active-textures | Drew DeVault | |
Remove unnecessary calls to glActiveTexture | |||
2017-08-05 | Merge pull request #31 from nyorain/merged | Drew DeVault | |
Use meson as build system | |||
2017-08-05 | Use meson build system | nyorain | |
2017-08-05 | Remove unnecessary calls to glActiveTexture | Tony Crisci | |
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. | |||
2017-08-04 | Add .build.yml for builds.sr.ht | Drew DeVault | |
2017-08-04 | Missed a variable | Drew DeVault | |
2017-08-04 | Minor nitpicking in wl_compositor | Drew DeVault | |
2017-08-04 | Merge pull request #41 from acrisci/feature/surface-interface-stub | Drew DeVault | |
Add surface interface stubs in compositor example | |||
2017-08-04 | Implement destroying surfaces | Tony Crisci | |
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. | |||
2017-08-04 | Implement shm buffer surface attach interface | Tony Crisci | |
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. | |||
2017-08-03 | Add surface interface stubs in compositor example | Tony Crisci | |
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. | |||
2017-08-02 | Fix #40 | Drew DeVault | |
2017-07-31 | Merge pull request #39 from acrisci/bug/fix-wl-enum-touch | Drew DeVault | |
Use correct pixel format enum in touch example | |||
2017-07-31 | Use correct pixel format enum in touch example | Tony Crisci | |
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). |