소스 검색

shader: Fixup SPIR-V emit header namespaces

ReinUsesLisp 5 년 전
부모
커밋
b725db8709
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/shader_recompiler/backend/spirv/emit_spirv_instructions.h

+ 2 - 2
src/shader_recompiler/backend/spirv/emit_spirv_instructions.h

@@ -6,12 +6,12 @@
 
 #include "common/common_types.h"
 
-namespace IR {
+namespace Shader::IR {
 enum class Attribute : u64;
 enum class Patch : u64;
 class Inst;
 class Value;
-} // namespace IR
+} // namespace Shader::IR
 
 namespace Shader::Backend::SPIRV {