-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Larger canvas at SlotPool::create_buffer #488
Comments
You mean because the server may also be accessing the same memory? If the server isn't mutating the memory, this isn't unsound in the client (I suppose this API was designed on the assumption the server would only be reading buffers, but it may need some changes for how the new https://wayland.app/protocols/ext-image-copy-capture-v1 protocol uses buffers). On the server-side, this can cause unsoundness if the server creates an |
I was just writing an example that used raquote like the existing examples. On the safety of raw data access which has also come up here: in my example I want to add to the frame rather than redrawing from scratch, so I was looking into double buffering and copying damage areas between front and back as necessary, and I was wondering why there wasn’t a way of accessing the contents of an active buffer, immutably—because I have been lead to believe that’s safe. Excerpt from a wayland-devel thread from June 2020 (with minor grammar/typo correction):
And in the next message, confirmation and clarification of the confusing “issues” bit so that it sounds like it shouldn’t apply here:
|
For given
buffer, canvas = SlotPool::create_buffer(..)
,canvas
might be bigger than the one returned frombuffer.canvas()
. This happens because of buffer alignment at the allocation:client-toolkit/src/shm/slot.rs
Line 257 in 4cf0def
for the
Buffer::canvas
it explicitly limits the canvas byheight*stride
as expected:client-toolkit/src/shm/slot.rs
Lines 425 to 430 in 4cf0def
while the
Slot::raw_data_mut
insidecreate_buffer
has only a bound of the allocated slot:client-toolkit/src/shm/slot.rs
Line 279 in 4cf0def
This implementation is fine if documented. Although I would rather prefer these two to be the same without exposing inner stuff. Also, is
SlotPool::raw_data_mut
really sound considering aliasing?The text was updated successfully, but these errors were encountered: