Zebrafish
Zebrafish

Reputation: 13886

What does the grey check mark mean on GPUOpen's Vulkan database?

At this website it shows the format capabilities of each physical device. There are green crosses, red crosses and grey crosses. I'm guessing green means that format is supported, red means not, what does grey mean? No data?

Upvotes: 0

Views: 44

Answers (1)

Sascha Willems
Sascha Willems

Reputation: 5798

A greyed out format line on my database means that the device does not support any format feature flag for that format and the image tiling or buffer use.

Since there is no way of directly getting a list with supported formats from a device in Vulkan I simply iterate over all formats that are defined in the headers.

P.S. : My databases are in no way affiliated with AMD's GPUOpen.

Upvotes: 2

Related Questions