Home
last modified time | relevance | path

Searched refs:bufferingCount (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Ddevice.cpp488 if ((deviceConfiguration_.bufferingCount < MIN_BUFFERING_COUNT) || in Device()
489 (deviceConfiguration_.bufferingCount > MAX_BUFFERING_COUNT)) { in Device()
490 deviceConfiguration_.bufferingCount = in Device()
491 … std::clamp(deviceConfiguration_.bufferingCount, MIN_BUFFERING_COUNT, MAX_BUFFERING_COUNT); in Device()
492 PLUGIN_LOG_D("buffering count clamped to: %u", deviceConfiguration_.bufferingCount); in Device()
765 return deviceConfiguration_.bufferingCount; in GetCommandBufferingCount()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dnode_context_pool_manager_vk.cpp273 const uint32_t bufferingCount = device_.GetCommandBufferingCount(); local
274 if (bufferingCount > 0) {
276 commandPools_.resize(bufferingCount);
277 commandSecondaryPools_.resize(bufferingCount);
H A Dnode_context_descriptor_set_manager_vk.cpp702 …const uint32_t bufferingCount = (oneFrameDescBit == ONE_FRAME_DESC_SET_BIT) ? 1u : bufferingCount_; in UpdateDescriptorSetGpuHandle() local
711 CreateGpuDescriptorSet(bufferingCount, handle, refCpuSet, descriptorPool); in UpdateDescriptorSetGpuHandle()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/
H A Dintf_device.h78 uint32_t bufferingCount { 3u };
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H A Drender_frame_util.cpp61 bufferedPostFrame_.resize(device_.GetDeviceConfiguration().bufferingCount); in RenderFrameUtil()