mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-25 04:46:27 -05:00
dd4a1672a7
Currently there's only a single dummy implementation, which will be split in a following commit.
23 lines
448 B
C++
23 lines
448 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Pica {
|
|
|
|
namespace Shader {
|
|
|
|
struct ShaderSetup;
|
|
struct UnitState;
|
|
|
|
template <bool Debug>
|
|
struct DebugData;
|
|
|
|
template <bool Debug>
|
|
void RunInterpreter(const ShaderSetup& setup, UnitState& state, DebugData<Debug>& debug_data,
|
|
unsigned offset);
|
|
|
|
} // namespace
|
|
|
|
} // namespace
|