I'm learning the API for libktx, and according to the usage overview for writing a ktx1 or ktx2 file, I would need to include the following headers:
#include <ktx.h>
#include <vkformat_enum.h>
However, vk_format_enum.h does not appear to be installed by the CMakeLists.txt (I'm using conan to install ktx, but I believe this is also the case if building and installing from source). There are a couple of other headers, like vk_format.h and gl_format.h that may also be useful to have installed.
By the way, while I could of course include the system vulkan and opengl headers, the piece of software I'm writing is intended to not have a dependency on these so it would be nice to have these stub headers provided by the library.
I'm learning the API for
libktx, and according to the usage overview for writing a ktx1 or ktx2 file, I would need to include the following headers:However,
vk_format_enum.hdoes not appear to be installed by the CMakeLists.txt (I'm using conan to install ktx, but I believe this is also the case if building and installing from source). There are a couple of other headers, likevk_format.handgl_format.hthat may also be useful to have installed.By the way, while I could of course include the system vulkan and opengl headers, the piece of software I'm writing is intended to not have a dependency on these so it would be nice to have these stub headers provided by the library.