* @private * @~English * @brief Create a DFD for a VkFormat. * * This KTX-specific function adds support for combined depth stencil formats * which are not supported by @e dfdutils' @c vk2dfd function because they * are not seen outside a Vulkan device. KTX has its own definitions for * these that enable uploading, with some effort. * * @param[in] vkFormat the format for which to create
| 368 | * @param[in] vkFormat the format for which to create a DFD. |
| 369 | */ |
| 370 | static uint32_t* |
| 371 | ktxVk2dfd(ktx_uint32_t vkFormat) |
| 372 | { |
| 373 | return vk2dfd(vkFormat); |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * @memberof ktxTexture2 @private |
no test coverage detected