VideoCommon: Don't merge EFBPoke AsyncRequests.

This commit is contained in:
Jordan Woyak
2025-03-06 17:21:13 -06:00
parent 5ed8b7bc9d
commit fe2d247acb
6 changed files with 16 additions and 67 deletions

View File

@ -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;