mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
VideoCommon: De-globalize PixelShaderManager class.
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class PixelShaderManager;
|
||||
class PointerWrap;
|
||||
|
||||
using BBoxType = s32;
|
||||
@ -20,8 +21,8 @@ public:
|
||||
virtual ~BoundingBox() = default;
|
||||
|
||||
bool IsEnabled() const { return m_is_active; }
|
||||
void Enable();
|
||||
void Disable();
|
||||
void Enable(PixelShaderManager& pixel_shader_manager);
|
||||
void Disable(PixelShaderManager& pixel_shader_manager);
|
||||
|
||||
void Flush();
|
||||
|
||||
|
Reference in New Issue
Block a user