mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-15 23:09:05 +00:00
Share GraphicsBitmaps between the windowing server and the client process.
This is pretty cool. :^) GraphicsBitmaps are now mapped into both the server and the client address space (usually at different addresses but that doesn't matter.) Added a GUI syscall for getting a window's backing store, and another one for invalidating a window so that the server redraws it.
This commit is contained in:
parent
b0e3f73375
commit
0c5ecd303c
Notes:
sideshowbarker
2024-07-19 16:02:46 +09:00
Author: https://github.com/awesomekling
Commit: 0c5ecd303c
13 changed files with 139 additions and 46 deletions
|
@ -192,6 +192,8 @@ public:
|
|||
|
||||
int gui$create_window(const GUI_CreateWindowParameters*);
|
||||
int gui$destroy_window(int window_id);
|
||||
int gui$get_window_backing_store(int window_id, GUI_WindowBackingStoreInfo*);
|
||||
int gui$invalidate_window(int window_id);
|
||||
|
||||
DisplayInfo get_display_info();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue