mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-21 17:59:50 +00:00
EfbInterface: Change out parameters on getters to return by value
This commit is contained in:
parent
023eb34247
commit
33288c4569
4 changed files with 50 additions and 57 deletions
|
@ -51,8 +51,8 @@ bool ZCompare(u16 x, u16 y, u32 z);
|
|||
void SetColor(u16 x, u16 y, u8* color);
|
||||
void SetDepth(u16 x, u16 y, u32 depth);
|
||||
|
||||
void GetColor(u16 x, u16 y, u8* color);
|
||||
void GetColorYUV(u16 x, u16 y, yuv444* color);
|
||||
u32 GetColor(u16 x, u16 y);
|
||||
yuv444 GetColorYUV(u16 x, u16 y);
|
||||
u32 GetDepth(u16 x, u16 y);
|
||||
|
||||
u8* GetPixelPointer(u16 x, u16 y, bool depth);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue