yuzu-emu
/
yuzu-mainline
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
yuzu-mainline/src/shader_recompiler/environment.h

19 lines
310 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"
namespace Shader {
class Environment {
public:
virtual ~Environment() = default;
2021-02-17 03:59:28 +00:00
[[nodiscard]] virtual u64 ReadInstruction(u32 address) = 0;
[[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() = 0;
2021-01-09 06:30:07 +00:00
};
} // namespace Shader