diff --git a/renderdoc/driver/shaders/spirv/spirv_compile.cpp b/renderdoc/driver/shaders/spirv/spirv_compile.cpp index 9aac504a4..4acd610f2 100644 --- a/renderdoc/driver/shaders/spirv/spirv_compile.cpp +++ b/renderdoc/driver/shaders/spirv/spirv_compile.cpp @@ -134,9 +134,6 @@ TBuiltInResource DefaultResources = string CompileSPIRV(SPIRVShaderStage shadType, const std::vector &sources, vector &spirv) { -#if 1 || defined(RELEASE) - return "SPIR-V disassembly disabled due to glslang instability"; -#else if(shadType >= eSPIRVInvalid) return "Invalid shader stage specified"; @@ -205,5 +202,4 @@ string CompileSPIRV(SPIRVShaderStage shadType, const std::vector &s delete[] strs; return errors; -#endif }