Igalia / vkrunner

A shader script tester for Vulkan. Moved to https://gitlab.freedesktop.org/mesa/vkrunner
Other
43 stars 14 forks source link

Support Vulkan 1.1 #29

Closed jaebaek closed 5 years ago

jaebaek commented 6 years ago

If we provide users with an option to set the version of vulkan e.g., 1.0 or 1.1 in VkRunner script, it would be nice. For example:

[require]
vulkan version 1.1.70

or

[vulkan version]
1.1.70
samuelig commented 6 years ago

shader_runner does the following for GL and GLSL:

[require]
GL >= 4.5 
GLSL >= 4.50

Probably something like this is enough:

[require]
vulkan  1.1.70 
bpeel commented 6 years ago

It might be worth clarifying what this option would do. I guess it would be the following:

hikiko commented 5 years ago

With the latest commits vkrunner allows selecting the version in the [require] section like follows:

[require]
vulkan <major>.<minor>.<patch>

and so I am closing this issue.