Lines Matching refs:storageClass
746 SpvId SPIRVCodeGenerator::getPointerType(const Type& type, SpvStorageClass_ storageClass) {
747 return this->getPointerType(type, fDefaultLayout, storageClass);
751 SpvStorageClass_ storageClass) {
753 String key = type.displayName() + "*" + to_string(layout.fStd) + to_string(storageClass);
757 this->writeInstruction(SpvOpTypePointer, result, storageClass,
3022 SpvStorageClass_ storageClass = get_storage_class(intf.variable(), SpvStorageClassFunction);
3072 this->writeInstruction(SpvOpTypePointer, ptrType, storageClass, typeId, fConstantBuffer);
3073 this->writeInstruction(SpvOpVariable, ptrType, result, storageClass, fConstantBuffer);
3112 SpvStorageClass_ storageClass = get_storage_class(var, SpvStorageClassPrivate);
3113 if (storageClass == SpvStorageClassUniform) {
3120 if (layout.fSet < 0 && storageClass == SpvStorageClassUniformConstant) {
3125 SpvId typeId = this->getPointerType(type, storageClass);
3126 this->writeInstruction(SpvOpVariable, typeId, id, storageClass, fConstantBuffer);