diff options
| author | 2021-05-03 22:34:56 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:30 -0400 | |
| commit | b725db870984e1335e080405cf4b9ed8ef936ae4 (patch) | |
| tree | ae367a0e934c31b085125c56920bae9f62cb90bb /src/shader_recompiler/backend | |
| parent | Move SPIR-V emission functions to their own header (diff) | |
| download | yuzu-b725db870984e1335e080405cf4b9ed8ef936ae4.tar.gz yuzu-b725db870984e1335e080405cf4b9ed8ef936ae4.tar.xz yuzu-b725db870984e1335e080405cf4b9ed8ef936ae4.zip | |
shader: Fixup SPIR-V emit header namespaces
Diffstat (limited to 'src/shader_recompiler/backend')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_instructions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h b/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h index b5eec3cd1..a1ca3f43d 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h +++ b/src/shader_recompiler/backend/spirv/emit_spirv_instructions.h | |||
| @@ -6,12 +6,12 @@ | |||
| 6 | 6 | ||
| 7 | #include "common/common_types.h" | 7 | #include "common/common_types.h" |
| 8 | 8 | ||
| 9 | namespace IR { | 9 | namespace Shader::IR { |
| 10 | enum class Attribute : u64; | 10 | enum class Attribute : u64; |
| 11 | enum class Patch : u64; | 11 | enum class Patch : u64; |
| 12 | class Inst; | 12 | class Inst; |
| 13 | class Value; | 13 | class Value; |
| 14 | } // namespace IR | 14 | } // namespace Shader::IR |
| 15 | 15 | ||
| 16 | namespace Shader::Backend::SPIRV { | 16 | namespace Shader::Backend::SPIRV { |
| 17 | 17 | ||