yuzu/src/shader_recompiler/file_environment.h

26 lines
470 B
C++
Raw Normal View History

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