bug 14844: Query Pool issues (WIP)

We did not and still do not honor the stride nor flags.

https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14844
diff --git a/vulkan.py b/vulkan.py
index 4b19fc6..c0d18c7 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -477,8 +477,9 @@
              Param("VkQueryPool", "queryPool"),
              Param("uint32_t", "startQuery"),
              Param("uint32_t", "queryCount"),
-             Param("size_t*", "pDataSize"),
+             Param("size_t", "dataSize"),
              Param("void*", "pData"),
+             Param("VkDeviceSize", "stride"),
              Param("VkQueryResultFlags", "flags")]),
 
         Proto("VkResult", "CreateBuffer",
@@ -959,7 +960,7 @@
              Param("uint32_t", "queryCount"),
              Param("VkBuffer", "destBuffer"),
              Param("VkDeviceSize", "destOffset"),
-             Param("VkDeviceSize", "destStride"),
+             Param("VkDeviceSize", "stride"),
              Param("VkQueryResultFlags", "flags")]),
 
         Proto("void", "CmdPushConstants",