Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-27 | Fix issue starting up client EGL on X11 backend | Drew DeVault | |
2018-03-27 | Fix surface layer damage tracking | Drew DeVault | |
2018-03-27 | Add margin animation to the example demo | Drew DeVault | |
2018-03-27 | Fix layer rendering/layout bugs | Drew DeVault | |
2018-03-27 | Fix rebase issues; rearrange layers on destroy | Drew DeVault | |
2018-03-27 | Add layer_surface.close | Drew DeVault | |
2018-03-27 | Fix exclusive zone among other layers | Drew DeVault | |
2018-03-27 | Fix issue with multiple outputs in layer example | Drew DeVault | |
2018-03-27 | Implement layer surface damage | Drew DeVault | |
2018-03-27 | Arrange & render layer surfaces | Drew DeVault | |
2018-03-27 | Fix issues preventing layer from getting allocated | Drew DeVault | |
Now all of the steps to get rootston a reference to the layer surface are correctly wired up. | |||
2018-03-27 | Fix strcmp use | Drew DeVault | |
2018-03-27 | Add broken test client and rootston stubs | Drew DeVault | |
2018-03-26 | render: add simple functions to render rectangles and ellipses | emersion | |
2018-03-21 | render/gles2: make wlr_renderer_begin take viewport size | emersion | |
This allows raw GL calls outside wlr_renderer to be removed. | |||
2018-03-19 | render: split render.h into wlr_renderer.h and wlr_texture.h | emersion | |
2018-03-17 | Merge pull request #722 from emersion/matrix-redesign | Drew DeVault | |
Matrix redesign | |||
2018-03-15 | renderer: replace wlr_texture_get_matrix by wlr_render_texture | emersion | |
2018-03-15 | matrix: use 2D matrices | emersion | |
2018-03-15 | matrix: unify API, don't use array pointers | emersion | |
2018-03-15 | matrix: move to types/ | emersion | |
2018-03-14 | examples: simplify screenshot client | emersion | |
2018-03-07 | Add mode support to libinput backend | Drew DeVault | |
And extend tablet example with tilt and ring support | |||
2018-02-25 | Merge pull request #659 from agx/alpha | Drew DeVault | |
Make wlr_render_with_matrix use alpha | |||
2018-02-25 | Add alpha to wlr_render_with_matrix | Guido Günther | |
so we can use the alpha channel to e.g. blend in textures | |||
2018-02-24 | Merge pull request #667 from Ongy/screenshot_tmpfile_template | Drew DeVault | |
prevent screenshot from resuing template array | |||
2018-02-24 | prevent screenshot from resuing template array | Markus Ongyerth | |
The template array given to mkstemp was declared static. This reused the memory, which caused mkstemp to fail if backingfile is run more than once, because the array no longer contained the template syntax (which is forced to end in XXXXXX) but the previous file name. | |||
2018-02-24 | Merge pull request #641 from Ongy/idle-inhibit | Tony Crisci | |
Add idle-inhibit implementation | |||
2018-02-23 | idle-inhibit: style adjustments and motivation | Markus Ongyerth | |
2018-02-23 | Don't use os_create_anonymous_file outside of wlroots | Guido Günther | |
Use a stripped down version for the backing file in the screenshot example. | |||
2018-02-21 | idle-inhibit: second feedback pass | Markus Ongyerth | |
2018-02-20 | idle-inhibit: feedback pass | Markus Ongyerth | |
2018-02-17 | handle xdg close event in idle-inhibit example | Markus Ongyerth | |
Fixes a crash when the idle-inhibit example application is closed by the compositor, instead of Ctr+C on the spawning terminal, by actualy handling the close request. | |||
2018-02-17 | adds the client example for idle-inhibit | Markus Ongyerth | |
Adds a client example for the idle-inhibit-unsable-v1 protocol. The client creates a surface and requests an idle inhibitor. On pointer BTN_LEFT the inhibitor is destroyed if it exists, or recreated if it was destroyed before. The surfaces colour is based on the idle-inhibit state. Green if an inhibitor exists, yellow if it does not. | |||
2018-02-15 | wayland protocol headers: use double-quote for includes | Dominique Martinet | |
These headers are not installed so we should look for these locally | |||
2018-02-12 | Remove wlr_backend.events.{output_remove,device_remove} | emersion | |
2018-02-03 | render: make wlr_renderer_clear take a float[4] for the color | emersion | |
2018-02-03 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-02-01 | fixes the off by one errors in examples/screenshot | Markus Ongyerth | |
The inverse loop iterations for the transformed outputs had an off by one error, iterating 1 based, not 0 based. This commit fixes that. | |||
2018-01-31 | handle the other transformations for screenshots | Markus Ongyerth | |
This handles all current transformations for outputs properly. This ensures an output is drawn in readable orientation/flipping no matter the actual transformations applied to it. | |||
2018-01-31 | fixes 90 degree rotation screenshots | Markus Ongyerth | |
This fixes the screenshot example application when an output is rotated by 90 degrees. Other tranformations are not taken into account yet. | |||
2018-01-29 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-01-23 | Backport screenshooter fixes from the renderer redesign v1 | emersion | |
This backports some changes to #319 to fix the screenshooter data format. This also adds wlr_backend_get_renderer which will be useful to support multiple renderers. | |||
2018-01-22 | render: add wlr_renderer_clear and wlr_renderer_scissor | emersion | |
2018-01-21 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-01-21 | style: include brackets for if/while/for, even if it's a single statement | Johannes Schramm | |
2018-01-21 | output: add damage tracking via buffer age | emersion | |
2018-01-19 | output: fix software cursors damage tracking | emersion | |
2018-01-15 | Merge pull request #567 from Timidger/example-logging | Drew DeVault | |
Fixed logging for examples | |||
2018-01-15 | Fixed logging for examples | Timidger | |