--- /dev/null
+From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
+Date: Sat, 28 Jan 2023 00:24:04 +0100
+Subject: Fix compatibility with spirv-cross SDK 1.3.236
+
+---
+ libs/filamat/src/GLSLPostProcessor.cpp | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/libs/filamat/src/GLSLPostProcessor.cpp b/libs/filamat/src/GLSLPostProcessor.cpp
+index 678f069..c774bd9 100644
+--- a/libs/filamat/src/GLSLPostProcessor.cpp
++++ b/libs/filamat/src/GLSLPostProcessor.cpp
+@@ -346,7 +346,11 @@ void GLSLPostProcessor::fullOptimization(const TShader& tShader,
+
+ if (tShader.getStage() == EShLangFragment && glslOptions.es) {
+ for (auto i : config.glsl.subpassInputToColorLocation) {
++#if SPV_VERSION >= 0x10600
++ glslCompiler.remap_ext_framebuffer_fetch(i.first, i.second, true);
++#else
+ glslCompiler.remap_ext_framebuffer_fetch(i.first, i.second);
++#endif
+ }
+ }
+
0016-Fix-FTBFS-with-GCC-12.patch
0017-Workaround-for-armel-clang-compiler-bug.patch
0018-Fix-TBuiltInResource-struct.patch
+0019-Fix-compatibility-with-spirv-cross-SDK-1.3.236.patch