1 /*
2  * Copyright 2023 Valve Corporation
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef VK_BLEND_H
7 #define VK_BLEND_H
8 
9 #include <stdbool.h>
10 #include "util/blend.h"
11 #include "vulkan/vulkan_core.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 enum pipe_logicop vk_logic_op_to_pipe(VkLogicOp in);
18 enum pipe_blend_func vk_blend_op_to_pipe(VkBlendOp in);
19 enum pipe_blendfactor vk_blend_factor_to_pipe(VkBlendFactor in);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26