mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 11:47:58 -05:00
VideoCore/Shader: Extract DebugData out from UnitState
This commit is contained in:
@ -8,11 +8,14 @@ namespace Pica {
|
||||
|
||||
namespace Shader {
|
||||
|
||||
template <bool Debug>
|
||||
struct UnitState;
|
||||
|
||||
template <bool Debug>
|
||||
void RunInterpreter(const ShaderSetup& setup, UnitState<Debug>& state, unsigned offset);
|
||||
struct DebugData;
|
||||
|
||||
template <bool Debug>
|
||||
void RunInterpreter(const ShaderSetup& setup, UnitState& state, DebugData<Debug>& debug_data,
|
||||
unsigned offset);
|
||||
|
||||
} // namespace
|
||||
|
||||
|
Reference in New Issue
Block a user