It seems that many .ktx files in Vulkan-Samples-Assets in scenes/ folder have an incorrect glTypeSize. The textures are compressed (glType = 0) and therefore glTypeSize must be 1 according to the KTX spec, but in the files it is 0.
Modify the assertions to allow 0 | 1 if the texture is compressed.
It seems that many .ktx files in Vulkan-Samples-Assets in scenes/ folder have an incorrect glTypeSize. The textures are compressed (glType = 0) and therefore glTypeSize must be 1 according to the KTX spec, but in the files it is 0.
Modify the assertions to allow 0 | 1 if the texture is compressed.