2014-07-26 19:17:09 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-26 19:17:09 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
|
2015-07-22 01:04:05 +02:00
|
|
|
namespace Shader {
|
2014-07-26 19:17:09 +02:00
|
|
|
|
2016-04-30 17:34:51 +02:00
|
|
|
template <bool Debug> struct UnitState;
|
|
|
|
|
2015-07-12 01:57:59 +02:00
|
|
|
template<bool Debug>
|
2016-05-13 09:38:40 +02:00
|
|
|
void RunInterpreter(const ShaderSetup& setup, UnitState<Debug>& state, unsigned offset);
|
2014-07-26 19:17:09 +02:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
} // namespace
|