Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp6555 auto emplaceResult = mCachedTextureLevelData.emplace(dstID, TextureLevels()); in copyCachedTextureLevel() local
6556 ASSERT(emplaceResult.second); in copyCachedTextureLevel()
6557 foundDstTextureLevels = emplaceResult.first; in copyCachedTextureLevel()
6570 auto emplaceResult = foundDstLevels.emplace(dstLevel, std::move(dstTextureLevel)); in copyCachedTextureLevel() local
6571 ASSERT(emplaceResult.second); in copyCachedTextureLevel()
6583 auto emplaceResult = mCachedTextureLevelData.emplace(texture->id(), TextureLevels()); in getCachedTextureLevelData() local
6584 ASSERT(emplaceResult.second); in getCachedTextureLevelData()
6585 foundTextureLevels = emplaceResult.first; in getCachedTextureLevelData()
6626 auto emplaceResult = foundLevels.emplace(adjustedLevel, std::move(newPixelData)); in getCachedTextureLevelData() local
6627 ASSERT(emplaceResult.second); in getCachedTextureLevelData()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3609 auto emplaceResult = mPayload.emplace(desc, InnerCache()); in getRenderPassWithOpsImpl() local
3610 outerIt = emplaceResult.first; in getRenderPassWithOpsImpl()