citra/src/video_core/shader/shader_interpreter.h

19 lines
320 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2015-09-11 13:20:02 +02:00
#include "video_core/shader/shader.h"
namespace Pica {
namespace Shader {
template<bool Debug>
void RunInterpreter(UnitState<Debug>& state);
} // namespace
} // namespace