Home
last modified time | relevance | path

Searched refs:get (Results 4751 - 4775 of 11180) sorted by relevance

1...<<191192193194195196197198199200>>...448

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrStorageImageWriteTests.cpp302 auto shaderModule = makeVkSharedPtr(createShaderModule(vkd, device, context.getBinaryCollection().get(shaderName.str()), DE_NULL));
304 auto computePipeline = makeVkSharedPtr(makeComputePipeline(vkd, device, *pipelineLayout, (VkPipelineCreateFlags) 0u, nullptr, shaderModule->get(), (VkPipelineShaderStageCreateFlags) 0u, DE_NULL));
306 vkd.cmdBindPipeline(*commandBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, computePipeline->get());
320 const VkDescriptorImageInfo imageInfo = makeDescriptorImageInfo(DE_NULL, imageView->get(), VK_IMAGE_LAYOUT_GENERAL);
323 .writeSingle(descriptorSet->get(), DescriptorSetUpdateBuilder::Location::binding(0u), VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, &imageInfo)
326 vkd.cmdBindDescriptorSets(*commandBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, *pipelineLayout, 0u, 1u, &descriptorSet->get(), 0u, DE_NULL);
761 addFunctionCaseWithPrograms(sizeGroup.get(), "joint", checkSupport, initPrograms, testStorageImageWrite, TestParameters(format, imageSize, 0u));
762 addFunctionCaseWithPrograms(sizeGroup.get(), "disjoint", checkSupport, initPrograms, testStorageImageWrite, TestParameters(format, imageSize, (VkImageCreateFlags)(VK_IMAGE_CREATE_DISJOINT_BIT | VK_IMAGE_CREATE_EXTENDED_USAGE_BIT)));
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCaps.cpp97 get(formatID) = caps; in insert()
105 const TextureCaps &TextureCapsMap::get(GLenum internalFormat) const in get() function in gl::TextureCapsMap
108 return get(formatID); in get()
111 const TextureCaps &TextureCapsMap::get(angle::FormatID formatID) const in get() function in gl::TextureCapsMap
116 TextureCaps &TextureCapsMap::get(angle::FormatID formatID) in get() function in gl::TextureCapsMap
123 get(formatID) = caps; in set()
174 const TextureCaps &cap = textureCaps.get(requiredFormats[i]); in GetFormatSupportBase()
931 void TypePrecision::get(GLint *returnRange, GLint *returnPrecision) const in get() function in gl::TypePrecision
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp79 // Explicitly sequence get-size and insert-value operations to avoid UB. in index()
124 if (!isa<GlobalValue>(U.get())) in orderModule()
125 orderValue(U.get(), OM); in orderModule()
207 if (!IsGlobalValue) // GlobalValue uses don't get reversed. in predictValueUseListOrderImpl()
213 if (!IsGlobalValue) // GlobalValue uses don't get reversed. in predictValueUseListOrderImpl()
221 if (!IsGlobalValue) // GlobalValue uses don't get reversed. in predictValueUseListOrderImpl()
310 predictValueUseListOrder(U.get(), nullptr, OM, Stack); in predictUseListOrder()
366 EnumerateValue(U.get()); in ValueEnumerator()
746 return std::make_tuple(LHS.F, getMetadataTypeOrder(LHS.get(MDs)), LHS.ID) < in organizeMetadata()
747 std::make_tuple(RHS.F, getMetadataTypeOrder(RHS.get(MD in organizeMetadata()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp104 // If there is any strong definition anywhere, get it. in getFirstDefinitionForLinker()
112 return StrongDefForLinker->get(); in getFirstDefinitionForLinker()
123 return FirstDefForLinker->get(); in getFirstDefinitionForLinker()
149 ModuleMap[M->getName()] = M.get(); in generateModuleMap()
201 verifyLoadedModule(*ModuleOrErr.get()); in loadModuleFromInput()
238 // FIXME: should get it from the bitcode? in optimizeModule()
390 report_fatal_error("ThinLTO: Can't get a temporary file"); in write()
919 auto TheModule = loadModuleFromInput(Mod.get(), Context, false, in run()
1025 // is to sort them per size so that the largest module get schedule as soon as in run()
1066 ProducedBinaries[count] = std::move(ErrOrBuffer.get()); in run()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DCommandProcessor.cpp502 // We get to ignore these as they are not fatal in processTask()
853 VkResult result = batch.fence.get().getStatus(device); in checkCompletedCommands()
901 for (GarbageObject &garbage : garbageList.get()) in retireFinishedCommands()
937 for (GarbageObject &garbage : garbageList.get()) in clearAllGarbage()
954 VkResult status = batch.fence.get().wait(device, renderer->getMaxFenceWaitTimeNs()); in handleDeviceLost()
1001 VkResult status = batch.fence.get().wait(device, timeout); in finishToSerial()
1060 CommandBatch &batch = scopedBatch.get(); in submitFrame()
1067 ANGLE_TRY(queueSubmit(context, priority, submitInfo, &batch.fence.get(), batch.serial)); in submitFrame()
1137 vk::Fence &fence = mInFlightCommands[batchIndex].fence.get(); in waitForSerialWithUserTimeout()
/third_party/skia/src/core/
H A DSkDraw.cpp87 SkScan::FillIRect(devRect, *fRC, blitter.get()); in drawPaint()
259 SkScalar sx = matrix->get(SkMatrix::kMScaleX); in init()
260 SkScalar sy = matrix->get(SkMatrix::kMScaleY); in init()
367 SkBlitter* bltr = blitter.get(); in drawPoints()
671 SkBlitter* blitter = blitterStorage.get(); in drawRect()
719 SkBlitter* blitter = blitterChooser.get(); in drawDevMask()
795 if (as_MFB(paint.getMaskFilter())->filterRRect(devRRect, ctm, *fRC, blitter.get())) { in drawRRect()
1017 mask.fImage = storage.get(); in drawBitmapAsMask()
1170 // get a scalar version of our rect in drawSprite()
/third_party/skia/src/gpu/ops/
H A DOpsTask.cpp79 : fHead(std::move(op)), fTail(fHead.get()) { in List()
98 SkASSERT(fTail == temp.get()); in popHead()
108 SkASSERT(head == fHead.get()); in removeOp()
112 SkASSERT(op == fHead.get()); in removeOp()
135 fTail = fHead.get(); in pushHead()
747 // inital contents of subsequent opsTasks that get merged in don't matter. in mergeFrom()
765 renderTask->replaceDependency(toMerge.get(), this); in mergeFrom()
768 renderTask->replaceDependent(toMerge.get(), this); in mergeFrom()
1002 GR_AUDIT_TRAIL_ADD_OP(fAuditTrail, op.get(), proxy->uniqueID()); in recordOp()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dtype_manager.cpp149 id_to_type_[type.id()] = pair.first->get(); in AnalyzeTypes()
150 type_to_id_[pair.first->get()] = type.id(); in AnalyzeTypes()
168 Type* ti = i.get(); in AnalyzeTypes()
169 Type* tj = j.get(); in AnalyzeTypes()
516 return type_pool_.insert(std::move(rebuilt_ty)).first->get() in RebuildType()
641 return type_pool_.insert(std::move(rebuilt_ty)).first->get(); in RebuildType()
884 id_to_type_[id] = pair.first->get(); in RecordIfTypeDefinition()
885 type_to_id_[pair.first->get()] = id; in RecordIfTypeDefinition()
936 assert(false && "Trying to get a member of a type without members."); in GetMemberType()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dtype_manager.cpp149 id_to_type_[type.id()] = pair.first->get(); in AnalyzeTypes()
150 type_to_id_[pair.first->get()] = type.id(); in AnalyzeTypes()
168 Type* ti = i.get(); in AnalyzeTypes()
169 Type* tj = j.get(); in AnalyzeTypes()
516 return type_pool_.insert(std::move(rebuilt_ty)).first->get() in RebuildType()
641 return type_pool_.insert(std::move(rebuilt_ty)).first->get(); in RebuildType()
884 id_to_type_[id] = pair.first->get(); in RecordIfTypeDefinition()
885 type_to_id_[pair.first->get()] = id; in RecordIfTypeDefinition()
936 assert(false && "Trying to get a member of a type without members."); in GetMemberType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp274 Type *NewPtrTy = PointerType::get(ElTy, PtrTy->getAddressSpace()); in operator []()
362 UndefValue::get(V->getType())); in scatter()
382 Op->setOperand(I, UndefValue::get(Op->getOperand(I)->getType())); in gather()
703 Type *MidTy = VectorType::get(DstVT->getElementType(), FanOut); in visitBitCastInst()
721 Type *MidTy = VectorType::get(SrcVT->getElementType(), FanIn); in visitBitCastInst()
724 Value *V = UndefValue::get(MidTy); in visitBitCastInst()
751 Res[I] = UndefValue::get(VT->getElementType()); in visitShuffleVectorInst()
856 Value *Res = UndefValue::get(Ty); in finish()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIMemoryLegalizer.cpp729 BuildMI(MBB, MI, DL, TII->get(AMDGPU::BUFFER_WBINVL1)); in insertCacheInvalidate()
841 BuildMI(MBB, MI, DL, TII->get(AMDGPU::S_WAITCNT)).addImm(WaitCntImmediate); in insertWait()
873 BuildMI(MBB, MI, DL, TII->get(Flush)); in insertCacheInvalidate()
969 BuildMI(MBB, MI, DL, TII->get(AMDGPU::BUFFER_GL0_INV)); in insertCacheInvalidate()
970 BuildMI(MBB, MI, DL, TII->get(AMDGPU::BUFFER_GL1_INV)); in insertCacheInvalidate()
979 BuildMI(MBB, MI, DL, TII->get(AMDGPU::BUFFER_GL0_INV)); in insertCacheInvalidate()
1107 BuildMI(MBB, MI, DL, TII->get(AMDGPU::S_WAITCNT)).addImm(WaitCntImmediate); in insertWait()
1112 BuildMI(MBB, MI, DL, TII->get(AMDGPU::S_WAITCNT_VSCNT)) in insertWait()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp404 BFI = ScopedBFI.get(); in computeOutliningColdRegionsInfo()
671 if (!CheckAndNormalizeCandidate(OutliningInfo.get())) in computeOutliningInfo()
737 if (hasProfileData(Cloner.OrigFunc, Cloner.ClonedOI.get())) in getOutliningCallBBRelativeFreq()
941 CurrentCallerBFI = TempBFI.get(); in computeCallsiteToProfCountMap()
1135 ClonedFuncBFI.get(), &BPI, in doMultiRegionFunctionOutlining()
1220 ClonedFuncBFI.get(), &BPI, LookupAC(*ClonedFunc), in doSingleRegionFunctionOutlining()
1284 FunctionCloner Cloner(F, OMRI.get(), ORE, LookupAssumptionCache); in unswitchFunction()
1317 FunctionCloner Cloner(F, OI.get(), ORE, LookupAssumptionCache); in unswitchFunction()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h213 AllocatorType& GetAllocator() { return alloc_data_.template get<0>(); } in GetAllocator()
214 Pointer& GetData() { return alloc_data_.template get<1>(); } in GetData()
254 AllocatorType& GetAllocator() { return alloc_data_.template get<0>(); } in GetAllocator()
255 Pointer& GetData() { return alloc_data_.template get<1>(); } in GetData()
345 size_type& GetSizeAndIsAllocated() { return metadata_.template get<1>(); } in GetSizeAndIsAllocated()
348 return metadata_.template get<1>(); in GetSizeAndIsAllocated()
385 return std::addressof(metadata_.template get<0>()); in GetAllocPtr()
389 return std::addressof(metadata_.template get<0>()); in GetAllocPtr()
/third_party/spirv-tools/source/opt/
H A Dtype_manager.cpp148 id_to_type_[type.id()] = pair.first->get(); in AnalyzeTypes()
149 type_to_id_[pair.first->get()] = type.id(); in AnalyzeTypes()
167 Type* ti = i.get(); in AnalyzeTypes()
168 Type* tj = j.get(); in AnalyzeTypes()
531 return type_pool_.insert(std::move(rebuilt_ty)).first->get() in RebuildType()
666 return type_pool_.insert(std::move(rebuilt_ty)).first->get(); in RebuildType()
919 id_to_type_[id] = pair.first->get(); in RecordIfTypeDefinition()
920 type_to_id_[pair.first->get()] = id; in RecordIfTypeDefinition()
969 assert(false && "Trying to get a member of a type without members."); in GetMemberType()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureFilteringExplicitLodTests.cpp318 vkd.getBufferMemoryRequirements(dev, buf.get(), &bufMemReq); in initializeImage()
321 VK_CHECK(vkd.bindBufferMemory(dev, buf.get(), bufMem->getMemory(), bufMem->getOffset())); in initializeImage()
364 copyBufferToImage(vkd, dev, ctx.getUniversalQueue(), ctx.getUniversalQueueFamilyIndex(), buf.get(), bufSize, copyRegions, DE_NULL, VK_IMAGE_ASPECT_COLOR_BIT, imParams.levels, imParams.arrayLayers, im); in initializeImage()
581 initializeImage(m_context, m_im.get(), &m_levels[0], m_imParams); in runTest()
794 vkd.getImageMemoryRequirements(device, m_im.get(), &imMemReq); in createResources()
797 VK_CHECK(vkd.bindImageMemory(device, m_im.get(), m_imAllocation->getMemory(), m_imAllocation->getOffset())); in createResources()
825 m_im.get(), // image in createResources()
883 &m_extraResourcesLayout.get(), in createResources()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderApiTests.cpp224 glu::Shader& get (const glu::ShaderType shaderType) { DE_ASSERT(hasShader(shaderType)); return *m_shaders[shaderType]; } in get() function in deqp::gles2::Functional::__anon30440::ShaderAllocator
303 logShader(log, renderCtx, shaders.get(shaderType)); in logProgram()
892 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
914 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
937 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
960 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
984 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
1007 glu::Shader& caseShader = shaders.get(m_shaderType); in executeForProgram()
/test/xts/acts/distributeddatamgr/kvStoretest/kvStorejstest/hap/entry/src/ohosTest/js/test/
H A DDeviceKvStorePromiseJsunit.test.js233 await kvStore.get(localDeviceId, KEY_TEST_STRING_ELEMENT).then((data) => {
234 console.info('testDeviceKvStorePutString004 get success data ' + data);
237 console.info('testDeviceKvStorePutString004 get fail ' + err);
262 await kvStore.get(localDeviceId, KEY_TEST_STRING_ELEMENT).then((data) => {
263 console.info('testDeviceKvStoreGetString001 get success');
266 console.info('testDeviceKvStoreGetString001 get fail ' + err);
288 await kvStore.get(localDeviceId, KEY_TEST_STRING_ELEMENT).then((data) => {
289 console.info('testDeviceKvStoreGetString002 get success');
292 console.info('testDeviceKvStoreGetString002 get fail ' + err);
295 console.info('testDeviceKvStoreGetString002 get
[all...]
/test/xts/hats/hdf/codec/hdi_omx/
H A Dcodec_hdi_omx_test.cpp150 auto err = component_->UseBuffer(component_, (uint32_t)portIndex, omxBuffer.get()); in UseBufferOnPort()
178 auto ret = component_->FreeBuffer(component_, (uint32_t)portIndex, bufferInfo->omxBuffer.get()); in FreeBufferOnPort()
800 auto err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_INPUT, omxBuffer.get()); in HWTEST_F()
823 auto err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_OUTPUT, omxBuffer.get()); in HWTEST_F()
846 auto err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_INPUT, omxBuffer.get()); in HWTEST_F()
869 auto err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_OUTPUT, omxBuffer.get()); in HWTEST_F()
910 err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_INPUT, omxBuffer.get()); in HWTEST_F()
967 err = component_->UseBuffer(component_, (uint32_t)PortIndex::PORT_INDEX_OUTPUT, omxBuffer.get()); in HWTEST_F()
1066 auto err = component_->UseBuffer(component_, static_cast<uint32_t>(PortIndex::PORT_INDEX_INPUT), omxBuffer.get()); in HWTEST_F()
1090 auto ret = component_->UseEglImage(component_, &buffer, (uint32_t)PortIndex::PORT_INDEX_INPUT, eglImage.get(), in HWTEST_F()
[all...]
/third_party/alsa-lib/src/topology/
H A Dctl.c62 /* get value */ in parse_access_values()
343 /* get ID */ in tplg_parse_tlv_dbscale()
347 /* get value */ in tplg_parse_tlv_dbscale()
353 /* get TLV data */ in tplg_parse_tlv_dbscale()
925 hdr->ops.get = t->ops.get; in init_ctl_hdr()
1165 be->ext_ops.get = bytes_ctl->ext_ops.get; in tplg_add_bytes()
1239 mt->hdr.ops.get = mc->hdr.ops.get; in tplg_decode_control_mixer1()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/
H A DTimeZoneRuleTest.java147 offset = rbtz1.getOffset(cal.get(Calendar.ERA), cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), in TestSimpleRuleBasedTimeZone()
148 cal.get(Calendar.DAY_OF_MONTH), cal.get(Calendar.DAY_OF_WEEK), cal.get(Calendar.MILLISECONDS_IN_DAY)); in TestSimpleRuleBasedTimeZone()
168 offset = rbtz1.getOffset(cal.get(Calendar.ERA), cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), in TestSimpleRuleBasedTimeZone()
169 cal.get(Calenda in TestSimpleRuleBasedTimeZone()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
H A DTimeZoneRuleTest.java145 offset = rbtz1.getOffset(cal.get(Calendar.ERA), cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), in TestSimpleRuleBasedTimeZone()
146 cal.get(Calendar.DAY_OF_MONTH), cal.get(Calendar.DAY_OF_WEEK), cal.get(Calendar.MILLISECONDS_IN_DAY)); in TestSimpleRuleBasedTimeZone()
166 offset = rbtz1.getOffset(cal.get(Calendar.ERA), cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), in TestSimpleRuleBasedTimeZone()
167 cal.get(Calenda in TestSimpleRuleBasedTimeZone()
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_emit_nv50.cpp137 assert(src.get()); in srcId()
143 assert(src->get()); in srcId()
149 assert(src.get()); in srcAddr16()
153 assert(!adj || src.get()->reg.size <= 4); in srcAddr16()
155 offset /= src.get()->reg.size; in srcAddr16()
160 offset &= adj ? (0xffff >> (src.get()->reg.size >> 1)) : 0xffff; in srcAddr16()
167 assert(src.get()); in srcAddr8()
178 assert(def.get() && def.getFile() != FILE_SHADER_OUTPUT); in defId()
304 const ImmediateValue *imm = i->src(s).get()->asImm(); in setImmediate()
864 const uint32_t prim = i->src(0).get() in emitPFETCH()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingBufferDeviceAddressTests.cpp884 descriptorSetLayoutsRaw[i] = descriptorSetLayout.get(); in iterate()
886 descriptorSetLayoutsRaw[i] = emptyDescriptorSetLayout.get(); in iterate()
991 vk.cmdBindDescriptorSets(*cmdBuffer, bindPoint, *pipelineLayout, m_data.set, 1, &descriptorSet.get(), 0, DE_NULL); in iterate()
1002 const Unique<VkShaderModule> shader(createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0)); in iterate()
1030 const Unique<VkShaderModule> shader(createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0)); in iterate()
1194 vs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0); in iterate()
1195 fs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0); // bogus in iterate()
1200 vs = createShaderModule(vk, device, m_context.getBinaryCollection().get("vert"), 0); in iterate()
1201 fs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0); in iterate()
1243 pipelineLayout.get(), // VkPipelineLayou in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp128 return compatibleFormat ? compatibleFormat.get() : format; in resolveFormat()
301 // perform query to get supported float control properties in isFeaturesSupported()
337 if (! isSupportedFormat(m_context, m_config.compatibleFormat.get())) in isFeaturesSupported()
638 return createRenderPass(m_config.compatibleFormat.get(), 0); in createRenderPassCompatible()
703 const Unique<VkShaderModule> vertexShaderModule (createShaderModule(m_vkd, m_device, binaryCollection.get("quad-vert"), 0u)); in createRenderPipeline()
704 const Unique<VkShaderModule> fragmentShaderModule (createShaderModule(m_vkd, m_device, binaryCollection.get("quad-frag"), 0u)); in createRenderPipeline()
705 const Move<VkShaderModule> geometryShaderModule (m_config.imageLayers == 1 ? Move<VkShaderModule>() : createShaderModule(m_vkd, m_device, binaryCollection.get("quad-geom"), 0u)); in createRenderPipeline()
891 vk::beginCommandBuffer(m_vkd, commandBuffer.get()); in submit()
892 m_vkd.cmdPipelineBarrier(commandBuffer.get(), vk::VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT, vk::VK_PIPELINE_STAGE_TRANSFER_BIT, 0u, 0u, DE_NULL, 0u, DE_NULL, 1u, &preBarrier); in submit()
893 m_vkd.cmdClearDepthStencilImage(commandBuffer.get(), **m_singlesampleImag in submit()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/
H A DvktShaderObjectLinkTests.cpp221 const auto& vert = binaries.get("vert"); in iterate()
222 const auto& tesc = binaries.get("tesc"); in iterate()
223 const auto& tese = binaries.get("tese"); in iterate()
224 const auto& geom = binaries.get("geom"); in iterate()
225 const auto& frag = binaries.get("frag"); in iterate()
504 submitCommandsAndWait(vk, device, queue, cmdBuffer.get()); in iterate()
693 const auto& task = binaries.get("task"); in iterate()
694 const auto& mesh = binaries.get("mesh"); in iterate()
695 const auto& frag = binaries.get("frag"); in iterate()
861 vk.cmdBindDescriptorSets(*cmdBuffer, vk::VK_PIPELINE_BIND_POINT_GRAPHICS, pipelineLayout.get(), in iterate()
[all...]

Completed in 43 milliseconds

1...<<191192193194195196197198199200>>...448