mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VideoCommon: Don't merge EFBPoke AsyncRequests.
This commit is contained in:
@ -10,12 +10,6 @@
|
||||
enum class EFBAccessType;
|
||||
enum class EFBReinterpretType;
|
||||
|
||||
struct EfbPokeData
|
||||
{
|
||||
u16 x, y;
|
||||
u32 data;
|
||||
};
|
||||
|
||||
// Renderer really isn't a very good name for this class - it's more like "Misc".
|
||||
// It used to be a massive mess, but almost everything has been refactored out.
|
||||
//
|
||||
@ -28,7 +22,7 @@ public:
|
||||
virtual void ReinterpretPixelData(EFBReinterpretType convtype);
|
||||
|
||||
virtual u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
|
||||
virtual void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points);
|
||||
virtual void PokeEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
|
||||
};
|
||||
|
||||
extern std::unique_ptr<Renderer> g_renderer;
|
||||
|
Reference in New Issue
Block a user