diff options
| author | sodiboo <37938646+sodiboo@users.noreply.github.com> | 2024-03-08 13:10:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-08 04:10:55 -0800 |
| commit | ca22e70cc4a868fdb4dec2790ec71fb9a2cfb6bd (patch) | |
| tree | 69373c13068005180cc75372e16cf493dcb98e38 /src/render_helpers/offscreen.rs | |
| parent | 1a784e6e66785f360da6df59ae2fb4b98370ca3c (diff) | |
| download | niri-ca22e70cc4a868fdb4dec2790ec71fb9a2cfb6bd.tar.gz niri-ca22e70cc4a868fdb4dec2790ec71fb9a2cfb6bd.tar.bz2 niri-ca22e70cc4a868fdb4dec2790ec71fb9a2cfb6bd.zip | |
Implement wlr-screencopy v1 (#243)
* Implement wlr-screencopy
* Finish the implementation
Lots of changes, mainly to fix transform handling. Turns out, grim
expects transformed buffers and untransforms them by itself using info
from wl_output. This means that render helpers needed to learn how to
actually render transformed buffers.
Also, it meant that y_invert is no longer needed.
Next, moved the rendering to the Screencopy frame handler. Turns out,
copy() is more or less expected to return immediately, whereas
copy_with_damage() is expected to wait until the next VBlank. At least
that's the intent I parse reading the protocol.
Finally, brought the version from 3 down to 1, because
copy_with_damage() will need bigger changes. Grim still works, others
not really, mainly because they bind v3 unnecessarily, even if they
don't use the damage request.
---------
Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>
Diffstat (limited to 'src/render_helpers/offscreen.rs')
| -rw-r--r-- | src/render_helpers/offscreen.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/render_helpers/offscreen.rs b/src/render_helpers/offscreen.rs index 69b0be84..72c2471b 100644 --- a/src/render_helpers/offscreen.rs +++ b/src/render_helpers/offscreen.rs @@ -54,6 +54,7 @@ impl OffscreenRenderElement { renderer, geo.size, Scale::from(scale as f64), + Transform::Normal, Fourcc::Abgr8888, elements, ) { |
