SaschaWillems / vulkan.gpuinfo.org

Front-End and Back-End for the Vulkan Hardware Database
https://vulkan.gpuinfo.org
GNU Affero General Public License v3.0
23 stars 4 forks source link

Tables showing format support incorrectly? #43

Closed Tobski closed 7 months ago

Tobski commented 2 years ago

Looking at the format support for this report on the website shows that R64_UINT has no support - which seemed wrong, as that report also advertises VK_EXT_shader_image_atomic_int64, which requires it. Taking a look at the JSON file, it seems that format 110 (R64_UINT) actually does show the correct required bits here - it's just that the website isn't showing it.

SaschaWillems commented 2 years ago

What type where you looking at? Linear or optimal image tiling? It shows up as supported for the latter, which seems correct.

Tobski commented 2 years ago

Ick, looks like I was looking at linear tiling - didn't even see the tab. Does it default to linear?

SaschaWillems commented 2 years ago

Yeas, linear is the first tab when you navigate to the formats. It may not be the best solution. Do you think it would make more sense to have optimal tiling formats as the first tab?

Tobski commented 2 years ago

Yea, I think most people pay more attention to the optimal formats since these are generally what developers are using. Certainly tripped me up 😅