Home
last modified time | relevance | path

Searched refs:VkBlendOp (Results 1 – 13 of 13) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_blend.h18 enum pipe_blend_func vk_blend_op_to_pipe(VkBlendOp in);
Dvk_blend.c52 vk_blend_op_to_pipe(VkBlendOp in) in vk_blend_op_to_pipe()
Dvk_graphics_state.h607 VkBlendOp color_blend_op;
613 VkBlendOp alpha_blend_op;
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_blend_operation_advanced.adoc56 values of color and alpha elink:VkBlendOp).
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
Dframebuffer.adoc660 [open,refpage='VkBlendOp',desc='Framebuffer blending operations',type='enums']
666 Possible values of elink:VkBlendOp, specifying the operations, are:
668 include::{generated}/api/enums/VkBlendOp.adoc[]
678 |elink:VkBlendOp | RGB Components | Alpha Component
/hardware/google/gfxstream/scripts/print_gfx_logs/
Dvulkan_printer.py893 printer.write_enum("colorBlendOp", VkBlendOp, indent)
896 printer.write_enum("alphaBlendOp", VkBlendOp, indent)
1153 VkBlendOp = { variable
/hardware/google/gfxstream/guest/mesa/include/vulkan/
Dvulkan_core.h1834 typedef enum VkBlendOp { enum
1887 } VkBlendOp; typedef
3608 VkBlendOp colorBlendOp;
3611 VkBlendOp alphaBlendOp;
16792 VkBlendOp colorBlendOp;
16795 VkBlendOp alphaBlendOp;
16799 VkBlendOp advancedBlendOp;
/hardware/google/gfxstream/guest/vulkan_enc/
Dgoldfish_vk_reserved_marshaling_guest.cpp2049 memcpy(*ptr, (VkBlendOp*)&forMarshaling->colorBlendOp, sizeof(VkBlendOp)); in reservedmarshal_VkPipelineColorBlendAttachmentState()
2050 *ptr += sizeof(VkBlendOp); in reservedmarshal_VkPipelineColorBlendAttachmentState()
2055 memcpy(*ptr, (VkBlendOp*)&forMarshaling->alphaBlendOp, sizeof(VkBlendOp)); in reservedmarshal_VkPipelineColorBlendAttachmentState()
2056 *ptr += sizeof(VkBlendOp); in reservedmarshal_VkPipelineColorBlendAttachmentState()
Dgoldfish_vk_marshaling_guest.cpp2703 vkStream->write((VkBlendOp*)&forMarshaling->colorBlendOp, sizeof(VkBlendOp)); in marshal_VkPipelineColorBlendAttachmentState()
2706 vkStream->write((VkBlendOp*)&forMarshaling->alphaBlendOp, sizeof(VkBlendOp)); in marshal_VkPipelineColorBlendAttachmentState()
2718 vkStream->read((VkBlendOp*)&forUnmarshaling->colorBlendOp, sizeof(VkBlendOp)); in unmarshal_VkPipelineColorBlendAttachmentState()
2721 vkStream->read((VkBlendOp*)&forUnmarshaling->alphaBlendOp, sizeof(VkBlendOp)); in unmarshal_VkPipelineColorBlendAttachmentState()
Dgoldfish_vk_counting_guest.cpp1501 *count += sizeof(VkBlendOp); in count_VkPipelineColorBlendAttachmentState()
1504 *count += sizeof(VkBlendOp); in count_VkPipelineColorBlendAttachmentState()
/hardware/google/gfxstream/host/vulkan/cereal/common/
Dgoldfish_vk_marshaling.cpp3082 vkStream->write((VkBlendOp*)&forMarshaling->colorBlendOp, sizeof(VkBlendOp)); in marshal_VkPipelineColorBlendAttachmentState()
3085 vkStream->write((VkBlendOp*)&forMarshaling->alphaBlendOp, sizeof(VkBlendOp)); in marshal_VkPipelineColorBlendAttachmentState()
3097 vkStream->read((VkBlendOp*)&forUnmarshaling->colorBlendOp, sizeof(VkBlendOp)); in unmarshal_VkPipelineColorBlendAttachmentState()
3100 vkStream->read((VkBlendOp*)&forUnmarshaling->alphaBlendOp, sizeof(VkBlendOp)); in unmarshal_VkPipelineColorBlendAttachmentState()
Dgoldfish_vk_reserved_marshaling.cpp2355 memcpy((VkBlendOp*)&forUnmarshaling->colorBlendOp, *ptr, sizeof(VkBlendOp)); in reservedunmarshal_VkPipelineColorBlendAttachmentState()
2356 *ptr += sizeof(VkBlendOp); in reservedunmarshal_VkPipelineColorBlendAttachmentState()
2361 memcpy((VkBlendOp*)&forUnmarshaling->alphaBlendOp, *ptr, sizeof(VkBlendOp)); in reservedunmarshal_VkPipelineColorBlendAttachmentState()
2362 *ptr += sizeof(VkBlendOp); in reservedunmarshal_VkPipelineColorBlendAttachmentState()
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvk_enum_string_helper.h3374 static inline const char* string_VkBlendOp(VkBlendOp input_value) in string_VkBlendOp()