Home
last modified time | relevance | path

Searched refs:ioTypeMap (Results 1 – 2 of 2) sorted by relevance

/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp177 auto it = ioTypeMap.find(memberType.getStruct()); in growGlobalUniformBlock()
178 if (it != ioTypeMap.end() && it->second.uniform) in growGlobalUniformBlock()
2331 auto it = ioTypeMap.find(type.getStruct()); in remapEntryPointIO()
2332 if (it == ioTypeMap.end() || it->second.input == nullptr) { in remapEntryPointIO()
2342 if (it == ioTypeMap.end()) { in remapEntryPointIO()
2344 ioTypeMap[type.getStruct()] = newLists; in remapEntryPointIO()
2370 auto newLists = ioTypeMap.find(ioVariable->getType().getStruct()); in remapEntryPointIO()
2371 if (newLists != ioTypeMap.end()) { in remapEntryPointIO()
7878 auto it = ioTypeMap.find(member->type->getStruct()); in declareStruct()
7879 if (it != ioTypeMap.end()) { in declareStruct()
[all …]
DhlslParseHelper.h402 TMap<const TTypeList*, tIoKinds> ioTypeMap; variable