* @~English * @brief Create a DFD matching a VkFormat. * * @param[in] format VkFormat for which to create a DFD. * * @return pointer to the created DFD or 0 if format not supported or * unrecognized. Caller is responsible for freeing the created * DFD. */
| 24 | * DFD. |
| 25 | */ |
| 26 | uint32_t* |
| 27 | vk2dfd(enum VkFormat format) |
| 28 | { |
| 29 | switch (format) { |
| 30 | #include "vk2dfd.inl" |
| 31 | default: return 0; |
| 32 | } |
| 33 | } |
| 34 |
no outgoing calls