1
0
Fork 0
forked from suyu/suyu
suyu/src/shader_recompiler/environment.h
2021-07-22 21:51:22 -04:00

18 lines
310 B
C++

#pragma once
#include <array>
#include "common/common_types.h"
namespace Shader {
class Environment {
public:
virtual ~Environment() = default;
[[nodiscard]] virtual u64 ReadInstruction(u32 address) = 0;
[[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() = 0;
};
} // namespace Shader