Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/swiftshader/src/Device/
DContext.cpp528 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()
DContext.hpp123 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/
DvktPipelineBlendTests.cpp1653 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/
DvktPipelineBlendTests.cpp1653 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/
DVkCommandBuffer.cpp347 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()
DVkCommandBuffer.hpp94 void setBlendConstants(const float blendConstants[4]);
DlibVulkan.cpp2536 …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/
DRenderPipelineVk.cpp480 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()
DCommandBufferVk.cpp1044 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/
DvktDrawCreateInfoUtil.cpp903 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()
DvktDrawCreateInfoUtil.hpp406 std::vector<float> blendConstants = std::vector<float>(4));
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
DvktDrawCreateInfoUtil.cpp903 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()
DvktDrawCreateInfoUtil.hpp406 std::vector<float> blendConstants = std::vector<float>(4));
/third_party/skia/src/gpu/vk/
DGrVkCommandBuffer.cpp385 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()
DGrVkCommandBuffer.h76 void setBlendConstants(const GrVkGpu* gpu, const float blendConstants[4]);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp1666 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/
DvktSynchronizationInternallySynchronizedObjectsTests.cpp1036 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/
DvktSynchronizationInternallySynchronizedObjectsTests.cpp1036 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/
Dradv_meta_blit2d.c731 .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()
Dradv_meta_resolve_fs.c202 .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/
Dpanvk_cmd_buffer.c300 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/
Dvulkan_command_buffer_utils.cpp1623 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/
DvktDynamicStateComputeTests.cpp205 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/
DvktDynamicStateComputeTests.cpp205 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/
Dradv_sqtt_layer.c731 sqtt_CmdSetBlendConstants(VkCommandBuffer commandBuffer, const float blendConstants[4]) in sqtt_CmdSetBlendConstants()
733 API_MARKER(SetBlendConstants, commandBuffer, blendConstants); in sqtt_CmdSetBlendConstants()

123