Home
last modified time | relevance | path

Searched refs:typeLoc (Results 1 – 4 of 4) sorted by relevance

/third_party/glslang/glslang/MachineIndependent/
DParseContextBase.cpp641 TTypeLoc typeLoc = {type, loc}; in growGlobalUniformBlock() local
642 globalUniformBlock->getType().getWritableStruct()->push_back(typeLoc); in growGlobalUniformBlock()
702 TTypeLoc typeLoc = {type, loc}; in growAtomicCounterBlock() local
703 atomicCounterBuffer->getType().getWritableStruct()->push_back(typeLoc); in growAtomicCounterBlock()
729 for (const TTypeLoc& typeLoc : *type.getStruct()) in finish()
731 if (typeLoc.type->isOpaque()) in finish()
733 typeLoc.type->getSampler() = TSampler{}; in finish()
734 typeLoc.type->setBasicType(EbtInt); in finish()
736 fieldName.append(typeLoc.type->getFieldName()); in finish()
738 typeLoc.type->setFieldName(fieldName); in finish()
DParseHelper.cpp7487 for (const TTypeLoc& typeLoc : types) in ForEachOpaque() local
7491 nextPath.append(typeLoc.type->getFieldName()); in ForEachOpaque()
7493 recursion(*(typeLoc.type), nextPath, false, recursion); in ForEachOpaque()
/third_party/glslang/glslang/Include/
DTypes.h2828 TTypeLoc typeLoc; in deepCopy() local
2829 typeLoc.loc = (*copyOf.structure)[i].loc; in deepCopy()
2830 typeLoc.type = new TType(); in deepCopy()
2831 typeLoc.type->deepCopy(*(*copyOf.structure)[i].type, copiedMap); in deepCopy()
2832 structure->push_back(typeLoc); in deepCopy()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp2338 TTypeLoc typeLoc = { newType, member->loc }; in remapEntryPointIO() local
2339 list->push_back(typeLoc); in remapEntryPointIO()