yuzu-mainline/src/shader_recompiler/environment.h

21 lines
367 B
C++
Raw Normal View History

2021-01-08 22:30:07 -08:00
#pragma once
2021-02-16 19:59:28 -08:00
#include <array>
2021-01-08 22:30:07 -08:00
#include "common/common_types.h"
namespace Shader {
class Environment {
public:
virtual ~Environment() = default;
2021-02-16 19:59:28 -08:00
[[nodiscard]] virtual u64 ReadInstruction(u32 address) = 0;
[[nodiscard]] virtual u32 TextureBoundBuffer() = 0;
2021-02-16 19:59:28 -08:00
[[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() = 0;
2021-01-08 22:30:07 -08:00
};
} // namespace Shader