From ca174bb730e3484cc9572013186d83bbc39bac99 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 24 Apr 2021 17:57:19 +0300 Subject: [PATCH] Record texture bindings from SPIR-V modules --- source/core/program.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/program.cpp b/source/core/program.cpp index 22626c65..9b5400a3 100644 --- a/source/core/program.cpp +++ b/source/core/program.cpp @@ -537,6 +537,7 @@ void Program::collect_uniforms() info.name = i->name; info.tag = i->name; info.location = i->location; + info.binding = i->binding; info.array_size = i->array_size; info.type = i->type; } -- 2.43.0