scripts: Add default return type for VkDeviceSize
authorMike Schuchardt <mikes@lunarg.com>
Mon, 6 Jul 2020 23:05:57 +0000 (16:05 -0700)
committerLenny Komow <lenny@lunarg.com>
Mon, 23 Nov 2020 16:08:28 +0000 (09:08 -0700)
scripts/dispatch_table_helper_generator.py

index 57e4c65..333cdf6 100644 (file)
@@ -28,7 +28,8 @@ from common_codegen import *
 return_type_table = {"VkResult": "VK_SUCCESS",
                      "uint32_t": "0",
                      "uint64_t": "0L",
-                     "VkDeviceAddress": "0L"}
+                     "VkDeviceAddress": "0L",
+                     "VkDeviceSize": "0L"}
 
 #
 # DispatchTableHelperOutputGeneratorOptions - subclass of GeneratorOptions.