From: Mikko Rasa Date: Sat, 24 Apr 2021 14:57:19 +0000 (+0300) Subject: Record texture bindings from SPIR-V modules X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=ca174bb730e3484cc9572013186d83bbc39bac99;ds=sidebyside Record texture bindings from SPIR-V modules --- 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; }