aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-09 08:45:23 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 10:22:55 -0600
commit91023d4c8332bd2c0c85ce416adcfe5541706185 (patch)
tree3f200d6c6caad5195ac6076c4e97558f196129d4
parentbe40a0ff07a09bea4cb67eb503eb9cba9da10524 (diff)
downloadusermoji-91023d4c8332bd2c0c85ce416adcfe5541706185.tar.xz
bug-13466: Implement comment #14
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=13466
-rw-r--r--include/vulkan.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index 5846ceb8..73ca57e4 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1134,10 +1134,8 @@ typedef enum VkQueryControlFlagBits_
typedef VkFlags VkQueryResultFlags;
typedef enum VkQueryResultFlagBits_
{
- VK_QUERY_RESULT_32_BIT = 0, // Results of the queries are written to the destination buffer as 32-bit values
+ VK_QUERY_RESULT_DEFAULT = 0, // Results of the queries are immediately written to the destination buffer as 32-bit values
VK_QUERY_RESULT_64_BIT = VK_BIT(0), // Results of the queries are written to the destination buffer as 64-bit values
- // TODO: need to resolve removal of this enum. see bug 13466 for details
- // VK_QUERY_RESULT_NO_WAIT_BIT = 0, // Results of the queries aren't waited on before proceeding with the result copy
VK_QUERY_RESULT_WAIT_BIT = VK_BIT(1), // Results of the queries are waited on before proceeding with the result copy
VK_QUERY_RESULT_WITH_AVAILABILITY_BIT = VK_BIT(2), // Besides the results of the query, the availability of the results is also written
VK_QUERY_RESULT_PARTIAL_BIT = VK_BIT(3), // Copy the partial results of the query even if the final results aren't available