/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | Context.cpp | 528 blendConstants.x = colorBlendState->blendConstants[0]; in GraphicsState() 529 blendConstants.y = colorBlendState->blendConstants[1]; in GraphicsState() 530 blendConstants.z = colorBlendState->blendConstants[2]; in GraphicsState() 531 blendConstants.w = colorBlendState->blendConstants[3]; in GraphicsState() 665 combinedState.blendConstants = dynamicState.blendConstants; in combineStates()
|
D | Context.hpp | 123 sw::float4 blendConstants; member 180 inline const sw::float4 &getBlendConstants() const { return blendConstants; } in getBlendConstants() 254 sw::float4 blendConstants = {}; member
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineBlendTests.cpp | 1653 tcu::Vec4 blendConstants; member 1902 m_params.blendConstants[0], in iterate() 1903 m_params.blendConstants[1], in iterate() 1904 m_params.blendConstants[2], in iterate() 1905 m_params.blendConstants[3], in iterate() 1983 tcu::Vec4 clampedBlendConstants = m_params.blendConstants; in iterate() 2262 testParams.blendConstants[0] = 0.5f; in createBlendTests() 2263 testParams.blendConstants[1] = 2.0f; in createBlendTests() 2264 testParams.blendConstants[2] = -1.0f; in createBlendTests() 2265 testParams.blendConstants[3] = 1.0f; in createBlendTests() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
D | vktPipelineBlendTests.cpp | 1653 tcu::Vec4 blendConstants; member 1902 m_params.blendConstants[0], in iterate() 1903 m_params.blendConstants[1], in iterate() 1904 m_params.blendConstants[2], in iterate() 1905 m_params.blendConstants[3], in iterate() 1983 tcu::Vec4 clampedBlendConstants = m_params.blendConstants; in iterate() 2262 testParams.blendConstants[0] = 0.5f; in createBlendTests() 2263 testParams.blendConstants[1] = 2.0f; in createBlendTests() 2264 testParams.blendConstants[2] = -1.0f; in createBlendTests() 2265 testParams.blendConstants[3] = 1.0f; in createBlendTests() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkCommandBuffer.cpp | 347 CmdSetBlendConstants(const float blendConstants[4]) in CmdSetBlendConstants() 349 memcpy(this->blendConstants, blendConstants, sizeof(this->blendConstants)); in CmdSetBlendConstants() 354 memcpy(&(executionState.dynamicState.blendConstants[0]), blendConstants, sizeof(blendConstants)); in execute() 360 float blendConstants[4]; member in __anon6df712b90111::CmdSetBlendConstants 1458 void CommandBuffer::setBlendConstants(const float blendConstants[4]) in setBlendConstants() 1460 addCommand<::CmdSetBlendConstants>(blendConstants); in setBlendConstants()
|
D | VkCommandBuffer.hpp | 94 void setBlendConstants(const float blendConstants[4]);
|
D | libVulkan.cpp | 2536 …oid VKAPI_CALL vkCmdSetBlendConstants(VkCommandBuffer commandBuffer, const float blendConstants[4]) in vkCmdSetBlendConstants() 2539 commandBuffer, blendConstants[0], blendConstants[1], blendConstants[2], blendConstants[3]); in vkCmdSetBlendConstants() 2541 vk::Cast(commandBuffer)->setBlendConstants(blendConstants); in vkCmdSetBlendConstants()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | RenderPipelineVk.cpp | 480 colorBlend.blendConstants[0] = 0.0f; in Initialize() 481 colorBlend.blendConstants[1] = 0.0f; in Initialize() 482 colorBlend.blendConstants[2] = 0.0f; in Initialize() 483 colorBlend.blendConstants[3] = 0.0f; in Initialize()
|
D | CommandBufferVk.cpp | 1044 float blendConstants[4] = { in RecordRenderPass() local 1050 device->fn.CmdSetBlendConstants(commands, blendConstants); in RecordRenderPass() 1228 const std::array<float, 4> blendConstants = ConvertToFloatColor(cmd->color); in RecordRenderPass() local 1229 device->fn.CmdSetBlendConstants(commands, blendConstants.data()); in RecordRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawCreateInfoUtil.cpp | 903 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 919 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 932 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 945 deMemcpy(blendConstants, &_blendConstants[0], 4 * sizeof(float)); in ColorBlendState()
|
D | vktDrawCreateInfoUtil.hpp | 406 std::vector<float> blendConstants = std::vector<float>(4));
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
D | vktDrawCreateInfoUtil.cpp | 903 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 919 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 932 deMemset(blendConstants, 0, sizeof(blendConstants)); in ColorBlendState() 945 deMemcpy(blendConstants, &_blendConstants[0], 4 * sizeof(float)); in ColorBlendState()
|
D | vktDrawCreateInfoUtil.hpp | 406 std::vector<float> blendConstants = std::vector<float>(4));
|
/third_party/skia/src/gpu/vk/ |
D | GrVkCommandBuffer.cpp | 385 const float blendConstants[4]) { in setBlendConstants() 387 if (0 != memcmp(blendConstants, fCachedBlendConstant, 4 * sizeof(float))) { in setBlendConstants() 388 GR_VK_CALL(gpu->vkInterface(), CmdSetBlendConstants(fCmdBuffer, blendConstants)); in setBlendConstants() 389 memcpy(fCachedBlendConstant, blendConstants, 4 * sizeof(float)); in setBlendConstants()
|
D | GrVkCommandBuffer.h | 76 void setBlendConstants(const GrVkGpu* gpu, const float blendConstants[4]);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 1666 inputAndBlend.blendConstants[0] = 0.0f; in initDefaults() 1667 inputAndBlend.blendConstants[1] = 0.0f; in initDefaults() 1668 inputAndBlend.blendConstants[2] = 0.0f; in initDefaults() 1669 inputAndBlend.blendConstants[3] = 0.0f; in initDefaults() 2046 blendState.blendConstants[i] = inputAndBlend.blendConstants[i]; in initializePipeline() 2279 mInputAssemblyAndColorBlendStateInfo.blendConstants[0] = color.red; in updateBlendColor() 2280 mInputAssemblyAndColorBlendStateInfo.blendConstants[1] = color.green; in updateBlendColor() 2281 mInputAssemblyAndColorBlendStateInfo.blendConstants[2] = color.blue; in updateBlendColor() 2282 mInputAssemblyAndColorBlendStateInfo.blendConstants[3] = color.alpha; in updateBlendColor() 2283 constexpr size_t kSizeBits = sizeof(mInputAssemblyAndColorBlendStateInfo.blendConstants[0]) * 8; in updateBlendColor() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationInternallySynchronizedObjectsTests.cpp | 1036 m_colorBlendStateParams.blendConstants[0] = 0.0f; in addPipelineInfo() 1037 m_colorBlendStateParams.blendConstants[1] = 0.0f; in addPipelineInfo() 1038 m_colorBlendStateParams.blendConstants[2] = 0.0f; in addPipelineInfo() 1039 m_colorBlendStateParams.blendConstants[3] = 0.0f; in addPipelineInfo()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
D | vktSynchronizationInternallySynchronizedObjectsTests.cpp | 1036 m_colorBlendStateParams.blendConstants[0] = 0.0f; in addPipelineInfo() 1037 m_colorBlendStateParams.blendConstants[1] = 0.0f; in addPipelineInfo() 1038 m_colorBlendStateParams.blendConstants[2] = 0.0f; in addPipelineInfo() 1039 m_colorBlendStateParams.blendConstants[3] = 0.0f; in addPipelineInfo()
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_blit2d.c | 731 .blendConstants = { 0.0f, 0.0f, 0.0f, 0.0f }}, in blit2d_init_color_pipeline() 860 .blendConstants = { 0.0f, 0.0f, 0.0f, 0.0f }, in blit2d_init_depth_only_pipeline() 1017 .blendConstants = { 0.0f, 0.0f, 0.0f, 0.0f }, in blit2d_init_stencil_only_pipeline()
|
D | radv_meta_resolve_fs.c | 202 .blendConstants = { 0.0f, 0.0f, 0.0f, 0.0f }}, in create_resolve_pipeline() 491 .blendConstants = { 0.0f, 0.0f, 0.0f, 0.0f }}, in create_depth_stencil_resolve_pipeline()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_cmd_buffer.c | 300 const float blendConstants[4]) in panvk_CmdSetBlendConstants() 305 cmdbuf->state.blend.constants[i] = CLAMP(blendConstants[i], 0.0f, 1.0f); in panvk_CmdSetBlendConstants()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/ |
D | vulkan_command_buffer_utils.cpp | 1623 cb.blendConstants[0] = 1.0f; in init_pipeline() 1624 cb.blendConstants[1] = 1.0f; in init_pipeline() 1625 cb.blendConstants[2] = 1.0f; in init_pipeline() 1626 cb.blendConstants[3] = 1.0f; in init_pipeline()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/ |
D | vktDynamicStateComputeTests.cpp | 205 const float blendConstants[4] = { 0.0f, 0.0f, 0.0f, 0.0f }; in setBlendConstants() local 206 vkd->cmdSetBlendConstants(cmdBuffer, blendConstants); in setBlendConstants()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/ |
D | vktDynamicStateComputeTests.cpp | 205 const float blendConstants[4] = { 0.0f, 0.0f, 0.0f, 0.0f }; in setBlendConstants() local 206 vkd->cmdSetBlendConstants(cmdBuffer, blendConstants); in setBlendConstants()
|
/third_party/mesa3d/src/amd/vulkan/layers/ |
D | radv_sqtt_layer.c | 731 sqtt_CmdSetBlendConstants(VkCommandBuffer commandBuffer, const float blendConstants[4]) in sqtt_CmdSetBlendConstants() 733 API_MARKER(SetBlendConstants, commandBuffer, blendConstants); in sqtt_CmdSetBlendConstants()
|