yuzu-fork/src/shader_recompiler/environment.h

40 lines
807 B
C++
Raw Normal View History

2021-01-09 06:30:07 +00:00
#pragma once
2021-02-17 03:59:28 +00:00
#include <array>
2021-01-09 06:30:07 +00:00
#include "common/common_types.h"
#include "shader_recompiler/program_header.h"
2021-03-23 00:03:20 +00:00
#include "shader_recompiler/stage.h"
2021-01-09 06:30:07 +00:00
namespace Shader {
class Environment {
public:
virtual ~Environment() = default;
2021-02-17 03:59:28 +00:00
[[nodiscard]] virtual u64 ReadInstruction(u32 address) = 0;
2021-03-23 00:03:20 +00:00
[[nodiscard]] virtual u32 TextureBoundBuffer() const = 0;
2021-03-23 00:03:20 +00:00
[[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() const = 0;
[[nodiscard]] const ProgramHeader& SPH() const noexcept {
return sph;
}
[[nodiscard]] Stage ShaderStage() const noexcept {
return stage;
}
2021-03-23 00:03:20 +00:00
[[nodiscard]] u32 StartAddress() const noexcept {
return start_address;
}
protected:
ProgramHeader sph{};
Stage stage{};
2021-03-23 00:03:20 +00:00
u32 start_address{};
2021-01-09 06:30:07 +00:00
};
} // namespace Shader