yuzu/src/shader_recompiler/file_environment.h

26 lines
482 B
C++
Raw Normal View History

2021-01-09 07:30:07 +01:00
#pragma once
#include <vector>
#include "common/common_types.h"
#include "shader_recompiler/environment.h"
2021-01-09 07:30:07 +01:00
namespace Shader {
class FileEnvironment final : public Environment {
public:
explicit FileEnvironment(const char* path);
~FileEnvironment() override;
2021-02-17 04:59:28 +01:00
u64 ReadInstruction(u32 offset) override;
2021-03-23 01:03:20 +01:00
u32 TextureBoundBuffer() const override;
2021-03-23 01:03:20 +01:00
std::array<u32, 3> WorkgroupSize() const override;
2021-01-09 07:30:07 +01:00
private:
std::vector<u64> data;
};
} // namespace Shader