2019-08-13 17:08:37 +08:00
|
|
|
|
#include<hgl/graph/vulkan/VK.h>
|
|
|
|
|
#include<iostream>
|
|
|
|
|
|
|
|
|
|
VK_NAMESPACE_USING;
|
|
|
|
|
|
2019-08-14 16:36:02 +08:00
|
|
|
|
constexpr char *texture_compress_name[]=
|
|
|
|
|
{
|
|
|
|
|
"NONE",
|
|
|
|
|
"S3TC",
|
|
|
|
|
"PVRTC",
|
|
|
|
|
"ETC1",
|
|
|
|
|
"ETC2",
|
|
|
|
|
"EAC",
|
|
|
|
|
"ATC",
|
|
|
|
|
"ASTC",
|
|
|
|
|
"YUV"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
constexpr char *data_type_name[]
|
|
|
|
|
{
|
|
|
|
|
"NONE",
|
|
|
|
|
"UNORM",
|
|
|
|
|
"SNORM",
|
|
|
|
|
"USCALED",
|
|
|
|
|
"SSCALED",
|
|
|
|
|
"UINT",
|
|
|
|
|
"SINT",
|
|
|
|
|
"UFLOAT",
|
|
|
|
|
"SFLOAT",
|
|
|
|
|
"SRGB"
|
|
|
|
|
};//
|
|
|
|
|
|
2019-08-13 17:08:37 +08:00
|
|
|
|
int main(int,char **)
|
|
|
|
|
{
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
if(!CheckStrideBytesByFormat())
|
|
|
|
|
{
|
|
|
|
|
std::cerr<<"check stride bytes by format failed."<<std::endl;
|
|
|
|
|
return(1);
|
|
|
|
|
}
|
|
|
|
|
#endif//_DEBUG
|
|
|
|
|
|
2019-08-14 16:36:02 +08:00
|
|
|
|
uint32_t count;
|
|
|
|
|
const VulkanFormat *vf=GetVulkanFormatList(count);
|
|
|
|
|
|
|
|
|
|
if(!count)return(255);
|
|
|
|
|
|
|
|
|
|
for(uint32_t i=0;i<count;i++)
|
2019-08-13 17:08:37 +08:00
|
|
|
|
{
|
2019-08-14 16:36:02 +08:00
|
|
|
|
std::cout<<i<<". ";
|
|
|
|
|
|
|
|
|
|
std::cout<<" Format [ID:"<<vf->format<<"]["<<vf->name<<"] ";
|
|
|
|
|
|
|
|
|
|
if(vf->compress_type!=TextureCompressType::NONE)
|
|
|
|
|
std::cout<<"use "<<texture_compress_name[size_t(vf->compress_type)]<<" compress.";
|
|
|
|
|
else
|
|
|
|
|
std::cout<<vf->bytes<<" bytes/pixel.";
|
|
|
|
|
|
|
|
|
|
if(vf->depth!=VulkanDataType::NONE)
|
|
|
|
|
std::cout<<"[Depth:"<<data_type_name[size_t(vf->depth)]<<"]";
|
|
|
|
|
|
|
|
|
|
if(vf->stencil!=VulkanDataType::NONE)
|
|
|
|
|
std::cout<<"[Stencil:"<<data_type_name[size_t(vf->stencil)]<<"]";
|
|
|
|
|
|
|
|
|
|
if((vf->depth==VulkanDataType::NONE)
|
|
|
|
|
&&(vf->stencil==VulkanDataType::NONE))
|
|
|
|
|
std::cout<<"[Color:"<<data_type_name[size_t(vf->color)]<<"]";
|
|
|
|
|
|
|
|
|
|
std::cout<<std::endl;
|
2019-08-13 17:08:37 +08:00
|
|
|
|
|
2019-08-14 16:36:02 +08:00
|
|
|
|
++vf;
|
2019-08-13 17:08:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|