summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/environment.h
blob: f6230e8171080bf8655e76dda1e9c58bd32b2894 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "common/common_types.h"

namespace Shader {

class Environment {
public:
    virtual ~Environment() = default;

    [[nodiscard]] virtual u64 ReadInstruction(u32 address) const = 0;
};

} // namespace Shader