summaryrefslogblamecommitdiffstats
path: root/src/shader_recompiler/environment.h
blob: 0fcb68050da2d990228069bbc29410caebb371cd (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 u32 TextureBoundBuffer() = 0;

    [[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() = 0;
};

} // namespace Shader