diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-10-26 17:04:32 +0800 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-11-02 14:12:20 -0700 |
| commit | 72d79dce404606b9416ecf812bb0a02071c1a485 (patch) | |
| tree | 33a826e5fc883b3b79c3c8427682e9f1b1ae7354 | |
| parent | ccf127449c0c10599e46e6017c1fe2fa41e434da (diff) | |
| download | usermoji-72d79dce404606b9416ecf812bb0a02071c1a485.tar.xz | |
v191: bug 14574: Capability bit for stores from non-fragment/compute shaders (WIP)
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14574
| -rw-r--r-- | demos/vulkaninfo.c | 9 | ||||
| -rw-r--r-- | include/vulkan.h | 11 |
2 files changed, 7 insertions, 13 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index f07ebfa5..d7516490 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -767,12 +767,9 @@ static void app_gpu_dump_features(const struct app_gpu *gpu) printf("\ttextureCompressionBC = %u\n", features->textureCompressionBC ); printf("\tocclusionQueryNonConservative = %u\n", features->occlusionQueryNonConservative ); printf("\tpipelineStatisticsQuery = %u\n", features->pipelineStatisticsQuery ); - printf("\tvertexSideEffects = %u\n", features->vertexSideEffects ); - printf("\ttessellationSideEffects = %u\n", features->tessellationSideEffects ); - printf("\tgeometrySideEffects = %u\n", features->geometrySideEffects ); - printf("\tfragmentSideEffects = %u\n", features->fragmentSideEffects ); - printf("\tshaderTessellationPointSize = %u\n", features->shaderTessellationPointSize ); - printf("\tshaderGeometryPointSize = %u\n", features->shaderGeometryPointSize ); + printf("\tvertexSideEffects = %u\n", features->vertexPipelineStoresAndAtomics ); + printf("\ttessellationSideEffects = %u\n", features->fragmentStoresAndAtomics ); + printf("\tgeometrySideEffects = %u\n", features->shaderTessellationAndGeometryPointSize ); printf("\tshaderImageGatherExtended = %u\n", features->shaderImageGatherExtended ); printf("\tshaderStorageImageExtendedFormats = %u\n", features->shaderStorageImageExtendedFormats ); printf("\tshaderStorageImageMultisample = %u\n", features->shaderStorageImageMultisample ); diff --git a/include/vulkan.h b/include/vulkan.h index c2fcfb2f..fa66c8e8 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -41,7 +41,7 @@ extern "C" { ((major << 22) | (minor << 12) | patch) // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 190, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 191, 0) #define VK_NULL_HANDLE 0 @@ -1138,12 +1138,9 @@ typedef struct { VkBool32 textureCompressionBC; VkBool32 occlusionQueryNonConservative; VkBool32 pipelineStatisticsQuery; - VkBool32 vertexSideEffects; - VkBool32 tessellationSideEffects; - VkBool32 geometrySideEffects; - VkBool32 fragmentSideEffects; - VkBool32 shaderTessellationPointSize; - VkBool32 shaderGeometryPointSize; + VkBool32 vertexPipelineStoresAndAtomics; + VkBool32 fragmentStoresAndAtomics; + VkBool32 shaderTessellationAndGeometryPointSize; VkBool32 shaderImageGatherExtended; VkBool32 shaderStorageImageExtendedFormats; VkBool32 shaderStorageImageMultisample; |
