summaryrefslogblamecommitdiffstats
path: root/src/shader_recompiler/environment.h
blob: 0ba681fb961b34a34395a0c9fe3c20f6172aec59 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

            

                







                                     


                                                                 


                     
#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