diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-22 18:29:43 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:33 -0400 |
commit | e30d4fa976f608a79629e12cac25f7b951e6b8fb (patch) | |
tree | f0bdf0d2f91fdf4faff7e746c31e71fac25d39b3 /src/shader_recompiler/backend/glasm/emit_context.h | |
parent | c8414e686f30b3bec7f179ee7ab800f223f8ece0 (diff) |
glasm: Implement indirect attribute loads
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_context.h')
-rw-r--r-- | src/shader_recompiler/backend/glasm/emit_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.h b/src/shader_recompiler/backend/glasm/emit_context.h index 1f057fdd5a..057d747907 100644 --- a/src/shader_recompiler/backend/glasm/emit_context.h +++ b/src/shader_recompiler/backend/glasm/emit_context.h @@ -58,6 +58,7 @@ public: std::string code; RegAlloc reg_alloc{*this}; + const Info& info; const Profile& profile; const RuntimeInfo& runtime_info; |