OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:blend_attachment
(Results
1 - 1
of
1
) sorted by null
/external/vulkan-validation-layers/demos/smoke/
Smoke.cpp
323
VkPipelineColorBlendAttachmentState
blend_attachment
= {};
local
324
blend_attachment
.blendEnable = true;
325
blend_attachment
.srcColorBlendFactor = VK_BLEND_FACTOR_SRC_ALPHA;
326
blend_attachment
.dstColorBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA;
327
blend_attachment
.colorBlendOp = VK_BLEND_OP_ADD;
328
blend_attachment
.srcAlphaBlendFactor = VK_BLEND_FACTOR_ONE;
329
blend_attachment
.dstAlphaBlendFactor = VK_BLEND_FACTOR_ZERO;
330
blend_attachment
.alphaBlendOp = VK_BLEND_OP_ADD;
331
blend_attachment
.colorWriteMask = VK_COLOR_COMPONENT_R_BIT |
340
blend_info.pAttachments = &
blend_attachment
;
[
all
...]
Completed in 165 milliseconds