| 4084 | } |
| 4085 | |
| 4086 | static inline VkAttachmentStoreOp VulkanStoreOp(AttachmentOp op) |
| 4087 | { |
| 4088 | switch(op) |
| 4089 | { |
| 4090 | case ATTACHMENT_OP_STORE: return VK_ATTACHMENT_STORE_OP_STORE; |
| 4091 | case ATTACHMENT_OP_DONT_CARE: return VK_ATTACHMENT_STORE_OP_DONT_CARE; |
| 4092 | default:break; |
| 4093 | } |
| 4094 | assert(0); |
| 4095 | return (VkAttachmentStoreOp) -1; |
| 4096 | } |
| 4097 | |
| 4098 | static inline VkAttachmentLoadOp VulkanLoadOp(AttachmentOp op) |
| 4099 | { |
no test coverage detected