/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/nodecontext/ |
H A D | intf_render_node_util.h | 69 virtual DescriptorCounts GetDescriptorCounts(const PipelineLayout& pipelineLayout) const = 0; 75 virtual DescriptorCounts GetDescriptorCounts(
|
H A D | intf_node_context_descriptor_set_manager.h | 56 virtual void ResetAndReserve(const DescriptorCounts& descriptorCounts) = 0; 62 virtual void ResetAndReserve(const BASE_NS::array_view<DescriptorCounts> descriptorCounts) = 0;
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/ |
H A D | render_node_util.h | 47 DescriptorCounts GetDescriptorCounts(const PipelineLayout& pipelineLayout) const override; 48 …DescriptorCounts GetDescriptorCounts(const BASE_NS::array_view<DescriptorSetLayoutBinding> binding…
|
H A D | render_node_util.cpp | 241 DescriptorCounts RenderNodeUtil::GetDescriptorCounts(const PipelineLayout& pipelineLayout) const in GetDescriptorCounts() 243 DescriptorCounts dc; in GetDescriptorCounts() 251 …dc.counts.push_back(DescriptorCounts::TypedCount { bindingRef.descriptorType, bindingRef.descripto… in GetDescriptorCounts() 257 DescriptorCounts RenderNodeUtil::GetDescriptorCounts(const array_view<DescriptorSetLayoutBinding> b… in GetDescriptorCounts() 259 DescriptorCounts dc; in GetDescriptorCounts() 261 …dc.counts.push_back(DescriptorCounts::TypedCount { bindingRef.descriptorType, bindingRef.descripto… in GetDescriptorCounts()
|
H A D | pipeline_descriptor_set_binder.cpp | 59 struct DescriptorCounts { struct 92 DescriptorCounts bufferCounts; in Init() 93 DescriptorCounts imageCounts; in Init() 94 DescriptorCounts samplerCounts; in Init() 139 DescriptorCounts bufferIdx { 0, bufferCount }; in InitFillBindings() 140 DescriptorCounts imageIdx { 0, imageCount }; in InitFillBindings() 141 DescriptorCounts samplerIdx { 0, samplerCount }; in InitFillBindings()
|
H A D | node_context_descriptor_set_manager.h | 53 void ResetAndReserve(const DescriptorCounts& descriptorCounts) override; 54 void ResetAndReserve(const BASE_NS::array_view<DescriptorCounts> descriptorCounts) override;
|
H A D | node_context_descriptor_set_manager.cpp | 159 void NodeContextDescriptorSetManager::ResetAndReserve(const DescriptorCounts& descriptorCounts) in ResetAndReserve() 186 void NodeContextDescriptorSetManager::ResetAndReserve(const BASE_NS::array_view<DescriptorCounts> d… in ResetAndReserve() 188 DescriptorCounts dc; in ResetAndReserve()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/ |
H A D | render_copy_helper.cpp | 120 DescriptorCounts RenderCopyHelper::GetDescriptorCounts() const in GetDescriptorCounts() 123 return DescriptorCounts { { in GetDescriptorCounts()
|
H A D | render_copy_helper.h | 40 RENDER_NS::DescriptorCounts GetDescriptorCounts() const; in CORE3D_BEGIN_NAMESPACE()
|
H A D | render_node_camera_cubemap.cpp | 494 DescriptorCounts dc0 = renderNodeUtil.GetDescriptorCounts(pipelineLayout_); in InitCreateBinders() 495 const DescriptorCounts dc1 = in InitCreateBinders()
|
H A D | render_node_default_material_deferred_shading.cpp | 436 DescriptorCounts dc = renderNodeUtil.GetDescriptorCounts(pipelineLayout_); in CreateDescriptorSets() 444 …dc.counts.push_back(DescriptorCounts::TypedCount { bindingRef.descriptorType, bindingRef.descripto… in CreateDescriptorSets()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/node/ |
H A D | render_copy.cpp | 158 DescriptorCounts RenderCopy::GetDescriptorCounts() const in GetDescriptorCounts() 161 return DescriptorCounts { { in GetDescriptorCounts()
|
H A D | render_copy.h | 48 DescriptorCounts GetDescriptorCounts() const;
|
H A D | render_motion_blur.h | 52 DescriptorCounts GetDescriptorCounts() const;
|
H A D | render_blur.h | 51 DescriptorCounts GetDescriptorCounts() const;
|
H A D | render_bloom.h | 50 DescriptorCounts GetDescriptorCounts() const; in RENDER_BEGIN_NAMESPACE()
|
H A D | render_motion_blur.cpp | 383 DescriptorCounts RenderMotionBlur::GetDescriptorCounts() const in GetDescriptorCounts() 386 return DescriptorCounts { { in GetDescriptorCounts()
|
H A D | render_blur.cpp | 159 DescriptorCounts RenderBlur::GetDescriptorCounts() const in GetDescriptorCounts() 162 return DescriptorCounts { { in GetDescriptorCounts()
|
H A D | render_node_back_buffer.cpp | 84 const DescriptorCounts dc = renderNodeUtil.GetDescriptorCounts(pipelineLayout_); in InitNode()
|
H A D | render_node_mip_chain_post_process.cpp | 137 DescriptorCounts dc = renderNodeUtil.GetDescriptorCounts(pipelineData_.pipelineLayoutData); in InitNode() 141 const DescriptorCounts copyDc = renderCopy_.GetDescriptorCounts(); in InitNode()
|
H A D | render_node_compute_generic.cpp | 89 const DescriptorCounts dc = renderNodeUtil.GetDescriptorCounts(pipelineLayout_); in InitNode()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | node_context_descriptor_set_manager_gles.h | 36 void ResetAndReserve(const DescriptorCounts& descriptorCounts) override;
|
H A D | node_context_descriptor_set_manager_gles.cpp | 33 void NodeContextDescriptorSetManagerGLES::ResetAndReserve(const DescriptorCounts& descriptorCounts) in ResetAndReserve()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | node_context_descriptor_set_manager_vk.h | 117 void ResetAndReserve(const DescriptorCounts& descriptorCounts) override;
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/ |
H A D | render_data_structures.h | 90 struct DescriptorCounts { struct
|