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