Lines Matching refs:remap
1238 for (auto& remap : resources.push_constant_buffers) {
1239 const auto& blockType = compiler.get_type(remap.base_type_id);
1240 auto name = compiler.get_name(remap.id);
1243 Gles::ProcessStruct(std::string_view(name.data(), name.size()), 0, compiler, remap.base_type_id,
1401 for (const auto& remap : resources) {
1402 const auto binding = get_binding(compiler, remap.id);
1410 if (auto origname = compiler.get_name(remap.id); origname.empty()) {
1411 compiler.set_name(remap.base_type_id, name);
1413 compiler.set_name(remap.id, name);
1416 compiler.set_name(remap.id, name);
1419 compiler.unset_decoration(remap.id, spv::DecorationDescriptorSet);
1420 compiler.unset_decoration(remap.id, spv::DecorationBinding);
1423 remap.id, spv::DecorationBinding, forceBinding - 1); // will be over-written later. (special handling)
1449 for (auto& remap : compiler.get_combined_image_samplers()) {
1450 const auto imageBinding = get_binding(compiler, remap.image_id);
1456 const auto samplerBinding = get_binding(compiler, remap.sampler_id);
1468 compiler.set_name(remap.combined_id, temp);