Home
last modified time | relevance | path

Searched refs:blendConstants (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/nodecontext/
H A Dintf_render_command_list.h364 …tual void SetDynamicStateBlendConstants(const BASE_NS::array_view<const float> blendConstants) = 0;
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H A Drender_command_list.h408 float blendConstants[4u] { 0.0f, 0.0f, 0.0f, 0.0f }; // rgba values used in blending
575 …void SetDynamicStateBlendConstants(const BASE_NS::array_view<const float> blendConstants) override;
H A Drender_command_list.cpp1803 void RenderCommandList::SetDynamicStateBlendConstants(const array_view<const float> blendConstants) in SetDynamicStateBlendConstants() argument
1807 if (blendConstants.size() > THRESHOLD) { in SetDynamicStateBlendConstants()
1808 …("RenderCommandList: blend constant count (%zu) exceeds supported max (%u)", blendConstants.size(), in SetDynamicStateBlendConstants()
1816 const uint32_t bcCount = Math::min(static_cast<uint32_t>(blendConstants.size()), THRESHOLD); in SetDynamicStateBlendConstants()
1818 data->blendConstants[idx] = blendConstants[idx]; in SetDynamicStateBlendConstants()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Drender_backend_vk.cpp2501 renderCmd.blendConstants); // blendConstants[4] in RenderCommand()