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"
|
2021-03-19 22:28:31 +00:00
|
|
|
#include "shader_recompiler/program_header.h"
|
2021-03-26 21:45:38 +00:00
|
|
|
#include "shader_recompiler/shader_info.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-27 21:30:24 +00:00
|
|
|
[[nodiscard]] virtual u32 ReadCbufValue(u32 cbuf_index, u32 cbuf_offset) = 0;
|
|
|
|
|
2021-04-20 22:48:45 +00:00
|
|
|
[[nodiscard]] virtual TextureType ReadTextureType(u32 raw_handle) = 0;
|
2021-03-26 21:45:38 +00:00
|
|
|
|
2021-03-23 00:03:20 +00:00
|
|
|
[[nodiscard]] virtual u32 TextureBoundBuffer() const = 0;
|
2021-03-08 21:31:53 +00:00
|
|
|
|
2021-03-28 22:53:34 +00:00
|
|
|
[[nodiscard]] virtual u32 LocalMemorySize() const = 0;
|
|
|
|
|
|
|
|
[[nodiscard]] virtual u32 SharedMemorySize() const = 0;
|
|
|
|
|
2021-03-23 00:03:20 +00:00
|
|
|
[[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() const = 0;
|
2021-03-19 22:28:31 +00:00
|
|
|
|
|
|
|
[[nodiscard]] const ProgramHeader& SPH() const noexcept {
|
|
|
|
return sph;
|
|
|
|
}
|
|
|
|
|
2021-06-24 05:41:09 +00:00
|
|
|
[[nodiscard]] const std::array<u32, 8>& GpPassthroughMask() const noexcept {
|
|
|
|
return gp_passthrough_mask;
|
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
[[nodiscard]] Stage ShaderStage() const noexcept {
|
|
|
|
return stage;
|
|
|
|
}
|
|
|
|
|
2021-03-23 00:03:20 +00:00
|
|
|
[[nodiscard]] u32 StartAddress() const noexcept {
|
|
|
|
return start_address;
|
|
|
|
}
|
|
|
|
|
2021-03-19 22:28:31 +00:00
|
|
|
protected:
|
|
|
|
ProgramHeader sph{};
|
2021-06-24 05:41:09 +00:00
|
|
|
std::array<u32, 8> gp_passthrough_mask{};
|
2021-03-19 22:28:31 +00:00
|
|
|
Stage stage{};
|
2021-03-23 00:03:20 +00:00
|
|
|
u32 start_address{};
|
2021-01-09 06:30:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Shader
|