Searched refs:blendConstants (Results 1 – 4 of 4) sorted by relevance
364 …tual void SetDynamicStateBlendConstants(const BASE_NS::array_view<const float> blendConstants) = 0;
408 float blendConstants[4u] { 0.0f, 0.0f, 0.0f, 0.0f }; // rgba values used in blending575 …void SetDynamicStateBlendConstants(const BASE_NS::array_view<const float> blendConstants) override;
1803 void RenderCommandList::SetDynamicStateBlendConstants(const array_view<const float> blendConstants) in SetDynamicStateBlendConstants() argument1807 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()
2501 renderCmd.blendConstants); // blendConstants[4] in RenderCommand()