mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-12 10:28:08 +00:00
[common] framebuffer: allow custom framebuffer write implementations
This is helpful for only copying damaged areas.
This commit is contained in:
@@ -213,3 +213,13 @@ bool framebuffer_write(FrameBuffer * frame, const void * restrict src, size_t si
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
uint8_t * framebuffer_get_data(FrameBuffer * frame)
|
||||
{
|
||||
return frame->data;
|
||||
}
|
||||
|
||||
void framebuffer_set_write_ptr(FrameBuffer * frame, size_t size)
|
||||
{
|
||||
atomic_store_explicit(&frame->wp, size, memory_order_release);
|
||||
}
|
||||
|
Reference in New Issue
Block a user