2014-07-26 17:17:09 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-26 17:17:09 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
|
2015-07-21 23:04:05 +00:00
|
|
|
namespace Shader {
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2016-04-30 15:34:51 +00:00
|
|
|
template <bool Debug> struct UnitState;
|
|
|
|
|
2015-07-11 23:57:59 +00:00
|
|
|
template<bool Debug>
|
|
|
|
void RunInterpreter(UnitState<Debug>& state);
|
2014-07-26 17:17:09 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
} // namespace
|