mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 12:17:49 +00:00
Applets: Add infrastructure to allow custom drawing and input handling in Applets.
This commit is contained in:
parent
2a6ebadf66
commit
621ee10eae
7 changed files with 162 additions and 39 deletions
|
@ -173,4 +173,14 @@ public:
|
|||
*/
|
||||
void SignalInterrupt(InterruptId interrupt_id);
|
||||
|
||||
void SetBufferSwap(u32 screen_id, const FrameBufferInfo& info);
|
||||
|
||||
/**
|
||||
* Retrieves the framebuffer info stored in the GSP shared memory for the
|
||||
* specified screen index and thread id.
|
||||
* @param thread_id GSP thread id of the process that accesses the structure that we are requesting.
|
||||
* @param screen_index Index of the screen we are requesting (Top = 0, Bottom = 1).
|
||||
* @returns FramebufferUpdate Information about the specified framebuffer.
|
||||
*/
|
||||
FrameBufferUpdate* GetFrameBufferInfo(u32 thread_id, u32 screen_index);
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue