[{"data":1,"prerenderedAt":4809},["ShallowReactive",2],{"$fjqMNZ-mMVV6gXJGrYUK9Dae1QRVjJ5A5u2spHERydnw":3},{"title":4,"description":5,"parent":6,"type":7,"xrefs":8,"body":9,"_type":4808,"_id":4},"VkResult","Vulkan command return codes","VK_VERSION_1_0","enums",[],{"type":10,"children":11,"toc":4806},"root",[12,20,35,48,3901,4616,4657,4673,4717,4738,4758,4780,4800],{"type":13,"tag":14,"props":15,"children":16},"element","p",{},[17],{"type":18,"value":19},"text","While the core Vulkan API is not designed to capture incorrect usage, some\ncircumstances still require return codes.\nCommands in Vulkan return their status via return codes that are in one of\ntwo categories:",{"type":13,"tag":21,"props":22,"children":23},"ul",{},[24,30],{"type":13,"tag":25,"props":26,"children":27},"li",{},[28],{"type":18,"value":29},"Successful completion codes are returned when a command needs to\ncommunicate success or status information.\nAll successful completion codes are non-negative values.",{"type":13,"tag":25,"props":31,"children":32},{},[33],{"type":18,"value":34},"Runtime error codes are returned when a command needs to communicate a\nfailure that could only be detected at runtime.\nAll runtime error codes are negative values.",{"type":13,"tag":14,"props":36,"children":37},{},[38,40,46],{"type":18,"value":39},"All return codes in Vulkan are reported via ",{"type":13,"tag":41,"props":42,"children":44},"a",{"href":43},"/man/VkResult",[45],{"type":18,"value":4},{"type":18,"value":47}," return values.\nThe possible codes are:",{"type":13,"tag":49,"props":50,"children":51},"code-group",{},[52,1494],{"type":13,"tag":53,"props":54,"children":60},"pre",{"className":55,"code":56,"filename":57,"language":58,"meta":59,"style":59},"language-c shiki shiki-themes github-light-default github-dark-default","typedef enum VkResult {\n // Return codes (positive values)\n VK_SUCCESS = 0,\n VK_NOT_READY = 1,\n VK_TIMEOUT = 2,\n VK_EVENT_SET = 3,\n VK_EVENT_RESET = 4,\n VK_INCOMPLETE = 5,\n // Error codes (negative values)\n VK_ERROR_OUT_OF_HOST_MEMORY = -1,\n VK_ERROR_OUT_OF_DEVICE_MEMORY = -2,\n VK_ERROR_INITIALIZATION_FAILED = -3,\n VK_ERROR_DEVICE_LOST = -4,\n VK_ERROR_MEMORY_MAP_FAILED = -5,\n VK_ERROR_LAYER_NOT_PRESENT = -6,\n VK_ERROR_EXTENSION_NOT_PRESENT = -7,\n VK_ERROR_FEATURE_NOT_PRESENT = -8,\n VK_ERROR_INCOMPATIBLE_DRIVER = -9,\n VK_ERROR_TOO_MANY_OBJECTS = -10,\n VK_ERROR_FORMAT_NOT_SUPPORTED = -11,\n VK_ERROR_FRAGMENTED_POOL = -12,\n VK_ERROR_UNKNOWN = -13,\n // Provided by extensions\n VK_ERROR_VALIDATION_FAILED = 1000011001,\n VK_ERROR_OUT_OF_POOL_MEMORY = 1000069000,\n VK_ERROR_INVALID_EXTERNAL_HANDLE = 1000072003,\n VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS = 1000257000,\n VK_ERROR_FRAGMENTATION = 1000161000,\n VK_PIPELINE_COMPILE_REQUIRED = -1000297000,\n VK_ERROR_NOT_PERMITTED = 1000174001,\n VK_ERROR_SURFACE_LOST_KHR = 999999000,\n VK_ERROR_NATIVE_WINDOW_IN_USE_KHR = 999999001,\n VK_SUBOPTIMAL_KHR = -999999003,\n VK_ERROR_OUT_OF_DATE_KHR = 999999004,\n VK_ERROR_INCOMPATIBLE_DISPLAY_KHR = 999999001,\n VK_ERROR_VALIDATION_FAILED_EXT = VK_ERROR_VALIDATION_FAILED,\n VK_ERROR_INVALID_SHADER_NV = 999999000,\n VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR = 999999000,\n VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR = 999999001,\n VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR = 999999002,\n VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR = 999999003,\n VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR = 999999004,\n VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR = 999999005,\n VK_ERROR_OUT_OF_POOL_MEMORY_KHR = VK_ERROR_OUT_OF_POOL_MEMORY,\n VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR = VK_ERROR_INVALID_EXTERNAL_HANDLE,\n VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT = 999999000,\n VK_ERROR_FRAGMENTATION_EXT = VK_ERROR_FRAGMENTATION,\n VK_ERROR_NOT_PERMITTED_EXT = VK_ERROR_NOT_PERMITTED,\n VK_ERROR_NOT_PERMITTED_KHR = VK_ERROR_NOT_PERMITTED,\n VK_ERROR_PRESENT_TIMING_QUEUE_FULL_EXT = 999999000,\n VK_ERROR_INVALID_DEVICE_ADDRESS_EXT = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS,\n VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT = 999999000,\n VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR = VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS,\n VK_THREAD_IDLE_KHR = -999999000,\n VK_THREAD_DONE_KHR = -999999001,\n VK_OPERATION_DEFERRED_KHR = -999999002,\n VK_OPERATION_NOT_DEFERRED_KHR = -999999003,\n VK_PIPELINE_COMPILE_REQUIRED_EXT = VK_PIPELINE_COMPILE_REQUIRED,\n VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT = VK_PIPELINE_COMPILE_REQUIRED,\n VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR = 999999000,\n VK_ERROR_COMPRESSION_EXHAUSTED_EXT = 999999000,\n VK_INCOMPATIBLE_SHADER_BINARY_EXT = -999999000,\n VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT = VK_INCOMPATIBLE_SHADER_BINARY_EXT,\n VK_PIPELINE_BINARY_MISSING_KHR = -999999000,\n VK_ERROR_NOT_ENOUGH_SPACE_KHR = 999999000,\n} VkResult;\n","C","c","",[61],{"type":13,"tag":62,"props":63,"children":64},"code",{"__ignoreMap":59},[65,88,98,123,145,167,189,211,233,242,269,295,321,347,373,399,425,451,477,503,529,555,581,590,612,634,656,678,700,726,748,770,792,818,840,861,879,900,921,942,964,986,1007,1029,1047,1065,1086,1104,1122,1139,1160,1178,1199,1216,1242,1268,1294,1319,1337,1354,1375,1396,1421,1439,1464,1485],{"type":13,"tag":66,"props":67,"children":70},"span",{"class":68,"line":69},"line",1,[71,77,82],{"type":13,"tag":66,"props":72,"children":74},{"style":73},"--shiki-default:#CF222E;--shiki-dark:#FF7B72",[75],{"type":18,"value":76},"typedef",{"type":13,"tag":66,"props":78,"children":79},{"style":73},[80],{"type":18,"value":81}," enum",{"type":13,"tag":66,"props":83,"children":85},{"style":84},"--shiki-default:#1F2328;--shiki-dark:#E6EDF3",[86],{"type":18,"value":87}," VkResult {\n",{"type":13,"tag":66,"props":89,"children":91},{"class":68,"line":90},2,[92],{"type":13,"tag":66,"props":93,"children":95},{"style":94},"--shiki-default:#6E7781;--shiki-dark:#8B949E",[96],{"type":18,"value":97}," // Return codes (positive values)\n",{"type":13,"tag":66,"props":99,"children":101},{"class":68,"line":100},3,[102,107,112,118],{"type":13,"tag":66,"props":103,"children":104},{"style":84},[105],{"type":18,"value":106}," VK_SUCCESS ",{"type":13,"tag":66,"props":108,"children":109},{"style":73},[110],{"type":18,"value":111},"=",{"type":13,"tag":66,"props":113,"children":115},{"style":114},"--shiki-default:#0550AE;--shiki-dark:#79C0FF",[116],{"type":18,"value":117}," 0",{"type":13,"tag":66,"props":119,"children":120},{"style":84},[121],{"type":18,"value":122},",\n",{"type":13,"tag":66,"props":124,"children":126},{"class":68,"line":125},4,[127,132,136,141],{"type":13,"tag":66,"props":128,"children":129},{"style":84},[130],{"type":18,"value":131}," VK_NOT_READY ",{"type":13,"tag":66,"props":133,"children":134},{"style":73},[135],{"type":18,"value":111},{"type":13,"tag":66,"props":137,"children":138},{"style":114},[139],{"type":18,"value":140}," 1",{"type":13,"tag":66,"props":142,"children":143},{"style":84},[144],{"type":18,"value":122},{"type":13,"tag":66,"props":146,"children":148},{"class":68,"line":147},5,[149,154,158,163],{"type":13,"tag":66,"props":150,"children":151},{"style":84},[152],{"type":18,"value":153}," VK_TIMEOUT ",{"type":13,"tag":66,"props":155,"children":156},{"style":73},[157],{"type":18,"value":111},{"type":13,"tag":66,"props":159,"children":160},{"style":114},[161],{"type":18,"value":162}," 2",{"type":13,"tag":66,"props":164,"children":165},{"style":84},[166],{"type":18,"value":122},{"type":13,"tag":66,"props":168,"children":170},{"class":68,"line":169},6,[171,176,180,185],{"type":13,"tag":66,"props":172,"children":173},{"style":84},[174],{"type":18,"value":175}," VK_EVENT_SET ",{"type":13,"tag":66,"props":177,"children":178},{"style":73},[179],{"type":18,"value":111},{"type":13,"tag":66,"props":181,"children":182},{"style":114},[183],{"type":18,"value":184}," 3",{"type":13,"tag":66,"props":186,"children":187},{"style":84},[188],{"type":18,"value":122},{"type":13,"tag":66,"props":190,"children":192},{"class":68,"line":191},7,[193,198,202,207],{"type":13,"tag":66,"props":194,"children":195},{"style":84},[196],{"type":18,"value":197}," VK_EVENT_RESET ",{"type":13,"tag":66,"props":199,"children":200},{"style":73},[201],{"type":18,"value":111},{"type":13,"tag":66,"props":203,"children":204},{"style":114},[205],{"type":18,"value":206}," 4",{"type":13,"tag":66,"props":208,"children":209},{"style":84},[210],{"type":18,"value":122},{"type":13,"tag":66,"props":212,"children":214},{"class":68,"line":213},8,[215,220,224,229],{"type":13,"tag":66,"props":216,"children":217},{"style":84},[218],{"type":18,"value":219}," VK_INCOMPLETE ",{"type":13,"tag":66,"props":221,"children":222},{"style":73},[223],{"type":18,"value":111},{"type":13,"tag":66,"props":225,"children":226},{"style":114},[227],{"type":18,"value":228}," 5",{"type":13,"tag":66,"props":230,"children":231},{"style":84},[232],{"type":18,"value":122},{"type":13,"tag":66,"props":234,"children":236},{"class":68,"line":235},9,[237],{"type":13,"tag":66,"props":238,"children":239},{"style":94},[240],{"type":18,"value":241}," // Error codes (negative values)\n",{"type":13,"tag":66,"props":243,"children":245},{"class":68,"line":244},10,[246,251,255,260,265],{"type":13,"tag":66,"props":247,"children":248},{"style":84},[249],{"type":18,"value":250}," VK_ERROR_OUT_OF_HOST_MEMORY ",{"type":13,"tag":66,"props":252,"children":253},{"style":73},[254],{"type":18,"value":111},{"type":13,"tag":66,"props":256,"children":257},{"style":73},[258],{"type":18,"value":259}," -",{"type":13,"tag":66,"props":261,"children":262},{"style":114},[263],{"type":18,"value":264},"1",{"type":13,"tag":66,"props":266,"children":267},{"style":84},[268],{"type":18,"value":122},{"type":13,"tag":66,"props":270,"children":272},{"class":68,"line":271},11,[273,278,282,286,291],{"type":13,"tag":66,"props":274,"children":275},{"style":84},[276],{"type":18,"value":277}," VK_ERROR_OUT_OF_DEVICE_MEMORY ",{"type":13,"tag":66,"props":279,"children":280},{"style":73},[281],{"type":18,"value":111},{"type":13,"tag":66,"props":283,"children":284},{"style":73},[285],{"type":18,"value":259},{"type":13,"tag":66,"props":287,"children":288},{"style":114},[289],{"type":18,"value":290},"2",{"type":13,"tag":66,"props":292,"children":293},{"style":84},[294],{"type":18,"value":122},{"type":13,"tag":66,"props":296,"children":298},{"class":68,"line":297},12,[299,304,308,312,317],{"type":13,"tag":66,"props":300,"children":301},{"style":84},[302],{"type":18,"value":303}," VK_ERROR_INITIALIZATION_FAILED ",{"type":13,"tag":66,"props":305,"children":306},{"style":73},[307],{"type":18,"value":111},{"type":13,"tag":66,"props":309,"children":310},{"style":73},[311],{"type":18,"value":259},{"type":13,"tag":66,"props":313,"children":314},{"style":114},[315],{"type":18,"value":316},"3",{"type":13,"tag":66,"props":318,"children":319},{"style":84},[320],{"type":18,"value":122},{"type":13,"tag":66,"props":322,"children":324},{"class":68,"line":323},13,[325,330,334,338,343],{"type":13,"tag":66,"props":326,"children":327},{"style":84},[328],{"type":18,"value":329}," VK_ERROR_DEVICE_LOST ",{"type":13,"tag":66,"props":331,"children":332},{"style":73},[333],{"type":18,"value":111},{"type":13,"tag":66,"props":335,"children":336},{"style":73},[337],{"type":18,"value":259},{"type":13,"tag":66,"props":339,"children":340},{"style":114},[341],{"type":18,"value":342},"4",{"type":13,"tag":66,"props":344,"children":345},{"style":84},[346],{"type":18,"value":122},{"type":13,"tag":66,"props":348,"children":350},{"class":68,"line":349},14,[351,356,360,364,369],{"type":13,"tag":66,"props":352,"children":353},{"style":84},[354],{"type":18,"value":355}," VK_ERROR_MEMORY_MAP_FAILED ",{"type":13,"tag":66,"props":357,"children":358},{"style":73},[359],{"type":18,"value":111},{"type":13,"tag":66,"props":361,"children":362},{"style":73},[363],{"type":18,"value":259},{"type":13,"tag":66,"props":365,"children":366},{"style":114},[367],{"type":18,"value":368},"5",{"type":13,"tag":66,"props":370,"children":371},{"style":84},[372],{"type":18,"value":122},{"type":13,"tag":66,"props":374,"children":376},{"class":68,"line":375},15,[377,382,386,390,395],{"type":13,"tag":66,"props":378,"children":379},{"style":84},[380],{"type":18,"value":381}," VK_ERROR_LAYER_NOT_PRESENT ",{"type":13,"tag":66,"props":383,"children":384},{"style":73},[385],{"type":18,"value":111},{"type":13,"tag":66,"props":387,"children":388},{"style":73},[389],{"type":18,"value":259},{"type":13,"tag":66,"props":391,"children":392},{"style":114},[393],{"type":18,"value":394},"6",{"type":13,"tag":66,"props":396,"children":397},{"style":84},[398],{"type":18,"value":122},{"type":13,"tag":66,"props":400,"children":402},{"class":68,"line":401},16,[403,408,412,416,421],{"type":13,"tag":66,"props":404,"children":405},{"style":84},[406],{"type":18,"value":407}," VK_ERROR_EXTENSION_NOT_PRESENT ",{"type":13,"tag":66,"props":409,"children":410},{"style":73},[411],{"type":18,"value":111},{"type":13,"tag":66,"props":413,"children":414},{"style":73},[415],{"type":18,"value":259},{"type":13,"tag":66,"props":417,"children":418},{"style":114},[419],{"type":18,"value":420},"7",{"type":13,"tag":66,"props":422,"children":423},{"style":84},[424],{"type":18,"value":122},{"type":13,"tag":66,"props":426,"children":428},{"class":68,"line":427},17,[429,434,438,442,447],{"type":13,"tag":66,"props":430,"children":431},{"style":84},[432],{"type":18,"value":433}," VK_ERROR_FEATURE_NOT_PRESENT ",{"type":13,"tag":66,"props":435,"children":436},{"style":73},[437],{"type":18,"value":111},{"type":13,"tag":66,"props":439,"children":440},{"style":73},[441],{"type":18,"value":259},{"type":13,"tag":66,"props":443,"children":444},{"style":114},[445],{"type":18,"value":446},"8",{"type":13,"tag":66,"props":448,"children":449},{"style":84},[450],{"type":18,"value":122},{"type":13,"tag":66,"props":452,"children":454},{"class":68,"line":453},18,[455,460,464,468,473],{"type":13,"tag":66,"props":456,"children":457},{"style":84},[458],{"type":18,"value":459}," VK_ERROR_INCOMPATIBLE_DRIVER ",{"type":13,"tag":66,"props":461,"children":462},{"style":73},[463],{"type":18,"value":111},{"type":13,"tag":66,"props":465,"children":466},{"style":73},[467],{"type":18,"value":259},{"type":13,"tag":66,"props":469,"children":470},{"style":114},[471],{"type":18,"value":472},"9",{"type":13,"tag":66,"props":474,"children":475},{"style":84},[476],{"type":18,"value":122},{"type":13,"tag":66,"props":478,"children":480},{"class":68,"line":479},19,[481,486,490,494,499],{"type":13,"tag":66,"props":482,"children":483},{"style":84},[484],{"type":18,"value":485}," VK_ERROR_TOO_MANY_OBJECTS ",{"type":13,"tag":66,"props":487,"children":488},{"style":73},[489],{"type":18,"value":111},{"type":13,"tag":66,"props":491,"children":492},{"style":73},[493],{"type":18,"value":259},{"type":13,"tag":66,"props":495,"children":496},{"style":114},[497],{"type":18,"value":498},"10",{"type":13,"tag":66,"props":500,"children":501},{"style":84},[502],{"type":18,"value":122},{"type":13,"tag":66,"props":504,"children":506},{"class":68,"line":505},20,[507,512,516,520,525],{"type":13,"tag":66,"props":508,"children":509},{"style":84},[510],{"type":18,"value":511}," VK_ERROR_FORMAT_NOT_SUPPORTED ",{"type":13,"tag":66,"props":513,"children":514},{"style":73},[515],{"type":18,"value":111},{"type":13,"tag":66,"props":517,"children":518},{"style":73},[519],{"type":18,"value":259},{"type":13,"tag":66,"props":521,"children":522},{"style":114},[523],{"type":18,"value":524},"11",{"type":13,"tag":66,"props":526,"children":527},{"style":84},[528],{"type":18,"value":122},{"type":13,"tag":66,"props":530,"children":532},{"class":68,"line":531},21,[533,538,542,546,551],{"type":13,"tag":66,"props":534,"children":535},{"style":84},[536],{"type":18,"value":537}," VK_ERROR_FRAGMENTED_POOL ",{"type":13,"tag":66,"props":539,"children":540},{"style":73},[541],{"type":18,"value":111},{"type":13,"tag":66,"props":543,"children":544},{"style":73},[545],{"type":18,"value":259},{"type":13,"tag":66,"props":547,"children":548},{"style":114},[549],{"type":18,"value":550},"12",{"type":13,"tag":66,"props":552,"children":553},{"style":84},[554],{"type":18,"value":122},{"type":13,"tag":66,"props":556,"children":558},{"class":68,"line":557},22,[559,564,568,572,577],{"type":13,"tag":66,"props":560,"children":561},{"style":84},[562],{"type":18,"value":563}," VK_ERROR_UNKNOWN ",{"type":13,"tag":66,"props":565,"children":566},{"style":73},[567],{"type":18,"value":111},{"type":13,"tag":66,"props":569,"children":570},{"style":73},[571],{"type":18,"value":259},{"type":13,"tag":66,"props":573,"children":574},{"style":114},[575],{"type":18,"value":576},"13",{"type":13,"tag":66,"props":578,"children":579},{"style":84},[580],{"type":18,"value":122},{"type":13,"tag":66,"props":582,"children":584},{"class":68,"line":583},23,[585],{"type":13,"tag":66,"props":586,"children":587},{"style":94},[588],{"type":18,"value":589}," // Provided by extensions\n",{"type":13,"tag":66,"props":591,"children":593},{"class":68,"line":592},24,[594,599,603,608],{"type":13,"tag":66,"props":595,"children":596},{"style":84},[597],{"type":18,"value":598}," VK_ERROR_VALIDATION_FAILED ",{"type":13,"tag":66,"props":600,"children":601},{"style":73},[602],{"type":18,"value":111},{"type":13,"tag":66,"props":604,"children":605},{"style":114},[606],{"type":18,"value":607}," 1000011001",{"type":13,"tag":66,"props":609,"children":610},{"style":84},[611],{"type":18,"value":122},{"type":13,"tag":66,"props":613,"children":615},{"class":68,"line":614},25,[616,621,625,630],{"type":13,"tag":66,"props":617,"children":618},{"style":84},[619],{"type":18,"value":620}," VK_ERROR_OUT_OF_POOL_MEMORY ",{"type":13,"tag":66,"props":622,"children":623},{"style":73},[624],{"type":18,"value":111},{"type":13,"tag":66,"props":626,"children":627},{"style":114},[628],{"type":18,"value":629}," 1000069000",{"type":13,"tag":66,"props":631,"children":632},{"style":84},[633],{"type":18,"value":122},{"type":13,"tag":66,"props":635,"children":637},{"class":68,"line":636},26,[638,643,647,652],{"type":13,"tag":66,"props":639,"children":640},{"style":84},[641],{"type":18,"value":642}," VK_ERROR_INVALID_EXTERNAL_HANDLE ",{"type":13,"tag":66,"props":644,"children":645},{"style":73},[646],{"type":18,"value":111},{"type":13,"tag":66,"props":648,"children":649},{"style":114},[650],{"type":18,"value":651}," 1000072003",{"type":13,"tag":66,"props":653,"children":654},{"style":84},[655],{"type":18,"value":122},{"type":13,"tag":66,"props":657,"children":659},{"class":68,"line":658},27,[660,665,669,674],{"type":13,"tag":66,"props":661,"children":662},{"style":84},[663],{"type":18,"value":664}," VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS ",{"type":13,"tag":66,"props":666,"children":667},{"style":73},[668],{"type":18,"value":111},{"type":13,"tag":66,"props":670,"children":671},{"style":114},[672],{"type":18,"value":673}," 1000257000",{"type":13,"tag":66,"props":675,"children":676},{"style":84},[677],{"type":18,"value":122},{"type":13,"tag":66,"props":679,"children":681},{"class":68,"line":680},28,[682,687,691,696],{"type":13,"tag":66,"props":683,"children":684},{"style":84},[685],{"type":18,"value":686}," VK_ERROR_FRAGMENTATION ",{"type":13,"tag":66,"props":688,"children":689},{"style":73},[690],{"type":18,"value":111},{"type":13,"tag":66,"props":692,"children":693},{"style":114},[694],{"type":18,"value":695}," 1000161000",{"type":13,"tag":66,"props":697,"children":698},{"style":84},[699],{"type":18,"value":122},{"type":13,"tag":66,"props":701,"children":703},{"class":68,"line":702},29,[704,709,713,717,722],{"type":13,"tag":66,"props":705,"children":706},{"style":84},[707],{"type":18,"value":708}," VK_PIPELINE_COMPILE_REQUIRED ",{"type":13,"tag":66,"props":710,"children":711},{"style":73},[712],{"type":18,"value":111},{"type":13,"tag":66,"props":714,"children":715},{"style":73},[716],{"type":18,"value":259},{"type":13,"tag":66,"props":718,"children":719},{"style":114},[720],{"type":18,"value":721},"1000297000",{"type":13,"tag":66,"props":723,"children":724},{"style":84},[725],{"type":18,"value":122},{"type":13,"tag":66,"props":727,"children":729},{"class":68,"line":728},30,[730,735,739,744],{"type":13,"tag":66,"props":731,"children":732},{"style":84},[733],{"type":18,"value":734}," VK_ERROR_NOT_PERMITTED ",{"type":13,"tag":66,"props":736,"children":737},{"style":73},[738],{"type":18,"value":111},{"type":13,"tag":66,"props":740,"children":741},{"style":114},[742],{"type":18,"value":743}," 1000174001",{"type":13,"tag":66,"props":745,"children":746},{"style":84},[747],{"type":18,"value":122},{"type":13,"tag":66,"props":749,"children":751},{"class":68,"line":750},31,[752,757,761,766],{"type":13,"tag":66,"props":753,"children":754},{"style":84},[755],{"type":18,"value":756}," VK_ERROR_SURFACE_LOST_KHR ",{"type":13,"tag":66,"props":758,"children":759},{"style":73},[760],{"type":18,"value":111},{"type":13,"tag":66,"props":762,"children":763},{"style":114},[764],{"type":18,"value":765}," 999999000",{"type":13,"tag":66,"props":767,"children":768},{"style":84},[769],{"type":18,"value":122},{"type":13,"tag":66,"props":771,"children":773},{"class":68,"line":772},32,[774,779,783,788],{"type":13,"tag":66,"props":775,"children":776},{"style":84},[777],{"type":18,"value":778}," VK_ERROR_NATIVE_WINDOW_IN_USE_KHR ",{"type":13,"tag":66,"props":780,"children":781},{"style":73},[782],{"type":18,"value":111},{"type":13,"tag":66,"props":784,"children":785},{"style":114},[786],{"type":18,"value":787}," 999999001",{"type":13,"tag":66,"props":789,"children":790},{"style":84},[791],{"type":18,"value":122},{"type":13,"tag":66,"props":793,"children":795},{"class":68,"line":794},33,[796,801,805,809,814],{"type":13,"tag":66,"props":797,"children":798},{"style":84},[799],{"type":18,"value":800}," VK_SUBOPTIMAL_KHR ",{"type":13,"tag":66,"props":802,"children":803},{"style":73},[804],{"type":18,"value":111},{"type":13,"tag":66,"props":806,"children":807},{"style":73},[808],{"type":18,"value":259},{"type":13,"tag":66,"props":810,"children":811},{"style":114},[812],{"type":18,"value":813},"999999003",{"type":13,"tag":66,"props":815,"children":816},{"style":84},[817],{"type":18,"value":122},{"type":13,"tag":66,"props":819,"children":821},{"class":68,"line":820},34,[822,827,831,836],{"type":13,"tag":66,"props":823,"children":824},{"style":84},[825],{"type":18,"value":826}," VK_ERROR_OUT_OF_DATE_KHR ",{"type":13,"tag":66,"props":828,"children":829},{"style":73},[830],{"type":18,"value":111},{"type":13,"tag":66,"props":832,"children":833},{"style":114},[834],{"type":18,"value":835}," 999999004",{"type":13,"tag":66,"props":837,"children":838},{"style":84},[839],{"type":18,"value":122},{"type":13,"tag":66,"props":841,"children":843},{"class":68,"line":842},35,[844,849,853,857],{"type":13,"tag":66,"props":845,"children":846},{"style":84},[847],{"type":18,"value":848}," VK_ERROR_INCOMPATIBLE_DISPLAY_KHR ",{"type":13,"tag":66,"props":850,"children":851},{"style":73},[852],{"type":18,"value":111},{"type":13,"tag":66,"props":854,"children":855},{"style":114},[856],{"type":18,"value":787},{"type":13,"tag":66,"props":858,"children":859},{"style":84},[860],{"type":18,"value":122},{"type":13,"tag":66,"props":862,"children":864},{"class":68,"line":863},36,[865,870,874],{"type":13,"tag":66,"props":866,"children":867},{"style":84},[868],{"type":18,"value":869}," VK_ERROR_VALIDATION_FAILED_EXT ",{"type":13,"tag":66,"props":871,"children":872},{"style":73},[873],{"type":18,"value":111},{"type":13,"tag":66,"props":875,"children":876},{"style":84},[877],{"type":18,"value":878}," VK_ERROR_VALIDATION_FAILED,\n",{"type":13,"tag":66,"props":880,"children":882},{"class":68,"line":881},37,[883,888,892,896],{"type":13,"tag":66,"props":884,"children":885},{"style":84},[886],{"type":18,"value":887}," VK_ERROR_INVALID_SHADER_NV ",{"type":13,"tag":66,"props":889,"children":890},{"style":73},[891],{"type":18,"value":111},{"type":13,"tag":66,"props":893,"children":894},{"style":114},[895],{"type":18,"value":765},{"type":13,"tag":66,"props":897,"children":898},{"style":84},[899],{"type":18,"value":122},{"type":13,"tag":66,"props":901,"children":903},{"class":68,"line":902},38,[904,909,913,917],{"type":13,"tag":66,"props":905,"children":906},{"style":84},[907],{"type":18,"value":908}," VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":910,"children":911},{"style":73},[912],{"type":18,"value":111},{"type":13,"tag":66,"props":914,"children":915},{"style":114},[916],{"type":18,"value":765},{"type":13,"tag":66,"props":918,"children":919},{"style":84},[920],{"type":18,"value":122},{"type":13,"tag":66,"props":922,"children":924},{"class":68,"line":923},39,[925,930,934,938],{"type":13,"tag":66,"props":926,"children":927},{"style":84},[928],{"type":18,"value":929}," VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":931,"children":932},{"style":73},[933],{"type":18,"value":111},{"type":13,"tag":66,"props":935,"children":936},{"style":114},[937],{"type":18,"value":787},{"type":13,"tag":66,"props":939,"children":940},{"style":84},[941],{"type":18,"value":122},{"type":13,"tag":66,"props":943,"children":945},{"class":68,"line":944},40,[946,951,955,960],{"type":13,"tag":66,"props":947,"children":948},{"style":84},[949],{"type":18,"value":950}," VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":952,"children":953},{"style":73},[954],{"type":18,"value":111},{"type":13,"tag":66,"props":956,"children":957},{"style":114},[958],{"type":18,"value":959}," 999999002",{"type":13,"tag":66,"props":961,"children":962},{"style":84},[963],{"type":18,"value":122},{"type":13,"tag":66,"props":965,"children":967},{"class":68,"line":966},41,[968,973,977,982],{"type":13,"tag":66,"props":969,"children":970},{"style":84},[971],{"type":18,"value":972}," VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":974,"children":975},{"style":73},[976],{"type":18,"value":111},{"type":13,"tag":66,"props":978,"children":979},{"style":114},[980],{"type":18,"value":981}," 999999003",{"type":13,"tag":66,"props":983,"children":984},{"style":84},[985],{"type":18,"value":122},{"type":13,"tag":66,"props":987,"children":989},{"class":68,"line":988},42,[990,995,999,1003],{"type":13,"tag":66,"props":991,"children":992},{"style":84},[993],{"type":18,"value":994}," VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":996,"children":997},{"style":73},[998],{"type":18,"value":111},{"type":13,"tag":66,"props":1000,"children":1001},{"style":114},[1002],{"type":18,"value":835},{"type":13,"tag":66,"props":1004,"children":1005},{"style":84},[1006],{"type":18,"value":122},{"type":13,"tag":66,"props":1008,"children":1010},{"class":68,"line":1009},43,[1011,1016,1020,1025],{"type":13,"tag":66,"props":1012,"children":1013},{"style":84},[1014],{"type":18,"value":1015}," VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR ",{"type":13,"tag":66,"props":1017,"children":1018},{"style":73},[1019],{"type":18,"value":111},{"type":13,"tag":66,"props":1021,"children":1022},{"style":114},[1023],{"type":18,"value":1024}," 999999005",{"type":13,"tag":66,"props":1026,"children":1027},{"style":84},[1028],{"type":18,"value":122},{"type":13,"tag":66,"props":1030,"children":1032},{"class":68,"line":1031},44,[1033,1038,1042],{"type":13,"tag":66,"props":1034,"children":1035},{"style":84},[1036],{"type":18,"value":1037}," VK_ERROR_OUT_OF_POOL_MEMORY_KHR ",{"type":13,"tag":66,"props":1039,"children":1040},{"style":73},[1041],{"type":18,"value":111},{"type":13,"tag":66,"props":1043,"children":1044},{"style":84},[1045],{"type":18,"value":1046}," VK_ERROR_OUT_OF_POOL_MEMORY,\n",{"type":13,"tag":66,"props":1048,"children":1050},{"class":68,"line":1049},45,[1051,1056,1060],{"type":13,"tag":66,"props":1052,"children":1053},{"style":84},[1054],{"type":18,"value":1055}," VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR ",{"type":13,"tag":66,"props":1057,"children":1058},{"style":73},[1059],{"type":18,"value":111},{"type":13,"tag":66,"props":1061,"children":1062},{"style":84},[1063],{"type":18,"value":1064}," VK_ERROR_INVALID_EXTERNAL_HANDLE,\n",{"type":13,"tag":66,"props":1066,"children":1068},{"class":68,"line":1067},46,[1069,1074,1078,1082],{"type":13,"tag":66,"props":1070,"children":1071},{"style":84},[1072],{"type":18,"value":1073}," VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT ",{"type":13,"tag":66,"props":1075,"children":1076},{"style":73},[1077],{"type":18,"value":111},{"type":13,"tag":66,"props":1079,"children":1080},{"style":114},[1081],{"type":18,"value":765},{"type":13,"tag":66,"props":1083,"children":1084},{"style":84},[1085],{"type":18,"value":122},{"type":13,"tag":66,"props":1087,"children":1089},{"class":68,"line":1088},47,[1090,1095,1099],{"type":13,"tag":66,"props":1091,"children":1092},{"style":84},[1093],{"type":18,"value":1094}," VK_ERROR_FRAGMENTATION_EXT ",{"type":13,"tag":66,"props":1096,"children":1097},{"style":73},[1098],{"type":18,"value":111},{"type":13,"tag":66,"props":1100,"children":1101},{"style":84},[1102],{"type":18,"value":1103}," VK_ERROR_FRAGMENTATION,\n",{"type":13,"tag":66,"props":1105,"children":1107},{"class":68,"line":1106},48,[1108,1113,1117],{"type":13,"tag":66,"props":1109,"children":1110},{"style":84},[1111],{"type":18,"value":1112}," VK_ERROR_NOT_PERMITTED_EXT ",{"type":13,"tag":66,"props":1114,"children":1115},{"style":73},[1116],{"type":18,"value":111},{"type":13,"tag":66,"props":1118,"children":1119},{"style":84},[1120],{"type":18,"value":1121}," VK_ERROR_NOT_PERMITTED,\n",{"type":13,"tag":66,"props":1123,"children":1125},{"class":68,"line":1124},49,[1126,1131,1135],{"type":13,"tag":66,"props":1127,"children":1128},{"style":84},[1129],{"type":18,"value":1130}," VK_ERROR_NOT_PERMITTED_KHR ",{"type":13,"tag":66,"props":1132,"children":1133},{"style":73},[1134],{"type":18,"value":111},{"type":13,"tag":66,"props":1136,"children":1137},{"style":84},[1138],{"type":18,"value":1121},{"type":13,"tag":66,"props":1140,"children":1142},{"class":68,"line":1141},50,[1143,1148,1152,1156],{"type":13,"tag":66,"props":1144,"children":1145},{"style":84},[1146],{"type":18,"value":1147}," VK_ERROR_PRESENT_TIMING_QUEUE_FULL_EXT ",{"type":13,"tag":66,"props":1149,"children":1150},{"style":73},[1151],{"type":18,"value":111},{"type":13,"tag":66,"props":1153,"children":1154},{"style":114},[1155],{"type":18,"value":765},{"type":13,"tag":66,"props":1157,"children":1158},{"style":84},[1159],{"type":18,"value":122},{"type":13,"tag":66,"props":1161,"children":1163},{"class":68,"line":1162},51,[1164,1169,1173],{"type":13,"tag":66,"props":1165,"children":1166},{"style":84},[1167],{"type":18,"value":1168}," VK_ERROR_INVALID_DEVICE_ADDRESS_EXT ",{"type":13,"tag":66,"props":1170,"children":1171},{"style":73},[1172],{"type":18,"value":111},{"type":13,"tag":66,"props":1174,"children":1175},{"style":84},[1176],{"type":18,"value":1177}," VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS,\n",{"type":13,"tag":66,"props":1179,"children":1181},{"class":68,"line":1180},52,[1182,1187,1191,1195],{"type":13,"tag":66,"props":1183,"children":1184},{"style":84},[1185],{"type":18,"value":1186}," VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT ",{"type":13,"tag":66,"props":1188,"children":1189},{"style":73},[1190],{"type":18,"value":111},{"type":13,"tag":66,"props":1192,"children":1193},{"style":114},[1194],{"type":18,"value":765},{"type":13,"tag":66,"props":1196,"children":1197},{"style":84},[1198],{"type":18,"value":122},{"type":13,"tag":66,"props":1200,"children":1202},{"class":68,"line":1201},53,[1203,1208,1212],{"type":13,"tag":66,"props":1204,"children":1205},{"style":84},[1206],{"type":18,"value":1207}," VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR ",{"type":13,"tag":66,"props":1209,"children":1210},{"style":73},[1211],{"type":18,"value":111},{"type":13,"tag":66,"props":1213,"children":1214},{"style":84},[1215],{"type":18,"value":1177},{"type":13,"tag":66,"props":1217,"children":1219},{"class":68,"line":1218},54,[1220,1225,1229,1233,1238],{"type":13,"tag":66,"props":1221,"children":1222},{"style":84},[1223],{"type":18,"value":1224}," VK_THREAD_IDLE_KHR ",{"type":13,"tag":66,"props":1226,"children":1227},{"style":73},[1228],{"type":18,"value":111},{"type":13,"tag":66,"props":1230,"children":1231},{"style":73},[1232],{"type":18,"value":259},{"type":13,"tag":66,"props":1234,"children":1235},{"style":114},[1236],{"type":18,"value":1237},"999999000",{"type":13,"tag":66,"props":1239,"children":1240},{"style":84},[1241],{"type":18,"value":122},{"type":13,"tag":66,"props":1243,"children":1245},{"class":68,"line":1244},55,[1246,1251,1255,1259,1264],{"type":13,"tag":66,"props":1247,"children":1248},{"style":84},[1249],{"type":18,"value":1250}," VK_THREAD_DONE_KHR ",{"type":13,"tag":66,"props":1252,"children":1253},{"style":73},[1254],{"type":18,"value":111},{"type":13,"tag":66,"props":1256,"children":1257},{"style":73},[1258],{"type":18,"value":259},{"type":13,"tag":66,"props":1260,"children":1261},{"style":114},[1262],{"type":18,"value":1263},"999999001",{"type":13,"tag":66,"props":1265,"children":1266},{"style":84},[1267],{"type":18,"value":122},{"type":13,"tag":66,"props":1269,"children":1271},{"class":68,"line":1270},56,[1272,1277,1281,1285,1290],{"type":13,"tag":66,"props":1273,"children":1274},{"style":84},[1275],{"type":18,"value":1276}," VK_OPERATION_DEFERRED_KHR ",{"type":13,"tag":66,"props":1278,"children":1279},{"style":73},[1280],{"type":18,"value":111},{"type":13,"tag":66,"props":1282,"children":1283},{"style":73},[1284],{"type":18,"value":259},{"type":13,"tag":66,"props":1286,"children":1287},{"style":114},[1288],{"type":18,"value":1289},"999999002",{"type":13,"tag":66,"props":1291,"children":1292},{"style":84},[1293],{"type":18,"value":122},{"type":13,"tag":66,"props":1295,"children":1297},{"class":68,"line":1296},57,[1298,1303,1307,1311,1315],{"type":13,"tag":66,"props":1299,"children":1300},{"style":84},[1301],{"type":18,"value":1302}," VK_OPERATION_NOT_DEFERRED_KHR ",{"type":13,"tag":66,"props":1304,"children":1305},{"style":73},[1306],{"type":18,"value":111},{"type":13,"tag":66,"props":1308,"children":1309},{"style":73},[1310],{"type":18,"value":259},{"type":13,"tag":66,"props":1312,"children":1313},{"style":114},[1314],{"type":18,"value":813},{"type":13,"tag":66,"props":1316,"children":1317},{"style":84},[1318],{"type":18,"value":122},{"type":13,"tag":66,"props":1320,"children":1322},{"class":68,"line":1321},58,[1323,1328,1332],{"type":13,"tag":66,"props":1324,"children":1325},{"style":84},[1326],{"type":18,"value":1327}," VK_PIPELINE_COMPILE_REQUIRED_EXT ",{"type":13,"tag":66,"props":1329,"children":1330},{"style":73},[1331],{"type":18,"value":111},{"type":13,"tag":66,"props":1333,"children":1334},{"style":84},[1335],{"type":18,"value":1336}," VK_PIPELINE_COMPILE_REQUIRED,\n",{"type":13,"tag":66,"props":1338,"children":1340},{"class":68,"line":1339},59,[1341,1346,1350],{"type":13,"tag":66,"props":1342,"children":1343},{"style":84},[1344],{"type":18,"value":1345}," VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT ",{"type":13,"tag":66,"props":1347,"children":1348},{"style":73},[1349],{"type":18,"value":111},{"type":13,"tag":66,"props":1351,"children":1352},{"style":84},[1353],{"type":18,"value":1336},{"type":13,"tag":66,"props":1355,"children":1357},{"class":68,"line":1356},60,[1358,1363,1367,1371],{"type":13,"tag":66,"props":1359,"children":1360},{"style":84},[1361],{"type":18,"value":1362}," VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR ",{"type":13,"tag":66,"props":1364,"children":1365},{"style":73},[1366],{"type":18,"value":111},{"type":13,"tag":66,"props":1368,"children":1369},{"style":114},[1370],{"type":18,"value":765},{"type":13,"tag":66,"props":1372,"children":1373},{"style":84},[1374],{"type":18,"value":122},{"type":13,"tag":66,"props":1376,"children":1378},{"class":68,"line":1377},61,[1379,1384,1388,1392],{"type":13,"tag":66,"props":1380,"children":1381},{"style":84},[1382],{"type":18,"value":1383}," VK_ERROR_COMPRESSION_EXHAUSTED_EXT ",{"type":13,"tag":66,"props":1385,"children":1386},{"style":73},[1387],{"type":18,"value":111},{"type":13,"tag":66,"props":1389,"children":1390},{"style":114},[1391],{"type":18,"value":765},{"type":13,"tag":66,"props":1393,"children":1394},{"style":84},[1395],{"type":18,"value":122},{"type":13,"tag":66,"props":1397,"children":1399},{"class":68,"line":1398},62,[1400,1405,1409,1413,1417],{"type":13,"tag":66,"props":1401,"children":1402},{"style":84},[1403],{"type":18,"value":1404}," VK_INCOMPATIBLE_SHADER_BINARY_EXT ",{"type":13,"tag":66,"props":1406,"children":1407},{"style":73},[1408],{"type":18,"value":111},{"type":13,"tag":66,"props":1410,"children":1411},{"style":73},[1412],{"type":18,"value":259},{"type":13,"tag":66,"props":1414,"children":1415},{"style":114},[1416],{"type":18,"value":1237},{"type":13,"tag":66,"props":1418,"children":1419},{"style":84},[1420],{"type":18,"value":122},{"type":13,"tag":66,"props":1422,"children":1424},{"class":68,"line":1423},63,[1425,1430,1434],{"type":13,"tag":66,"props":1426,"children":1427},{"style":84},[1428],{"type":18,"value":1429}," VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT ",{"type":13,"tag":66,"props":1431,"children":1432},{"style":73},[1433],{"type":18,"value":111},{"type":13,"tag":66,"props":1435,"children":1436},{"style":84},[1437],{"type":18,"value":1438}," VK_INCOMPATIBLE_SHADER_BINARY_EXT,\n",{"type":13,"tag":66,"props":1440,"children":1442},{"class":68,"line":1441},64,[1443,1448,1452,1456,1460],{"type":13,"tag":66,"props":1444,"children":1445},{"style":84},[1446],{"type":18,"value":1447}," VK_PIPELINE_BINARY_MISSING_KHR ",{"type":13,"tag":66,"props":1449,"children":1450},{"style":73},[1451],{"type":18,"value":111},{"type":13,"tag":66,"props":1453,"children":1454},{"style":73},[1455],{"type":18,"value":259},{"type":13,"tag":66,"props":1457,"children":1458},{"style":114},[1459],{"type":18,"value":1237},{"type":13,"tag":66,"props":1461,"children":1462},{"style":84},[1463],{"type":18,"value":122},{"type":13,"tag":66,"props":1465,"children":1467},{"class":68,"line":1466},65,[1468,1473,1477,1481],{"type":13,"tag":66,"props":1469,"children":1470},{"style":84},[1471],{"type":18,"value":1472}," VK_ERROR_NOT_ENOUGH_SPACE_KHR ",{"type":13,"tag":66,"props":1474,"children":1475},{"style":73},[1476],{"type":18,"value":111},{"type":13,"tag":66,"props":1478,"children":1479},{"style":114},[1480],{"type":18,"value":765},{"type":13,"tag":66,"props":1482,"children":1483},{"style":84},[1484],{"type":18,"value":122},{"type":13,"tag":66,"props":1486,"children":1488},{"class":68,"line":1487},66,[1489],{"type":13,"tag":66,"props":1490,"children":1491},{"style":84},[1492],{"type":18,"value":1493},"} VkResult;\n",{"type":13,"tag":53,"props":1495,"children":1500},{"className":1496,"code":1497,"filename":1498,"language":1499,"meta":59,"style":59},"language-rs shiki shiki-themes github-light-default github-dark-default","pub struct Result(u32);\nimpl Result {\n pub const SUCCESS: Self = 0;\n pub const NOT_READY: Self = 1;\n pub const TIMEOUT: Self = 2;\n pub const EVENT_SET: Self = 3;\n pub const EVENT_RESET: Self = 4;\n pub const INCOMPLETE: Self = 5;\n pub const ERROR_OUT_OF_HOST_MEMORY: Self = -1;\n pub const ERROR_OUT_OF_DEVICE_MEMORY: Self = -2;\n pub const ERROR_INITIALIZATION_FAILED: Self = -3;\n pub const ERROR_DEVICE_LOST: Self = -4;\n pub const ERROR_MEMORY_MAP_FAILED: Self = -5;\n pub const ERROR_LAYER_NOT_PRESENT: Self = -6;\n pub const ERROR_EXTENSION_NOT_PRESENT: Self = -7;\n pub const ERROR_FEATURE_NOT_PRESENT: Self = -8;\n pub const ERROR_INCOMPATIBLE_DRIVER: Self = -9;\n pub const ERROR_TOO_MANY_OBJECTS: Self = -10;\n pub const ERROR_FORMAT_NOT_SUPPORTED: Self = -11;\n pub const ERROR_FRAGMENTED_POOL: Self = -12;\n pub const ERROR_UNKNOWN: Self = -13;\n pub const ERROR_VALIDATION_FAILED: Self = 1000011001;\n pub const ERROR_OUT_OF_POOL_MEMORY: Self = 1000069000;\n pub const ERROR_INVALID_EXTERNAL_HANDLE: Self = 1000072003;\n pub const ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS: Self = 1000257000;\n pub const ERROR_FRAGMENTATION: Self = 1000161000;\n pub const PIPELINE_COMPILE_REQUIRED: Self = -1000297000;\n pub const ERROR_NOT_PERMITTED: Self = 1000174001;\n pub const ERROR_SURFACE_LOST_KHR: Self = 999999000;\n pub const ERROR_NATIVE_WINDOW_IN_USE_KHR: Self = 999999001;\n pub const SUBOPTIMAL_KHR: Self = -999999003;\n pub const ERROR_OUT_OF_DATE_KHR: Self = 999999004;\n pub const ERROR_INCOMPATIBLE_DISPLAY_KHR: Self = 999999001;\n pub const ERROR_VALIDATION_FAILED_EXT: Self = Self::ERROR_VALIDATION_FAILED;\n pub const ERROR_INVALID_SHADER_NV: Self = 999999000;\n pub const ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR: Self = 999999000;\n pub const ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR: Self = 999999001;\n pub const ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR: Self = 999999002;\n pub const ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR: Self = 999999003;\n pub const ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR: Self = 999999004;\n pub const ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR: Self = 999999005;\n pub const ERROR_OUT_OF_POOL_MEMORY_KHR: Self = Self::ERROR_OUT_OF_POOL_MEMORY;\n pub const ERROR_INVALID_EXTERNAL_HANDLE_KHR: Self = Self::ERROR_INVALID_EXTERNAL_HANDLE;\n pub const ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT: Self = 999999000;\n pub const ERROR_FRAGMENTATION_EXT: Self = Self::ERROR_FRAGMENTATION;\n pub const ERROR_NOT_PERMITTED_EXT: Self = Self::ERROR_NOT_PERMITTED;\n pub const ERROR_NOT_PERMITTED_KHR: Self = Self::ERROR_NOT_PERMITTED;\n pub const ERROR_PRESENT_TIMING_QUEUE_FULL_EXT: Self = 999999000;\n pub const ERROR_INVALID_DEVICE_ADDRESS_EXT: Self = Self::ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS;\n pub const ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT: Self = 999999000;\n pub const ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR: Self = Self::ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS;\n pub const THREAD_IDLE_KHR: Self = -999999000;\n pub const THREAD_DONE_KHR: Self = -999999001;\n pub const OPERATION_DEFERRED_KHR: Self = -999999002;\n pub const OPERATION_NOT_DEFERRED_KHR: Self = -999999003;\n pub const PIPELINE_COMPILE_REQUIRED_EXT: Self = Self::PIPELINE_COMPILE_REQUIRED;\n pub const ERROR_PIPELINE_COMPILE_REQUIRED_EXT: Self = Self::PIPELINE_COMPILE_REQUIRED;\n pub const ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR: Self = 999999000;\n pub const ERROR_COMPRESSION_EXHAUSTED_EXT: Self = 999999000;\n pub const INCOMPATIBLE_SHADER_BINARY_EXT: Self = -999999000;\n pub const PIPELINE_BINARY_MISSING_KHR: Self = -999999000;\n pub const ERROR_NOT_ENOUGH_SPACE_KHR: Self = 999999000;\n}\n","Rust","rs",[1501],{"type":13,"tag":62,"props":1502,"children":1503},{"__ignoreMap":59},[1504,1538,1555,1597,1633,1669,1705,1741,1777,1817,1857,1897,1937,1977,2017,2057,2097,2137,2177,2217,2257,2297,2333,2369,2405,2441,2477,2517,2553,2589,2625,2665,2701,2737,2783,2819,2855,2891,2927,2963,2999,3035,3080,3125,3161,3206,3251,3295,3331,3376,3412,3456,3496,3536,3576,3616,3661,3705,3741,3777,3817,3857,3893],{"type":13,"tag":66,"props":1505,"children":1506},{"class":68,"line":69},[1507,1512,1517,1523,1528,1533],{"type":13,"tag":66,"props":1508,"children":1509},{"style":73},[1510],{"type":18,"value":1511},"pub",{"type":13,"tag":66,"props":1513,"children":1514},{"style":73},[1515],{"type":18,"value":1516}," struct",{"type":13,"tag":66,"props":1518,"children":1520},{"style":1519},"--shiki-default:#953800;--shiki-dark:#FFA657",[1521],{"type":18,"value":1522}," Result",{"type":13,"tag":66,"props":1524,"children":1525},{"style":84},[1526],{"type":18,"value":1527},"(",{"type":13,"tag":66,"props":1529,"children":1530},{"style":1519},[1531],{"type":18,"value":1532},"u32",{"type":13,"tag":66,"props":1534,"children":1535},{"style":84},[1536],{"type":18,"value":1537},");\n",{"type":13,"tag":66,"props":1539,"children":1540},{"class":68,"line":90},[1541,1546,1550],{"type":13,"tag":66,"props":1542,"children":1543},{"style":73},[1544],{"type":18,"value":1545},"impl",{"type":13,"tag":66,"props":1547,"children":1548},{"style":1519},[1549],{"type":18,"value":1522},{"type":13,"tag":66,"props":1551,"children":1552},{"style":84},[1553],{"type":18,"value":1554}," {\n",{"type":13,"tag":66,"props":1556,"children":1557},{"class":68,"line":100},[1558,1563,1568,1573,1578,1583,1588,1592],{"type":13,"tag":66,"props":1559,"children":1560},{"style":73},[1561],{"type":18,"value":1562}," pub",{"type":13,"tag":66,"props":1564,"children":1565},{"style":73},[1566],{"type":18,"value":1567}," const",{"type":13,"tag":66,"props":1569,"children":1570},{"style":114},[1571],{"type":18,"value":1572}," SUCCESS",{"type":13,"tag":66,"props":1574,"children":1575},{"style":73},[1576],{"type":18,"value":1577},":",{"type":13,"tag":66,"props":1579,"children":1580},{"style":114},[1581],{"type":18,"value":1582}," Self",{"type":13,"tag":66,"props":1584,"children":1585},{"style":73},[1586],{"type":18,"value":1587}," =",{"type":13,"tag":66,"props":1589,"children":1590},{"style":114},[1591],{"type":18,"value":117},{"type":13,"tag":66,"props":1593,"children":1594},{"style":84},[1595],{"type":18,"value":1596},";\n",{"type":13,"tag":66,"props":1598,"children":1599},{"class":68,"line":125},[1600,1604,1608,1613,1617,1621,1625,1629],{"type":13,"tag":66,"props":1601,"children":1602},{"style":73},[1603],{"type":18,"value":1562},{"type":13,"tag":66,"props":1605,"children":1606},{"style":73},[1607],{"type":18,"value":1567},{"type":13,"tag":66,"props":1609,"children":1610},{"style":114},[1611],{"type":18,"value":1612}," NOT_READY",{"type":13,"tag":66,"props":1614,"children":1615},{"style":73},[1616],{"type":18,"value":1577},{"type":13,"tag":66,"props":1618,"children":1619},{"style":114},[1620],{"type":18,"value":1582},{"type":13,"tag":66,"props":1622,"children":1623},{"style":73},[1624],{"type":18,"value":1587},{"type":13,"tag":66,"props":1626,"children":1627},{"style":114},[1628],{"type":18,"value":140},{"type":13,"tag":66,"props":1630,"children":1631},{"style":84},[1632],{"type":18,"value":1596},{"type":13,"tag":66,"props":1634,"children":1635},{"class":68,"line":147},[1636,1640,1644,1649,1653,1657,1661,1665],{"type":13,"tag":66,"props":1637,"children":1638},{"style":73},[1639],{"type":18,"value":1562},{"type":13,"tag":66,"props":1641,"children":1642},{"style":73},[1643],{"type":18,"value":1567},{"type":13,"tag":66,"props":1645,"children":1646},{"style":114},[1647],{"type":18,"value":1648}," TIMEOUT",{"type":13,"tag":66,"props":1650,"children":1651},{"style":73},[1652],{"type":18,"value":1577},{"type":13,"tag":66,"props":1654,"children":1655},{"style":114},[1656],{"type":18,"value":1582},{"type":13,"tag":66,"props":1658,"children":1659},{"style":73},[1660],{"type":18,"value":1587},{"type":13,"tag":66,"props":1662,"children":1663},{"style":114},[1664],{"type":18,"value":162},{"type":13,"tag":66,"props":1666,"children":1667},{"style":84},[1668],{"type":18,"value":1596},{"type":13,"tag":66,"props":1670,"children":1671},{"class":68,"line":169},[1672,1676,1680,1685,1689,1693,1697,1701],{"type":13,"tag":66,"props":1673,"children":1674},{"style":73},[1675],{"type":18,"value":1562},{"type":13,"tag":66,"props":1677,"children":1678},{"style":73},[1679],{"type":18,"value":1567},{"type":13,"tag":66,"props":1681,"children":1682},{"style":114},[1683],{"type":18,"value":1684}," EVENT_SET",{"type":13,"tag":66,"props":1686,"children":1687},{"style":73},[1688],{"type":18,"value":1577},{"type":13,"tag":66,"props":1690,"children":1691},{"style":114},[1692],{"type":18,"value":1582},{"type":13,"tag":66,"props":1694,"children":1695},{"style":73},[1696],{"type":18,"value":1587},{"type":13,"tag":66,"props":1698,"children":1699},{"style":114},[1700],{"type":18,"value":184},{"type":13,"tag":66,"props":1702,"children":1703},{"style":84},[1704],{"type":18,"value":1596},{"type":13,"tag":66,"props":1706,"children":1707},{"class":68,"line":191},[1708,1712,1716,1721,1725,1729,1733,1737],{"type":13,"tag":66,"props":1709,"children":1710},{"style":73},[1711],{"type":18,"value":1562},{"type":13,"tag":66,"props":1713,"children":1714},{"style":73},[1715],{"type":18,"value":1567},{"type":13,"tag":66,"props":1717,"children":1718},{"style":114},[1719],{"type":18,"value":1720}," EVENT_RESET",{"type":13,"tag":66,"props":1722,"children":1723},{"style":73},[1724],{"type":18,"value":1577},{"type":13,"tag":66,"props":1726,"children":1727},{"style":114},[1728],{"type":18,"value":1582},{"type":13,"tag":66,"props":1730,"children":1731},{"style":73},[1732],{"type":18,"value":1587},{"type":13,"tag":66,"props":1734,"children":1735},{"style":114},[1736],{"type":18,"value":206},{"type":13,"tag":66,"props":1738,"children":1739},{"style":84},[1740],{"type":18,"value":1596},{"type":13,"tag":66,"props":1742,"children":1743},{"class":68,"line":213},[1744,1748,1752,1757,1761,1765,1769,1773],{"type":13,"tag":66,"props":1745,"children":1746},{"style":73},[1747],{"type":18,"value":1562},{"type":13,"tag":66,"props":1749,"children":1750},{"style":73},[1751],{"type":18,"value":1567},{"type":13,"tag":66,"props":1753,"children":1754},{"style":114},[1755],{"type":18,"value":1756}," INCOMPLETE",{"type":13,"tag":66,"props":1758,"children":1759},{"style":73},[1760],{"type":18,"value":1577},{"type":13,"tag":66,"props":1762,"children":1763},{"style":114},[1764],{"type":18,"value":1582},{"type":13,"tag":66,"props":1766,"children":1767},{"style":73},[1768],{"type":18,"value":1587},{"type":13,"tag":66,"props":1770,"children":1771},{"style":114},[1772],{"type":18,"value":228},{"type":13,"tag":66,"props":1774,"children":1775},{"style":84},[1776],{"type":18,"value":1596},{"type":13,"tag":66,"props":1778,"children":1779},{"class":68,"line":235},[1780,1784,1788,1793,1797,1801,1805,1809,1813],{"type":13,"tag":66,"props":1781,"children":1782},{"style":73},[1783],{"type":18,"value":1562},{"type":13,"tag":66,"props":1785,"children":1786},{"style":73},[1787],{"type":18,"value":1567},{"type":13,"tag":66,"props":1789,"children":1790},{"style":114},[1791],{"type":18,"value":1792}," ERROR_OUT_OF_HOST_MEMORY",{"type":13,"tag":66,"props":1794,"children":1795},{"style":73},[1796],{"type":18,"value":1577},{"type":13,"tag":66,"props":1798,"children":1799},{"style":114},[1800],{"type":18,"value":1582},{"type":13,"tag":66,"props":1802,"children":1803},{"style":73},[1804],{"type":18,"value":1587},{"type":13,"tag":66,"props":1806,"children":1807},{"style":73},[1808],{"type":18,"value":259},{"type":13,"tag":66,"props":1810,"children":1811},{"style":114},[1812],{"type":18,"value":264},{"type":13,"tag":66,"props":1814,"children":1815},{"style":84},[1816],{"type":18,"value":1596},{"type":13,"tag":66,"props":1818,"children":1819},{"class":68,"line":244},[1820,1824,1828,1833,1837,1841,1845,1849,1853],{"type":13,"tag":66,"props":1821,"children":1822},{"style":73},[1823],{"type":18,"value":1562},{"type":13,"tag":66,"props":1825,"children":1826},{"style":73},[1827],{"type":18,"value":1567},{"type":13,"tag":66,"props":1829,"children":1830},{"style":114},[1831],{"type":18,"value":1832}," ERROR_OUT_OF_DEVICE_MEMORY",{"type":13,"tag":66,"props":1834,"children":1835},{"style":73},[1836],{"type":18,"value":1577},{"type":13,"tag":66,"props":1838,"children":1839},{"style":114},[1840],{"type":18,"value":1582},{"type":13,"tag":66,"props":1842,"children":1843},{"style":73},[1844],{"type":18,"value":1587},{"type":13,"tag":66,"props":1846,"children":1847},{"style":73},[1848],{"type":18,"value":259},{"type":13,"tag":66,"props":1850,"children":1851},{"style":114},[1852],{"type":18,"value":290},{"type":13,"tag":66,"props":1854,"children":1855},{"style":84},[1856],{"type":18,"value":1596},{"type":13,"tag":66,"props":1858,"children":1859},{"class":68,"line":271},[1860,1864,1868,1873,1877,1881,1885,1889,1893],{"type":13,"tag":66,"props":1861,"children":1862},{"style":73},[1863],{"type":18,"value":1562},{"type":13,"tag":66,"props":1865,"children":1866},{"style":73},[1867],{"type":18,"value":1567},{"type":13,"tag":66,"props":1869,"children":1870},{"style":114},[1871],{"type":18,"value":1872}," ERROR_INITIALIZATION_FAILED",{"type":13,"tag":66,"props":1874,"children":1875},{"style":73},[1876],{"type":18,"value":1577},{"type":13,"tag":66,"props":1878,"children":1879},{"style":114},[1880],{"type":18,"value":1582},{"type":13,"tag":66,"props":1882,"children":1883},{"style":73},[1884],{"type":18,"value":1587},{"type":13,"tag":66,"props":1886,"children":1887},{"style":73},[1888],{"type":18,"value":259},{"type":13,"tag":66,"props":1890,"children":1891},{"style":114},[1892],{"type":18,"value":316},{"type":13,"tag":66,"props":1894,"children":1895},{"style":84},[1896],{"type":18,"value":1596},{"type":13,"tag":66,"props":1898,"children":1899},{"class":68,"line":297},[1900,1904,1908,1913,1917,1921,1925,1929,1933],{"type":13,"tag":66,"props":1901,"children":1902},{"style":73},[1903],{"type":18,"value":1562},{"type":13,"tag":66,"props":1905,"children":1906},{"style":73},[1907],{"type":18,"value":1567},{"type":13,"tag":66,"props":1909,"children":1910},{"style":114},[1911],{"type":18,"value":1912}," ERROR_DEVICE_LOST",{"type":13,"tag":66,"props":1914,"children":1915},{"style":73},[1916],{"type":18,"value":1577},{"type":13,"tag":66,"props":1918,"children":1919},{"style":114},[1920],{"type":18,"value":1582},{"type":13,"tag":66,"props":1922,"children":1923},{"style":73},[1924],{"type":18,"value":1587},{"type":13,"tag":66,"props":1926,"children":1927},{"style":73},[1928],{"type":18,"value":259},{"type":13,"tag":66,"props":1930,"children":1931},{"style":114},[1932],{"type":18,"value":342},{"type":13,"tag":66,"props":1934,"children":1935},{"style":84},[1936],{"type":18,"value":1596},{"type":13,"tag":66,"props":1938,"children":1939},{"class":68,"line":323},[1940,1944,1948,1953,1957,1961,1965,1969,1973],{"type":13,"tag":66,"props":1941,"children":1942},{"style":73},[1943],{"type":18,"value":1562},{"type":13,"tag":66,"props":1945,"children":1946},{"style":73},[1947],{"type":18,"value":1567},{"type":13,"tag":66,"props":1949,"children":1950},{"style":114},[1951],{"type":18,"value":1952}," ERROR_MEMORY_MAP_FAILED",{"type":13,"tag":66,"props":1954,"children":1955},{"style":73},[1956],{"type":18,"value":1577},{"type":13,"tag":66,"props":1958,"children":1959},{"style":114},[1960],{"type":18,"value":1582},{"type":13,"tag":66,"props":1962,"children":1963},{"style":73},[1964],{"type":18,"value":1587},{"type":13,"tag":66,"props":1966,"children":1967},{"style":73},[1968],{"type":18,"value":259},{"type":13,"tag":66,"props":1970,"children":1971},{"style":114},[1972],{"type":18,"value":368},{"type":13,"tag":66,"props":1974,"children":1975},{"style":84},[1976],{"type":18,"value":1596},{"type":13,"tag":66,"props":1978,"children":1979},{"class":68,"line":349},[1980,1984,1988,1993,1997,2001,2005,2009,2013],{"type":13,"tag":66,"props":1981,"children":1982},{"style":73},[1983],{"type":18,"value":1562},{"type":13,"tag":66,"props":1985,"children":1986},{"style":73},[1987],{"type":18,"value":1567},{"type":13,"tag":66,"props":1989,"children":1990},{"style":114},[1991],{"type":18,"value":1992}," ERROR_LAYER_NOT_PRESENT",{"type":13,"tag":66,"props":1994,"children":1995},{"style":73},[1996],{"type":18,"value":1577},{"type":13,"tag":66,"props":1998,"children":1999},{"style":114},[2000],{"type":18,"value":1582},{"type":13,"tag":66,"props":2002,"children":2003},{"style":73},[2004],{"type":18,"value":1587},{"type":13,"tag":66,"props":2006,"children":2007},{"style":73},[2008],{"type":18,"value":259},{"type":13,"tag":66,"props":2010,"children":2011},{"style":114},[2012],{"type":18,"value":394},{"type":13,"tag":66,"props":2014,"children":2015},{"style":84},[2016],{"type":18,"value":1596},{"type":13,"tag":66,"props":2018,"children":2019},{"class":68,"line":375},[2020,2024,2028,2033,2037,2041,2045,2049,2053],{"type":13,"tag":66,"props":2021,"children":2022},{"style":73},[2023],{"type":18,"value":1562},{"type":13,"tag":66,"props":2025,"children":2026},{"style":73},[2027],{"type":18,"value":1567},{"type":13,"tag":66,"props":2029,"children":2030},{"style":114},[2031],{"type":18,"value":2032}," ERROR_EXTENSION_NOT_PRESENT",{"type":13,"tag":66,"props":2034,"children":2035},{"style":73},[2036],{"type":18,"value":1577},{"type":13,"tag":66,"props":2038,"children":2039},{"style":114},[2040],{"type":18,"value":1582},{"type":13,"tag":66,"props":2042,"children":2043},{"style":73},[2044],{"type":18,"value":1587},{"type":13,"tag":66,"props":2046,"children":2047},{"style":73},[2048],{"type":18,"value":259},{"type":13,"tag":66,"props":2050,"children":2051},{"style":114},[2052],{"type":18,"value":420},{"type":13,"tag":66,"props":2054,"children":2055},{"style":84},[2056],{"type":18,"value":1596},{"type":13,"tag":66,"props":2058,"children":2059},{"class":68,"line":401},[2060,2064,2068,2073,2077,2081,2085,2089,2093],{"type":13,"tag":66,"props":2061,"children":2062},{"style":73},[2063],{"type":18,"value":1562},{"type":13,"tag":66,"props":2065,"children":2066},{"style":73},[2067],{"type":18,"value":1567},{"type":13,"tag":66,"props":2069,"children":2070},{"style":114},[2071],{"type":18,"value":2072}," ERROR_FEATURE_NOT_PRESENT",{"type":13,"tag":66,"props":2074,"children":2075},{"style":73},[2076],{"type":18,"value":1577},{"type":13,"tag":66,"props":2078,"children":2079},{"style":114},[2080],{"type":18,"value":1582},{"type":13,"tag":66,"props":2082,"children":2083},{"style":73},[2084],{"type":18,"value":1587},{"type":13,"tag":66,"props":2086,"children":2087},{"style":73},[2088],{"type":18,"value":259},{"type":13,"tag":66,"props":2090,"children":2091},{"style":114},[2092],{"type":18,"value":446},{"type":13,"tag":66,"props":2094,"children":2095},{"style":84},[2096],{"type":18,"value":1596},{"type":13,"tag":66,"props":2098,"children":2099},{"class":68,"line":427},[2100,2104,2108,2113,2117,2121,2125,2129,2133],{"type":13,"tag":66,"props":2101,"children":2102},{"style":73},[2103],{"type":18,"value":1562},{"type":13,"tag":66,"props":2105,"children":2106},{"style":73},[2107],{"type":18,"value":1567},{"type":13,"tag":66,"props":2109,"children":2110},{"style":114},[2111],{"type":18,"value":2112}," ERROR_INCOMPATIBLE_DRIVER",{"type":13,"tag":66,"props":2114,"children":2115},{"style":73},[2116],{"type":18,"value":1577},{"type":13,"tag":66,"props":2118,"children":2119},{"style":114},[2120],{"type":18,"value":1582},{"type":13,"tag":66,"props":2122,"children":2123},{"style":73},[2124],{"type":18,"value":1587},{"type":13,"tag":66,"props":2126,"children":2127},{"style":73},[2128],{"type":18,"value":259},{"type":13,"tag":66,"props":2130,"children":2131},{"style":114},[2132],{"type":18,"value":472},{"type":13,"tag":66,"props":2134,"children":2135},{"style":84},[2136],{"type":18,"value":1596},{"type":13,"tag":66,"props":2138,"children":2139},{"class":68,"line":453},[2140,2144,2148,2153,2157,2161,2165,2169,2173],{"type":13,"tag":66,"props":2141,"children":2142},{"style":73},[2143],{"type":18,"value":1562},{"type":13,"tag":66,"props":2145,"children":2146},{"style":73},[2147],{"type":18,"value":1567},{"type":13,"tag":66,"props":2149,"children":2150},{"style":114},[2151],{"type":18,"value":2152}," ERROR_TOO_MANY_OBJECTS",{"type":13,"tag":66,"props":2154,"children":2155},{"style":73},[2156],{"type":18,"value":1577},{"type":13,"tag":66,"props":2158,"children":2159},{"style":114},[2160],{"type":18,"value":1582},{"type":13,"tag":66,"props":2162,"children":2163},{"style":73},[2164],{"type":18,"value":1587},{"type":13,"tag":66,"props":2166,"children":2167},{"style":73},[2168],{"type":18,"value":259},{"type":13,"tag":66,"props":2170,"children":2171},{"style":114},[2172],{"type":18,"value":498},{"type":13,"tag":66,"props":2174,"children":2175},{"style":84},[2176],{"type":18,"value":1596},{"type":13,"tag":66,"props":2178,"children":2179},{"class":68,"line":479},[2180,2184,2188,2193,2197,2201,2205,2209,2213],{"type":13,"tag":66,"props":2181,"children":2182},{"style":73},[2183],{"type":18,"value":1562},{"type":13,"tag":66,"props":2185,"children":2186},{"style":73},[2187],{"type":18,"value":1567},{"type":13,"tag":66,"props":2189,"children":2190},{"style":114},[2191],{"type":18,"value":2192}," ERROR_FORMAT_NOT_SUPPORTED",{"type":13,"tag":66,"props":2194,"children":2195},{"style":73},[2196],{"type":18,"value":1577},{"type":13,"tag":66,"props":2198,"children":2199},{"style":114},[2200],{"type":18,"value":1582},{"type":13,"tag":66,"props":2202,"children":2203},{"style":73},[2204],{"type":18,"value":1587},{"type":13,"tag":66,"props":2206,"children":2207},{"style":73},[2208],{"type":18,"value":259},{"type":13,"tag":66,"props":2210,"children":2211},{"style":114},[2212],{"type":18,"value":524},{"type":13,"tag":66,"props":2214,"children":2215},{"style":84},[2216],{"type":18,"value":1596},{"type":13,"tag":66,"props":2218,"children":2219},{"class":68,"line":505},[2220,2224,2228,2233,2237,2241,2245,2249,2253],{"type":13,"tag":66,"props":2221,"children":2222},{"style":73},[2223],{"type":18,"value":1562},{"type":13,"tag":66,"props":2225,"children":2226},{"style":73},[2227],{"type":18,"value":1567},{"type":13,"tag":66,"props":2229,"children":2230},{"style":114},[2231],{"type":18,"value":2232}," ERROR_FRAGMENTED_POOL",{"type":13,"tag":66,"props":2234,"children":2235},{"style":73},[2236],{"type":18,"value":1577},{"type":13,"tag":66,"props":2238,"children":2239},{"style":114},[2240],{"type":18,"value":1582},{"type":13,"tag":66,"props":2242,"children":2243},{"style":73},[2244],{"type":18,"value":1587},{"type":13,"tag":66,"props":2246,"children":2247},{"style":73},[2248],{"type":18,"value":259},{"type":13,"tag":66,"props":2250,"children":2251},{"style":114},[2252],{"type":18,"value":550},{"type":13,"tag":66,"props":2254,"children":2255},{"style":84},[2256],{"type":18,"value":1596},{"type":13,"tag":66,"props":2258,"children":2259},{"class":68,"line":531},[2260,2264,2268,2273,2277,2281,2285,2289,2293],{"type":13,"tag":66,"props":2261,"children":2262},{"style":73},[2263],{"type":18,"value":1562},{"type":13,"tag":66,"props":2265,"children":2266},{"style":73},[2267],{"type":18,"value":1567},{"type":13,"tag":66,"props":2269,"children":2270},{"style":114},[2271],{"type":18,"value":2272}," ERROR_UNKNOWN",{"type":13,"tag":66,"props":2274,"children":2275},{"style":73},[2276],{"type":18,"value":1577},{"type":13,"tag":66,"props":2278,"children":2279},{"style":114},[2280],{"type":18,"value":1582},{"type":13,"tag":66,"props":2282,"children":2283},{"style":73},[2284],{"type":18,"value":1587},{"type":13,"tag":66,"props":2286,"children":2287},{"style":73},[2288],{"type":18,"value":259},{"type":13,"tag":66,"props":2290,"children":2291},{"style":114},[2292],{"type":18,"value":576},{"type":13,"tag":66,"props":2294,"children":2295},{"style":84},[2296],{"type":18,"value":1596},{"type":13,"tag":66,"props":2298,"children":2299},{"class":68,"line":557},[2300,2304,2308,2313,2317,2321,2325,2329],{"type":13,"tag":66,"props":2301,"children":2302},{"style":73},[2303],{"type":18,"value":1562},{"type":13,"tag":66,"props":2305,"children":2306},{"style":73},[2307],{"type":18,"value":1567},{"type":13,"tag":66,"props":2309,"children":2310},{"style":114},[2311],{"type":18,"value":2312}," ERROR_VALIDATION_FAILED",{"type":13,"tag":66,"props":2314,"children":2315},{"style":73},[2316],{"type":18,"value":1577},{"type":13,"tag":66,"props":2318,"children":2319},{"style":114},[2320],{"type":18,"value":1582},{"type":13,"tag":66,"props":2322,"children":2323},{"style":73},[2324],{"type":18,"value":1587},{"type":13,"tag":66,"props":2326,"children":2327},{"style":114},[2328],{"type":18,"value":607},{"type":13,"tag":66,"props":2330,"children":2331},{"style":84},[2332],{"type":18,"value":1596},{"type":13,"tag":66,"props":2334,"children":2335},{"class":68,"line":583},[2336,2340,2344,2349,2353,2357,2361,2365],{"type":13,"tag":66,"props":2337,"children":2338},{"style":73},[2339],{"type":18,"value":1562},{"type":13,"tag":66,"props":2341,"children":2342},{"style":73},[2343],{"type":18,"value":1567},{"type":13,"tag":66,"props":2345,"children":2346},{"style":114},[2347],{"type":18,"value":2348}," ERROR_OUT_OF_POOL_MEMORY",{"type":13,"tag":66,"props":2350,"children":2351},{"style":73},[2352],{"type":18,"value":1577},{"type":13,"tag":66,"props":2354,"children":2355},{"style":114},[2356],{"type":18,"value":1582},{"type":13,"tag":66,"props":2358,"children":2359},{"style":73},[2360],{"type":18,"value":1587},{"type":13,"tag":66,"props":2362,"children":2363},{"style":114},[2364],{"type":18,"value":629},{"type":13,"tag":66,"props":2366,"children":2367},{"style":84},[2368],{"type":18,"value":1596},{"type":13,"tag":66,"props":2370,"children":2371},{"class":68,"line":592},[2372,2376,2380,2385,2389,2393,2397,2401],{"type":13,"tag":66,"props":2373,"children":2374},{"style":73},[2375],{"type":18,"value":1562},{"type":13,"tag":66,"props":2377,"children":2378},{"style":73},[2379],{"type":18,"value":1567},{"type":13,"tag":66,"props":2381,"children":2382},{"style":114},[2383],{"type":18,"value":2384}," ERROR_INVALID_EXTERNAL_HANDLE",{"type":13,"tag":66,"props":2386,"children":2387},{"style":73},[2388],{"type":18,"value":1577},{"type":13,"tag":66,"props":2390,"children":2391},{"style":114},[2392],{"type":18,"value":1582},{"type":13,"tag":66,"props":2394,"children":2395},{"style":73},[2396],{"type":18,"value":1587},{"type":13,"tag":66,"props":2398,"children":2399},{"style":114},[2400],{"type":18,"value":651},{"type":13,"tag":66,"props":2402,"children":2403},{"style":84},[2404],{"type":18,"value":1596},{"type":13,"tag":66,"props":2406,"children":2407},{"class":68,"line":614},[2408,2412,2416,2421,2425,2429,2433,2437],{"type":13,"tag":66,"props":2409,"children":2410},{"style":73},[2411],{"type":18,"value":1562},{"type":13,"tag":66,"props":2413,"children":2414},{"style":73},[2415],{"type":18,"value":1567},{"type":13,"tag":66,"props":2417,"children":2418},{"style":114},[2419],{"type":18,"value":2420}," ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS",{"type":13,"tag":66,"props":2422,"children":2423},{"style":73},[2424],{"type":18,"value":1577},{"type":13,"tag":66,"props":2426,"children":2427},{"style":114},[2428],{"type":18,"value":1582},{"type":13,"tag":66,"props":2430,"children":2431},{"style":73},[2432],{"type":18,"value":1587},{"type":13,"tag":66,"props":2434,"children":2435},{"style":114},[2436],{"type":18,"value":673},{"type":13,"tag":66,"props":2438,"children":2439},{"style":84},[2440],{"type":18,"value":1596},{"type":13,"tag":66,"props":2442,"children":2443},{"class":68,"line":636},[2444,2448,2452,2457,2461,2465,2469,2473],{"type":13,"tag":66,"props":2445,"children":2446},{"style":73},[2447],{"type":18,"value":1562},{"type":13,"tag":66,"props":2449,"children":2450},{"style":73},[2451],{"type":18,"value":1567},{"type":13,"tag":66,"props":2453,"children":2454},{"style":114},[2455],{"type":18,"value":2456}," ERROR_FRAGMENTATION",{"type":13,"tag":66,"props":2458,"children":2459},{"style":73},[2460],{"type":18,"value":1577},{"type":13,"tag":66,"props":2462,"children":2463},{"style":114},[2464],{"type":18,"value":1582},{"type":13,"tag":66,"props":2466,"children":2467},{"style":73},[2468],{"type":18,"value":1587},{"type":13,"tag":66,"props":2470,"children":2471},{"style":114},[2472],{"type":18,"value":695},{"type":13,"tag":66,"props":2474,"children":2475},{"style":84},[2476],{"type":18,"value":1596},{"type":13,"tag":66,"props":2478,"children":2479},{"class":68,"line":658},[2480,2484,2488,2493,2497,2501,2505,2509,2513],{"type":13,"tag":66,"props":2481,"children":2482},{"style":73},[2483],{"type":18,"value":1562},{"type":13,"tag":66,"props":2485,"children":2486},{"style":73},[2487],{"type":18,"value":1567},{"type":13,"tag":66,"props":2489,"children":2490},{"style":114},[2491],{"type":18,"value":2492}," PIPELINE_COMPILE_REQUIRED",{"type":13,"tag":66,"props":2494,"children":2495},{"style":73},[2496],{"type":18,"value":1577},{"type":13,"tag":66,"props":2498,"children":2499},{"style":114},[2500],{"type":18,"value":1582},{"type":13,"tag":66,"props":2502,"children":2503},{"style":73},[2504],{"type":18,"value":1587},{"type":13,"tag":66,"props":2506,"children":2507},{"style":73},[2508],{"type":18,"value":259},{"type":13,"tag":66,"props":2510,"children":2511},{"style":114},[2512],{"type":18,"value":721},{"type":13,"tag":66,"props":2514,"children":2515},{"style":84},[2516],{"type":18,"value":1596},{"type":13,"tag":66,"props":2518,"children":2519},{"class":68,"line":680},[2520,2524,2528,2533,2537,2541,2545,2549],{"type":13,"tag":66,"props":2521,"children":2522},{"style":73},[2523],{"type":18,"value":1562},{"type":13,"tag":66,"props":2525,"children":2526},{"style":73},[2527],{"type":18,"value":1567},{"type":13,"tag":66,"props":2529,"children":2530},{"style":114},[2531],{"type":18,"value":2532}," ERROR_NOT_PERMITTED",{"type":13,"tag":66,"props":2534,"children":2535},{"style":73},[2536],{"type":18,"value":1577},{"type":13,"tag":66,"props":2538,"children":2539},{"style":114},[2540],{"type":18,"value":1582},{"type":13,"tag":66,"props":2542,"children":2543},{"style":73},[2544],{"type":18,"value":1587},{"type":13,"tag":66,"props":2546,"children":2547},{"style":114},[2548],{"type":18,"value":743},{"type":13,"tag":66,"props":2550,"children":2551},{"style":84},[2552],{"type":18,"value":1596},{"type":13,"tag":66,"props":2554,"children":2555},{"class":68,"line":702},[2556,2560,2564,2569,2573,2577,2581,2585],{"type":13,"tag":66,"props":2557,"children":2558},{"style":73},[2559],{"type":18,"value":1562},{"type":13,"tag":66,"props":2561,"children":2562},{"style":73},[2563],{"type":18,"value":1567},{"type":13,"tag":66,"props":2565,"children":2566},{"style":114},[2567],{"type":18,"value":2568}," ERROR_SURFACE_LOST_KHR",{"type":13,"tag":66,"props":2570,"children":2571},{"style":73},[2572],{"type":18,"value":1577},{"type":13,"tag":66,"props":2574,"children":2575},{"style":114},[2576],{"type":18,"value":1582},{"type":13,"tag":66,"props":2578,"children":2579},{"style":73},[2580],{"type":18,"value":1587},{"type":13,"tag":66,"props":2582,"children":2583},{"style":114},[2584],{"type":18,"value":765},{"type":13,"tag":66,"props":2586,"children":2587},{"style":84},[2588],{"type":18,"value":1596},{"type":13,"tag":66,"props":2590,"children":2591},{"class":68,"line":728},[2592,2596,2600,2605,2609,2613,2617,2621],{"type":13,"tag":66,"props":2593,"children":2594},{"style":73},[2595],{"type":18,"value":1562},{"type":13,"tag":66,"props":2597,"children":2598},{"style":73},[2599],{"type":18,"value":1567},{"type":13,"tag":66,"props":2601,"children":2602},{"style":114},[2603],{"type":18,"value":2604}," ERROR_NATIVE_WINDOW_IN_USE_KHR",{"type":13,"tag":66,"props":2606,"children":2607},{"style":73},[2608],{"type":18,"value":1577},{"type":13,"tag":66,"props":2610,"children":2611},{"style":114},[2612],{"type":18,"value":1582},{"type":13,"tag":66,"props":2614,"children":2615},{"style":73},[2616],{"type":18,"value":1587},{"type":13,"tag":66,"props":2618,"children":2619},{"style":114},[2620],{"type":18,"value":787},{"type":13,"tag":66,"props":2622,"children":2623},{"style":84},[2624],{"type":18,"value":1596},{"type":13,"tag":66,"props":2626,"children":2627},{"class":68,"line":750},[2628,2632,2636,2641,2645,2649,2653,2657,2661],{"type":13,"tag":66,"props":2629,"children":2630},{"style":73},[2631],{"type":18,"value":1562},{"type":13,"tag":66,"props":2633,"children":2634},{"style":73},[2635],{"type":18,"value":1567},{"type":13,"tag":66,"props":2637,"children":2638},{"style":114},[2639],{"type":18,"value":2640}," SUBOPTIMAL_KHR",{"type":13,"tag":66,"props":2642,"children":2643},{"style":73},[2644],{"type":18,"value":1577},{"type":13,"tag":66,"props":2646,"children":2647},{"style":114},[2648],{"type":18,"value":1582},{"type":13,"tag":66,"props":2650,"children":2651},{"style":73},[2652],{"type":18,"value":1587},{"type":13,"tag":66,"props":2654,"children":2655},{"style":73},[2656],{"type":18,"value":259},{"type":13,"tag":66,"props":2658,"children":2659},{"style":114},[2660],{"type":18,"value":813},{"type":13,"tag":66,"props":2662,"children":2663},{"style":84},[2664],{"type":18,"value":1596},{"type":13,"tag":66,"props":2666,"children":2667},{"class":68,"line":772},[2668,2672,2676,2681,2685,2689,2693,2697],{"type":13,"tag":66,"props":2669,"children":2670},{"style":73},[2671],{"type":18,"value":1562},{"type":13,"tag":66,"props":2673,"children":2674},{"style":73},[2675],{"type":18,"value":1567},{"type":13,"tag":66,"props":2677,"children":2678},{"style":114},[2679],{"type":18,"value":2680}," ERROR_OUT_OF_DATE_KHR",{"type":13,"tag":66,"props":2682,"children":2683},{"style":73},[2684],{"type":18,"value":1577},{"type":13,"tag":66,"props":2686,"children":2687},{"style":114},[2688],{"type":18,"value":1582},{"type":13,"tag":66,"props":2690,"children":2691},{"style":73},[2692],{"type":18,"value":1587},{"type":13,"tag":66,"props":2694,"children":2695},{"style":114},[2696],{"type":18,"value":835},{"type":13,"tag":66,"props":2698,"children":2699},{"style":84},[2700],{"type":18,"value":1596},{"type":13,"tag":66,"props":2702,"children":2703},{"class":68,"line":794},[2704,2708,2712,2717,2721,2725,2729,2733],{"type":13,"tag":66,"props":2705,"children":2706},{"style":73},[2707],{"type":18,"value":1562},{"type":13,"tag":66,"props":2709,"children":2710},{"style":73},[2711],{"type":18,"value":1567},{"type":13,"tag":66,"props":2713,"children":2714},{"style":114},[2715],{"type":18,"value":2716}," ERROR_INCOMPATIBLE_DISPLAY_KHR",{"type":13,"tag":66,"props":2718,"children":2719},{"style":73},[2720],{"type":18,"value":1577},{"type":13,"tag":66,"props":2722,"children":2723},{"style":114},[2724],{"type":18,"value":1582},{"type":13,"tag":66,"props":2726,"children":2727},{"style":73},[2728],{"type":18,"value":1587},{"type":13,"tag":66,"props":2730,"children":2731},{"style":114},[2732],{"type":18,"value":787},{"type":13,"tag":66,"props":2734,"children":2735},{"style":84},[2736],{"type":18,"value":1596},{"type":13,"tag":66,"props":2738,"children":2739},{"class":68,"line":820},[2740,2744,2748,2753,2757,2761,2765,2769,2774,2779],{"type":13,"tag":66,"props":2741,"children":2742},{"style":73},[2743],{"type":18,"value":1562},{"type":13,"tag":66,"props":2745,"children":2746},{"style":73},[2747],{"type":18,"value":1567},{"type":13,"tag":66,"props":2749,"children":2750},{"style":114},[2751],{"type":18,"value":2752}," ERROR_VALIDATION_FAILED_EXT",{"type":13,"tag":66,"props":2754,"children":2755},{"style":73},[2756],{"type":18,"value":1577},{"type":13,"tag":66,"props":2758,"children":2759},{"style":114},[2760],{"type":18,"value":1582},{"type":13,"tag":66,"props":2762,"children":2763},{"style":73},[2764],{"type":18,"value":1587},{"type":13,"tag":66,"props":2766,"children":2767},{"style":114},[2768],{"type":18,"value":1582},{"type":13,"tag":66,"props":2770,"children":2771},{"style":73},[2772],{"type":18,"value":2773},"::",{"type":13,"tag":66,"props":2775,"children":2776},{"style":114},[2777],{"type":18,"value":2778},"ERROR_VALIDATION_FAILED",{"type":13,"tag":66,"props":2780,"children":2781},{"style":84},[2782],{"type":18,"value":1596},{"type":13,"tag":66,"props":2784,"children":2785},{"class":68,"line":842},[2786,2790,2794,2799,2803,2807,2811,2815],{"type":13,"tag":66,"props":2787,"children":2788},{"style":73},[2789],{"type":18,"value":1562},{"type":13,"tag":66,"props":2791,"children":2792},{"style":73},[2793],{"type":18,"value":1567},{"type":13,"tag":66,"props":2795,"children":2796},{"style":114},[2797],{"type":18,"value":2798}," ERROR_INVALID_SHADER_NV",{"type":13,"tag":66,"props":2800,"children":2801},{"style":73},[2802],{"type":18,"value":1577},{"type":13,"tag":66,"props":2804,"children":2805},{"style":114},[2806],{"type":18,"value":1582},{"type":13,"tag":66,"props":2808,"children":2809},{"style":73},[2810],{"type":18,"value":1587},{"type":13,"tag":66,"props":2812,"children":2813},{"style":114},[2814],{"type":18,"value":765},{"type":13,"tag":66,"props":2816,"children":2817},{"style":84},[2818],{"type":18,"value":1596},{"type":13,"tag":66,"props":2820,"children":2821},{"class":68,"line":863},[2822,2826,2830,2835,2839,2843,2847,2851],{"type":13,"tag":66,"props":2823,"children":2824},{"style":73},[2825],{"type":18,"value":1562},{"type":13,"tag":66,"props":2827,"children":2828},{"style":73},[2829],{"type":18,"value":1567},{"type":13,"tag":66,"props":2831,"children":2832},{"style":114},[2833],{"type":18,"value":2834}," ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":2836,"children":2837},{"style":73},[2838],{"type":18,"value":1577},{"type":13,"tag":66,"props":2840,"children":2841},{"style":114},[2842],{"type":18,"value":1582},{"type":13,"tag":66,"props":2844,"children":2845},{"style":73},[2846],{"type":18,"value":1587},{"type":13,"tag":66,"props":2848,"children":2849},{"style":114},[2850],{"type":18,"value":765},{"type":13,"tag":66,"props":2852,"children":2853},{"style":84},[2854],{"type":18,"value":1596},{"type":13,"tag":66,"props":2856,"children":2857},{"class":68,"line":881},[2858,2862,2866,2871,2875,2879,2883,2887],{"type":13,"tag":66,"props":2859,"children":2860},{"style":73},[2861],{"type":18,"value":1562},{"type":13,"tag":66,"props":2863,"children":2864},{"style":73},[2865],{"type":18,"value":1567},{"type":13,"tag":66,"props":2867,"children":2868},{"style":114},[2869],{"type":18,"value":2870}," ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":2872,"children":2873},{"style":73},[2874],{"type":18,"value":1577},{"type":13,"tag":66,"props":2876,"children":2877},{"style":114},[2878],{"type":18,"value":1582},{"type":13,"tag":66,"props":2880,"children":2881},{"style":73},[2882],{"type":18,"value":1587},{"type":13,"tag":66,"props":2884,"children":2885},{"style":114},[2886],{"type":18,"value":787},{"type":13,"tag":66,"props":2888,"children":2889},{"style":84},[2890],{"type":18,"value":1596},{"type":13,"tag":66,"props":2892,"children":2893},{"class":68,"line":902},[2894,2898,2902,2907,2911,2915,2919,2923],{"type":13,"tag":66,"props":2895,"children":2896},{"style":73},[2897],{"type":18,"value":1562},{"type":13,"tag":66,"props":2899,"children":2900},{"style":73},[2901],{"type":18,"value":1567},{"type":13,"tag":66,"props":2903,"children":2904},{"style":114},[2905],{"type":18,"value":2906}," ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":2908,"children":2909},{"style":73},[2910],{"type":18,"value":1577},{"type":13,"tag":66,"props":2912,"children":2913},{"style":114},[2914],{"type":18,"value":1582},{"type":13,"tag":66,"props":2916,"children":2917},{"style":73},[2918],{"type":18,"value":1587},{"type":13,"tag":66,"props":2920,"children":2921},{"style":114},[2922],{"type":18,"value":959},{"type":13,"tag":66,"props":2924,"children":2925},{"style":84},[2926],{"type":18,"value":1596},{"type":13,"tag":66,"props":2928,"children":2929},{"class":68,"line":923},[2930,2934,2938,2943,2947,2951,2955,2959],{"type":13,"tag":66,"props":2931,"children":2932},{"style":73},[2933],{"type":18,"value":1562},{"type":13,"tag":66,"props":2935,"children":2936},{"style":73},[2937],{"type":18,"value":1567},{"type":13,"tag":66,"props":2939,"children":2940},{"style":114},[2941],{"type":18,"value":2942}," ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":2944,"children":2945},{"style":73},[2946],{"type":18,"value":1577},{"type":13,"tag":66,"props":2948,"children":2949},{"style":114},[2950],{"type":18,"value":1582},{"type":13,"tag":66,"props":2952,"children":2953},{"style":73},[2954],{"type":18,"value":1587},{"type":13,"tag":66,"props":2956,"children":2957},{"style":114},[2958],{"type":18,"value":981},{"type":13,"tag":66,"props":2960,"children":2961},{"style":84},[2962],{"type":18,"value":1596},{"type":13,"tag":66,"props":2964,"children":2965},{"class":68,"line":944},[2966,2970,2974,2979,2983,2987,2991,2995],{"type":13,"tag":66,"props":2967,"children":2968},{"style":73},[2969],{"type":18,"value":1562},{"type":13,"tag":66,"props":2971,"children":2972},{"style":73},[2973],{"type":18,"value":1567},{"type":13,"tag":66,"props":2975,"children":2976},{"style":114},[2977],{"type":18,"value":2978}," ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":2980,"children":2981},{"style":73},[2982],{"type":18,"value":1577},{"type":13,"tag":66,"props":2984,"children":2985},{"style":114},[2986],{"type":18,"value":1582},{"type":13,"tag":66,"props":2988,"children":2989},{"style":73},[2990],{"type":18,"value":1587},{"type":13,"tag":66,"props":2992,"children":2993},{"style":114},[2994],{"type":18,"value":835},{"type":13,"tag":66,"props":2996,"children":2997},{"style":84},[2998],{"type":18,"value":1596},{"type":13,"tag":66,"props":3000,"children":3001},{"class":68,"line":966},[3002,3006,3010,3015,3019,3023,3027,3031],{"type":13,"tag":66,"props":3003,"children":3004},{"style":73},[3005],{"type":18,"value":1562},{"type":13,"tag":66,"props":3007,"children":3008},{"style":73},[3009],{"type":18,"value":1567},{"type":13,"tag":66,"props":3011,"children":3012},{"style":114},[3013],{"type":18,"value":3014}," ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR",{"type":13,"tag":66,"props":3016,"children":3017},{"style":73},[3018],{"type":18,"value":1577},{"type":13,"tag":66,"props":3020,"children":3021},{"style":114},[3022],{"type":18,"value":1582},{"type":13,"tag":66,"props":3024,"children":3025},{"style":73},[3026],{"type":18,"value":1587},{"type":13,"tag":66,"props":3028,"children":3029},{"style":114},[3030],{"type":18,"value":1024},{"type":13,"tag":66,"props":3032,"children":3033},{"style":84},[3034],{"type":18,"value":1596},{"type":13,"tag":66,"props":3036,"children":3037},{"class":68,"line":988},[3038,3042,3046,3051,3055,3059,3063,3067,3071,3076],{"type":13,"tag":66,"props":3039,"children":3040},{"style":73},[3041],{"type":18,"value":1562},{"type":13,"tag":66,"props":3043,"children":3044},{"style":73},[3045],{"type":18,"value":1567},{"type":13,"tag":66,"props":3047,"children":3048},{"style":114},[3049],{"type":18,"value":3050}," ERROR_OUT_OF_POOL_MEMORY_KHR",{"type":13,"tag":66,"props":3052,"children":3053},{"style":73},[3054],{"type":18,"value":1577},{"type":13,"tag":66,"props":3056,"children":3057},{"style":114},[3058],{"type":18,"value":1582},{"type":13,"tag":66,"props":3060,"children":3061},{"style":73},[3062],{"type":18,"value":1587},{"type":13,"tag":66,"props":3064,"children":3065},{"style":114},[3066],{"type":18,"value":1582},{"type":13,"tag":66,"props":3068,"children":3069},{"style":73},[3070],{"type":18,"value":2773},{"type":13,"tag":66,"props":3072,"children":3073},{"style":114},[3074],{"type":18,"value":3075},"ERROR_OUT_OF_POOL_MEMORY",{"type":13,"tag":66,"props":3077,"children":3078},{"style":84},[3079],{"type":18,"value":1596},{"type":13,"tag":66,"props":3081,"children":3082},{"class":68,"line":1009},[3083,3087,3091,3096,3100,3104,3108,3112,3116,3121],{"type":13,"tag":66,"props":3084,"children":3085},{"style":73},[3086],{"type":18,"value":1562},{"type":13,"tag":66,"props":3088,"children":3089},{"style":73},[3090],{"type":18,"value":1567},{"type":13,"tag":66,"props":3092,"children":3093},{"style":114},[3094],{"type":18,"value":3095}," ERROR_INVALID_EXTERNAL_HANDLE_KHR",{"type":13,"tag":66,"props":3097,"children":3098},{"style":73},[3099],{"type":18,"value":1577},{"type":13,"tag":66,"props":3101,"children":3102},{"style":114},[3103],{"type":18,"value":1582},{"type":13,"tag":66,"props":3105,"children":3106},{"style":73},[3107],{"type":18,"value":1587},{"type":13,"tag":66,"props":3109,"children":3110},{"style":114},[3111],{"type":18,"value":1582},{"type":13,"tag":66,"props":3113,"children":3114},{"style":73},[3115],{"type":18,"value":2773},{"type":13,"tag":66,"props":3117,"children":3118},{"style":114},[3119],{"type":18,"value":3120},"ERROR_INVALID_EXTERNAL_HANDLE",{"type":13,"tag":66,"props":3122,"children":3123},{"style":84},[3124],{"type":18,"value":1596},{"type":13,"tag":66,"props":3126,"children":3127},{"class":68,"line":1031},[3128,3132,3136,3141,3145,3149,3153,3157],{"type":13,"tag":66,"props":3129,"children":3130},{"style":73},[3131],{"type":18,"value":1562},{"type":13,"tag":66,"props":3133,"children":3134},{"style":73},[3135],{"type":18,"value":1567},{"type":13,"tag":66,"props":3137,"children":3138},{"style":114},[3139],{"type":18,"value":3140}," ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT",{"type":13,"tag":66,"props":3142,"children":3143},{"style":73},[3144],{"type":18,"value":1577},{"type":13,"tag":66,"props":3146,"children":3147},{"style":114},[3148],{"type":18,"value":1582},{"type":13,"tag":66,"props":3150,"children":3151},{"style":73},[3152],{"type":18,"value":1587},{"type":13,"tag":66,"props":3154,"children":3155},{"style":114},[3156],{"type":18,"value":765},{"type":13,"tag":66,"props":3158,"children":3159},{"style":84},[3160],{"type":18,"value":1596},{"type":13,"tag":66,"props":3162,"children":3163},{"class":68,"line":1049},[3164,3168,3172,3177,3181,3185,3189,3193,3197,3202],{"type":13,"tag":66,"props":3165,"children":3166},{"style":73},[3167],{"type":18,"value":1562},{"type":13,"tag":66,"props":3169,"children":3170},{"style":73},[3171],{"type":18,"value":1567},{"type":13,"tag":66,"props":3173,"children":3174},{"style":114},[3175],{"type":18,"value":3176}," ERROR_FRAGMENTATION_EXT",{"type":13,"tag":66,"props":3178,"children":3179},{"style":73},[3180],{"type":18,"value":1577},{"type":13,"tag":66,"props":3182,"children":3183},{"style":114},[3184],{"type":18,"value":1582},{"type":13,"tag":66,"props":3186,"children":3187},{"style":73},[3188],{"type":18,"value":1587},{"type":13,"tag":66,"props":3190,"children":3191},{"style":114},[3192],{"type":18,"value":1582},{"type":13,"tag":66,"props":3194,"children":3195},{"style":73},[3196],{"type":18,"value":2773},{"type":13,"tag":66,"props":3198,"children":3199},{"style":114},[3200],{"type":18,"value":3201},"ERROR_FRAGMENTATION",{"type":13,"tag":66,"props":3203,"children":3204},{"style":84},[3205],{"type":18,"value":1596},{"type":13,"tag":66,"props":3207,"children":3208},{"class":68,"line":1067},[3209,3213,3217,3222,3226,3230,3234,3238,3242,3247],{"type":13,"tag":66,"props":3210,"children":3211},{"style":73},[3212],{"type":18,"value":1562},{"type":13,"tag":66,"props":3214,"children":3215},{"style":73},[3216],{"type":18,"value":1567},{"type":13,"tag":66,"props":3218,"children":3219},{"style":114},[3220],{"type":18,"value":3221}," ERROR_NOT_PERMITTED_EXT",{"type":13,"tag":66,"props":3223,"children":3224},{"style":73},[3225],{"type":18,"value":1577},{"type":13,"tag":66,"props":3227,"children":3228},{"style":114},[3229],{"type":18,"value":1582},{"type":13,"tag":66,"props":3231,"children":3232},{"style":73},[3233],{"type":18,"value":1587},{"type":13,"tag":66,"props":3235,"children":3236},{"style":114},[3237],{"type":18,"value":1582},{"type":13,"tag":66,"props":3239,"children":3240},{"style":73},[3241],{"type":18,"value":2773},{"type":13,"tag":66,"props":3243,"children":3244},{"style":114},[3245],{"type":18,"value":3246},"ERROR_NOT_PERMITTED",{"type":13,"tag":66,"props":3248,"children":3249},{"style":84},[3250],{"type":18,"value":1596},{"type":13,"tag":66,"props":3252,"children":3253},{"class":68,"line":1088},[3254,3258,3262,3267,3271,3275,3279,3283,3287,3291],{"type":13,"tag":66,"props":3255,"children":3256},{"style":73},[3257],{"type":18,"value":1562},{"type":13,"tag":66,"props":3259,"children":3260},{"style":73},[3261],{"type":18,"value":1567},{"type":13,"tag":66,"props":3263,"children":3264},{"style":114},[3265],{"type":18,"value":3266}," ERROR_NOT_PERMITTED_KHR",{"type":13,"tag":66,"props":3268,"children":3269},{"style":73},[3270],{"type":18,"value":1577},{"type":13,"tag":66,"props":3272,"children":3273},{"style":114},[3274],{"type":18,"value":1582},{"type":13,"tag":66,"props":3276,"children":3277},{"style":73},[3278],{"type":18,"value":1587},{"type":13,"tag":66,"props":3280,"children":3281},{"style":114},[3282],{"type":18,"value":1582},{"type":13,"tag":66,"props":3284,"children":3285},{"style":73},[3286],{"type":18,"value":2773},{"type":13,"tag":66,"props":3288,"children":3289},{"style":114},[3290],{"type":18,"value":3246},{"type":13,"tag":66,"props":3292,"children":3293},{"style":84},[3294],{"type":18,"value":1596},{"type":13,"tag":66,"props":3296,"children":3297},{"class":68,"line":1106},[3298,3302,3306,3311,3315,3319,3323,3327],{"type":13,"tag":66,"props":3299,"children":3300},{"style":73},[3301],{"type":18,"value":1562},{"type":13,"tag":66,"props":3303,"children":3304},{"style":73},[3305],{"type":18,"value":1567},{"type":13,"tag":66,"props":3307,"children":3308},{"style":114},[3309],{"type":18,"value":3310}," ERROR_PRESENT_TIMING_QUEUE_FULL_EXT",{"type":13,"tag":66,"props":3312,"children":3313},{"style":73},[3314],{"type":18,"value":1577},{"type":13,"tag":66,"props":3316,"children":3317},{"style":114},[3318],{"type":18,"value":1582},{"type":13,"tag":66,"props":3320,"children":3321},{"style":73},[3322],{"type":18,"value":1587},{"type":13,"tag":66,"props":3324,"children":3325},{"style":114},[3326],{"type":18,"value":765},{"type":13,"tag":66,"props":3328,"children":3329},{"style":84},[3330],{"type":18,"value":1596},{"type":13,"tag":66,"props":3332,"children":3333},{"class":68,"line":1124},[3334,3338,3342,3347,3351,3355,3359,3363,3367,3372],{"type":13,"tag":66,"props":3335,"children":3336},{"style":73},[3337],{"type":18,"value":1562},{"type":13,"tag":66,"props":3339,"children":3340},{"style":73},[3341],{"type":18,"value":1567},{"type":13,"tag":66,"props":3343,"children":3344},{"style":114},[3345],{"type":18,"value":3346}," ERROR_INVALID_DEVICE_ADDRESS_EXT",{"type":13,"tag":66,"props":3348,"children":3349},{"style":73},[3350],{"type":18,"value":1577},{"type":13,"tag":66,"props":3352,"children":3353},{"style":114},[3354],{"type":18,"value":1582},{"type":13,"tag":66,"props":3356,"children":3357},{"style":73},[3358],{"type":18,"value":1587},{"type":13,"tag":66,"props":3360,"children":3361},{"style":114},[3362],{"type":18,"value":1582},{"type":13,"tag":66,"props":3364,"children":3365},{"style":73},[3366],{"type":18,"value":2773},{"type":13,"tag":66,"props":3368,"children":3369},{"style":114},[3370],{"type":18,"value":3371},"ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS",{"type":13,"tag":66,"props":3373,"children":3374},{"style":84},[3375],{"type":18,"value":1596},{"type":13,"tag":66,"props":3377,"children":3378},{"class":68,"line":1141},[3379,3383,3387,3392,3396,3400,3404,3408],{"type":13,"tag":66,"props":3380,"children":3381},{"style":73},[3382],{"type":18,"value":1562},{"type":13,"tag":66,"props":3384,"children":3385},{"style":73},[3386],{"type":18,"value":1567},{"type":13,"tag":66,"props":3388,"children":3389},{"style":114},[3390],{"type":18,"value":3391}," ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT",{"type":13,"tag":66,"props":3393,"children":3394},{"style":73},[3395],{"type":18,"value":1577},{"type":13,"tag":66,"props":3397,"children":3398},{"style":114},[3399],{"type":18,"value":1582},{"type":13,"tag":66,"props":3401,"children":3402},{"style":73},[3403],{"type":18,"value":1587},{"type":13,"tag":66,"props":3405,"children":3406},{"style":114},[3407],{"type":18,"value":765},{"type":13,"tag":66,"props":3409,"children":3410},{"style":84},[3411],{"type":18,"value":1596},{"type":13,"tag":66,"props":3413,"children":3414},{"class":68,"line":1162},[3415,3419,3423,3428,3432,3436,3440,3444,3448,3452],{"type":13,"tag":66,"props":3416,"children":3417},{"style":73},[3418],{"type":18,"value":1562},{"type":13,"tag":66,"props":3420,"children":3421},{"style":73},[3422],{"type":18,"value":1567},{"type":13,"tag":66,"props":3424,"children":3425},{"style":114},[3426],{"type":18,"value":3427}," ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR",{"type":13,"tag":66,"props":3429,"children":3430},{"style":73},[3431],{"type":18,"value":1577},{"type":13,"tag":66,"props":3433,"children":3434},{"style":114},[3435],{"type":18,"value":1582},{"type":13,"tag":66,"props":3437,"children":3438},{"style":73},[3439],{"type":18,"value":1587},{"type":13,"tag":66,"props":3441,"children":3442},{"style":114},[3443],{"type":18,"value":1582},{"type":13,"tag":66,"props":3445,"children":3446},{"style":73},[3447],{"type":18,"value":2773},{"type":13,"tag":66,"props":3449,"children":3450},{"style":114},[3451],{"type":18,"value":3371},{"type":13,"tag":66,"props":3453,"children":3454},{"style":84},[3455],{"type":18,"value":1596},{"type":13,"tag":66,"props":3457,"children":3458},{"class":68,"line":1180},[3459,3463,3467,3472,3476,3480,3484,3488,3492],{"type":13,"tag":66,"props":3460,"children":3461},{"style":73},[3462],{"type":18,"value":1562},{"type":13,"tag":66,"props":3464,"children":3465},{"style":73},[3466],{"type":18,"value":1567},{"type":13,"tag":66,"props":3468,"children":3469},{"style":114},[3470],{"type":18,"value":3471}," THREAD_IDLE_KHR",{"type":13,"tag":66,"props":3473,"children":3474},{"style":73},[3475],{"type":18,"value":1577},{"type":13,"tag":66,"props":3477,"children":3478},{"style":114},[3479],{"type":18,"value":1582},{"type":13,"tag":66,"props":3481,"children":3482},{"style":73},[3483],{"type":18,"value":1587},{"type":13,"tag":66,"props":3485,"children":3486},{"style":73},[3487],{"type":18,"value":259},{"type":13,"tag":66,"props":3489,"children":3490},{"style":114},[3491],{"type":18,"value":1237},{"type":13,"tag":66,"props":3493,"children":3494},{"style":84},[3495],{"type":18,"value":1596},{"type":13,"tag":66,"props":3497,"children":3498},{"class":68,"line":1201},[3499,3503,3507,3512,3516,3520,3524,3528,3532],{"type":13,"tag":66,"props":3500,"children":3501},{"style":73},[3502],{"type":18,"value":1562},{"type":13,"tag":66,"props":3504,"children":3505},{"style":73},[3506],{"type":18,"value":1567},{"type":13,"tag":66,"props":3508,"children":3509},{"style":114},[3510],{"type":18,"value":3511}," THREAD_DONE_KHR",{"type":13,"tag":66,"props":3513,"children":3514},{"style":73},[3515],{"type":18,"value":1577},{"type":13,"tag":66,"props":3517,"children":3518},{"style":114},[3519],{"type":18,"value":1582},{"type":13,"tag":66,"props":3521,"children":3522},{"style":73},[3523],{"type":18,"value":1587},{"type":13,"tag":66,"props":3525,"children":3526},{"style":73},[3527],{"type":18,"value":259},{"type":13,"tag":66,"props":3529,"children":3530},{"style":114},[3531],{"type":18,"value":1263},{"type":13,"tag":66,"props":3533,"children":3534},{"style":84},[3535],{"type":18,"value":1596},{"type":13,"tag":66,"props":3537,"children":3538},{"class":68,"line":1218},[3539,3543,3547,3552,3556,3560,3564,3568,3572],{"type":13,"tag":66,"props":3540,"children":3541},{"style":73},[3542],{"type":18,"value":1562},{"type":13,"tag":66,"props":3544,"children":3545},{"style":73},[3546],{"type":18,"value":1567},{"type":13,"tag":66,"props":3548,"children":3549},{"style":114},[3550],{"type":18,"value":3551}," OPERATION_DEFERRED_KHR",{"type":13,"tag":66,"props":3553,"children":3554},{"style":73},[3555],{"type":18,"value":1577},{"type":13,"tag":66,"props":3557,"children":3558},{"style":114},[3559],{"type":18,"value":1582},{"type":13,"tag":66,"props":3561,"children":3562},{"style":73},[3563],{"type":18,"value":1587},{"type":13,"tag":66,"props":3565,"children":3566},{"style":73},[3567],{"type":18,"value":259},{"type":13,"tag":66,"props":3569,"children":3570},{"style":114},[3571],{"type":18,"value":1289},{"type":13,"tag":66,"props":3573,"children":3574},{"style":84},[3575],{"type":18,"value":1596},{"type":13,"tag":66,"props":3577,"children":3578},{"class":68,"line":1244},[3579,3583,3587,3592,3596,3600,3604,3608,3612],{"type":13,"tag":66,"props":3580,"children":3581},{"style":73},[3582],{"type":18,"value":1562},{"type":13,"tag":66,"props":3584,"children":3585},{"style":73},[3586],{"type":18,"value":1567},{"type":13,"tag":66,"props":3588,"children":3589},{"style":114},[3590],{"type":18,"value":3591}," OPERATION_NOT_DEFERRED_KHR",{"type":13,"tag":66,"props":3593,"children":3594},{"style":73},[3595],{"type":18,"value":1577},{"type":13,"tag":66,"props":3597,"children":3598},{"style":114},[3599],{"type":18,"value":1582},{"type":13,"tag":66,"props":3601,"children":3602},{"style":73},[3603],{"type":18,"value":1587},{"type":13,"tag":66,"props":3605,"children":3606},{"style":73},[3607],{"type":18,"value":259},{"type":13,"tag":66,"props":3609,"children":3610},{"style":114},[3611],{"type":18,"value":813},{"type":13,"tag":66,"props":3613,"children":3614},{"style":84},[3615],{"type":18,"value":1596},{"type":13,"tag":66,"props":3617,"children":3618},{"class":68,"line":1270},[3619,3623,3627,3632,3636,3640,3644,3648,3652,3657],{"type":13,"tag":66,"props":3620,"children":3621},{"style":73},[3622],{"type":18,"value":1562},{"type":13,"tag":66,"props":3624,"children":3625},{"style":73},[3626],{"type":18,"value":1567},{"type":13,"tag":66,"props":3628,"children":3629},{"style":114},[3630],{"type":18,"value":3631}," PIPELINE_COMPILE_REQUIRED_EXT",{"type":13,"tag":66,"props":3633,"children":3634},{"style":73},[3635],{"type":18,"value":1577},{"type":13,"tag":66,"props":3637,"children":3638},{"style":114},[3639],{"type":18,"value":1582},{"type":13,"tag":66,"props":3641,"children":3642},{"style":73},[3643],{"type":18,"value":1587},{"type":13,"tag":66,"props":3645,"children":3646},{"style":114},[3647],{"type":18,"value":1582},{"type":13,"tag":66,"props":3649,"children":3650},{"style":73},[3651],{"type":18,"value":2773},{"type":13,"tag":66,"props":3653,"children":3654},{"style":114},[3655],{"type":18,"value":3656},"PIPELINE_COMPILE_REQUIRED",{"type":13,"tag":66,"props":3658,"children":3659},{"style":84},[3660],{"type":18,"value":1596},{"type":13,"tag":66,"props":3662,"children":3663},{"class":68,"line":1296},[3664,3668,3672,3677,3681,3685,3689,3693,3697,3701],{"type":13,"tag":66,"props":3665,"children":3666},{"style":73},[3667],{"type":18,"value":1562},{"type":13,"tag":66,"props":3669,"children":3670},{"style":73},[3671],{"type":18,"value":1567},{"type":13,"tag":66,"props":3673,"children":3674},{"style":114},[3675],{"type":18,"value":3676}," ERROR_PIPELINE_COMPILE_REQUIRED_EXT",{"type":13,"tag":66,"props":3678,"children":3679},{"style":73},[3680],{"type":18,"value":1577},{"type":13,"tag":66,"props":3682,"children":3683},{"style":114},[3684],{"type":18,"value":1582},{"type":13,"tag":66,"props":3686,"children":3687},{"style":73},[3688],{"type":18,"value":1587},{"type":13,"tag":66,"props":3690,"children":3691},{"style":114},[3692],{"type":18,"value":1582},{"type":13,"tag":66,"props":3694,"children":3695},{"style":73},[3696],{"type":18,"value":2773},{"type":13,"tag":66,"props":3698,"children":3699},{"style":114},[3700],{"type":18,"value":3656},{"type":13,"tag":66,"props":3702,"children":3703},{"style":84},[3704],{"type":18,"value":1596},{"type":13,"tag":66,"props":3706,"children":3707},{"class":68,"line":1321},[3708,3712,3716,3721,3725,3729,3733,3737],{"type":13,"tag":66,"props":3709,"children":3710},{"style":73},[3711],{"type":18,"value":1562},{"type":13,"tag":66,"props":3713,"children":3714},{"style":73},[3715],{"type":18,"value":1567},{"type":13,"tag":66,"props":3717,"children":3718},{"style":114},[3719],{"type":18,"value":3720}," ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR",{"type":13,"tag":66,"props":3722,"children":3723},{"style":73},[3724],{"type":18,"value":1577},{"type":13,"tag":66,"props":3726,"children":3727},{"style":114},[3728],{"type":18,"value":1582},{"type":13,"tag":66,"props":3730,"children":3731},{"style":73},[3732],{"type":18,"value":1587},{"type":13,"tag":66,"props":3734,"children":3735},{"style":114},[3736],{"type":18,"value":765},{"type":13,"tag":66,"props":3738,"children":3739},{"style":84},[3740],{"type":18,"value":1596},{"type":13,"tag":66,"props":3742,"children":3743},{"class":68,"line":1339},[3744,3748,3752,3757,3761,3765,3769,3773],{"type":13,"tag":66,"props":3745,"children":3746},{"style":73},[3747],{"type":18,"value":1562},{"type":13,"tag":66,"props":3749,"children":3750},{"style":73},[3751],{"type":18,"value":1567},{"type":13,"tag":66,"props":3753,"children":3754},{"style":114},[3755],{"type":18,"value":3756}," ERROR_COMPRESSION_EXHAUSTED_EXT",{"type":13,"tag":66,"props":3758,"children":3759},{"style":73},[3760],{"type":18,"value":1577},{"type":13,"tag":66,"props":3762,"children":3763},{"style":114},[3764],{"type":18,"value":1582},{"type":13,"tag":66,"props":3766,"children":3767},{"style":73},[3768],{"type":18,"value":1587},{"type":13,"tag":66,"props":3770,"children":3771},{"style":114},[3772],{"type":18,"value":765},{"type":13,"tag":66,"props":3774,"children":3775},{"style":84},[3776],{"type":18,"value":1596},{"type":13,"tag":66,"props":3778,"children":3779},{"class":68,"line":1356},[3780,3784,3788,3793,3797,3801,3805,3809,3813],{"type":13,"tag":66,"props":3781,"children":3782},{"style":73},[3783],{"type":18,"value":1562},{"type":13,"tag":66,"props":3785,"children":3786},{"style":73},[3787],{"type":18,"value":1567},{"type":13,"tag":66,"props":3789,"children":3790},{"style":114},[3791],{"type":18,"value":3792}," INCOMPATIBLE_SHADER_BINARY_EXT",{"type":13,"tag":66,"props":3794,"children":3795},{"style":73},[3796],{"type":18,"value":1577},{"type":13,"tag":66,"props":3798,"children":3799},{"style":114},[3800],{"type":18,"value":1582},{"type":13,"tag":66,"props":3802,"children":3803},{"style":73},[3804],{"type":18,"value":1587},{"type":13,"tag":66,"props":3806,"children":3807},{"style":73},[3808],{"type":18,"value":259},{"type":13,"tag":66,"props":3810,"children":3811},{"style":114},[3812],{"type":18,"value":1237},{"type":13,"tag":66,"props":3814,"children":3815},{"style":84},[3816],{"type":18,"value":1596},{"type":13,"tag":66,"props":3818,"children":3819},{"class":68,"line":1377},[3820,3824,3828,3833,3837,3841,3845,3849,3853],{"type":13,"tag":66,"props":3821,"children":3822},{"style":73},[3823],{"type":18,"value":1562},{"type":13,"tag":66,"props":3825,"children":3826},{"style":73},[3827],{"type":18,"value":1567},{"type":13,"tag":66,"props":3829,"children":3830},{"style":114},[3831],{"type":18,"value":3832}," PIPELINE_BINARY_MISSING_KHR",{"type":13,"tag":66,"props":3834,"children":3835},{"style":73},[3836],{"type":18,"value":1577},{"type":13,"tag":66,"props":3838,"children":3839},{"style":114},[3840],{"type":18,"value":1582},{"type":13,"tag":66,"props":3842,"children":3843},{"style":73},[3844],{"type":18,"value":1587},{"type":13,"tag":66,"props":3846,"children":3847},{"style":73},[3848],{"type":18,"value":259},{"type":13,"tag":66,"props":3850,"children":3851},{"style":114},[3852],{"type":18,"value":1237},{"type":13,"tag":66,"props":3854,"children":3855},{"style":84},[3856],{"type":18,"value":1596},{"type":13,"tag":66,"props":3858,"children":3859},{"class":68,"line":1398},[3860,3864,3868,3873,3877,3881,3885,3889],{"type":13,"tag":66,"props":3861,"children":3862},{"style":73},[3863],{"type":18,"value":1562},{"type":13,"tag":66,"props":3865,"children":3866},{"style":73},[3867],{"type":18,"value":1567},{"type":13,"tag":66,"props":3869,"children":3870},{"style":114},[3871],{"type":18,"value":3872}," ERROR_NOT_ENOUGH_SPACE_KHR",{"type":13,"tag":66,"props":3874,"children":3875},{"style":73},[3876],{"type":18,"value":1577},{"type":13,"tag":66,"props":3878,"children":3879},{"style":114},[3880],{"type":18,"value":1582},{"type":13,"tag":66,"props":3882,"children":3883},{"style":73},[3884],{"type":18,"value":1587},{"type":13,"tag":66,"props":3886,"children":3887},{"style":114},[3888],{"type":18,"value":765},{"type":13,"tag":66,"props":3890,"children":3891},{"style":84},[3892],{"type":18,"value":1596},{"type":13,"tag":66,"props":3894,"children":3895},{"class":68,"line":1423},[3896],{"type":13,"tag":66,"props":3897,"children":3898},{"style":84},[3899],{"type":18,"value":3900},"}\n",{"type":13,"tag":21,"props":3902,"children":3903},{},[3904,3915,3926,3937,3948,3959,3970,3988,3999,4010,4021,4032,4043,4054,4090,4101,4112,4123,4140,4151,4162,4173,4184,4195,4206,4217,4248,4259,4270,4286,4297,4316,4343,4354,4365,4376,4387,4412,4431,4447,4463,4482,4493,4519,4536,4553,4564,4575,4594,4605],{"type":13,"tag":25,"props":3905,"children":3906},{},[3907,3913],{"type":13,"tag":62,"props":3908,"children":3910},{"className":3909},[],[3911],{"type":18,"value":3912},"VK_SUCCESS",{"type":18,"value":3914}," Command successfully completed",{"type":13,"tag":25,"props":3916,"children":3917},{},[3918,3924],{"type":13,"tag":62,"props":3919,"children":3921},{"className":3920},[],[3922],{"type":18,"value":3923},"VK_NOT_READY",{"type":18,"value":3925}," A fence or query has not yet completed",{"type":13,"tag":25,"props":3927,"children":3928},{},[3929,3935],{"type":13,"tag":62,"props":3930,"children":3932},{"className":3931},[],[3933],{"type":18,"value":3934},"VK_TIMEOUT",{"type":18,"value":3936}," A wait operation has not completed in the specified\ntime",{"type":13,"tag":25,"props":3938,"children":3939},{},[3940,3946],{"type":13,"tag":62,"props":3941,"children":3943},{"className":3942},[],[3944],{"type":18,"value":3945},"VK_EVENT_SET",{"type":18,"value":3947}," An event is signaled",{"type":13,"tag":25,"props":3949,"children":3950},{},[3951,3957],{"type":13,"tag":62,"props":3952,"children":3954},{"className":3953},[],[3955],{"type":18,"value":3956},"VK_EVENT_RESET",{"type":18,"value":3958}," An event is unsignaled",{"type":13,"tag":25,"props":3960,"children":3961},{},[3962,3968],{"type":13,"tag":62,"props":3963,"children":3965},{"className":3964},[],[3966],{"type":18,"value":3967},"VK_INCOMPLETE",{"type":18,"value":3969}," A return array was too small for the result",{"type":13,"tag":25,"props":3971,"children":3972},{},[3973,3979,3981,3986],{"type":13,"tag":62,"props":3974,"children":3976},{"className":3975},[],[3977],{"type":18,"value":3978},"VK_SUBOPTIMAL_KHR",{"type":18,"value":3980}," A swapchain no longer matches the surface\nproperties exactly, but ",{"type":13,"tag":3982,"props":3983,"children":3985},"normative",{"type":3984},"can",[],{"type":18,"value":3987}," still be used to present to the surface\nsuccessfully.",{"type":13,"tag":25,"props":3989,"children":3990},{},[3991,3997],{"type":13,"tag":62,"props":3992,"children":3994},{"className":3993},[],[3995],{"type":18,"value":3996},"VK_THREAD_IDLE_KHR",{"type":18,"value":3998}," A deferred operation is not complete but there\nis currently no work for this thread to do at the time of this call.",{"type":13,"tag":25,"props":4000,"children":4001},{},[4002,4008],{"type":13,"tag":62,"props":4003,"children":4005},{"className":4004},[],[4006],{"type":18,"value":4007},"VK_THREAD_DONE_KHR",{"type":18,"value":4009}," A deferred operation is not complete but there\nis no work remaining to assign to additional threads.",{"type":13,"tag":25,"props":4011,"children":4012},{},[4013,4019],{"type":13,"tag":62,"props":4014,"children":4016},{"className":4015},[],[4017],{"type":18,"value":4018},"VK_OPERATION_DEFERRED_KHR",{"type":18,"value":4020}," A deferred operation was requested and\nat least some of the work was deferred.",{"type":13,"tag":25,"props":4022,"children":4023},{},[4024,4030],{"type":13,"tag":62,"props":4025,"children":4027},{"className":4026},[],[4028],{"type":18,"value":4029},"VK_OPERATION_NOT_DEFERRED_KHR",{"type":18,"value":4031}," A deferred operation was requested\nand no operations were deferred.",{"type":13,"tag":25,"props":4033,"children":4034},{},[4035,4041],{"type":13,"tag":62,"props":4036,"children":4038},{"className":4037},[],[4039],{"type":18,"value":4040},"VK_PIPELINE_COMPILE_REQUIRED",{"type":18,"value":4042}," A requested pipeline creation would\nhave required compilation, but the application requested compilation to\nnot be performed.",{"type":13,"tag":25,"props":4044,"children":4045},{},[4046,4052],{"type":13,"tag":62,"props":4047,"children":4049},{"className":4048},[],[4050],{"type":18,"value":4051},"VK_PIPELINE_BINARY_MISSING_KHR",{"type":18,"value":4053}," The application attempted to create\na pipeline binary by querying an internal cache, but the internal cache\nentry did not exist.",{"type":13,"tag":25,"props":4055,"children":4056},{},[4057,4063,4065],{"type":13,"tag":62,"props":4058,"children":4060},{"className":4059},[],[4061],{"type":18,"value":4062},"VK_INCOMPATIBLE_SHADER_BINARY_EXT",{"type":18,"value":4064}," The provided binary shader code\nis not compatible with this device.",{"type":13,"tag":4066,"props":4067,"children":4068},"note",{},[4069],{"type":13,"tag":14,"props":4070,"children":4071},{},[4072,4074,4080,4082,4088],{"type":18,"value":4073},"In the initial version of the ",{"type":13,"tag":41,"props":4075,"children":4077},{"href":4076},"/extensions/VK_EXT_shader_object",[4078],{"type":18,"value":4079},"VK_EXT_shader_object",{"type":18,"value":4081}," extension, this\nreturn code was named ",{"type":13,"tag":62,"props":4083,"children":4085},{"className":4084},[],[4086],{"type":18,"value":4087},"VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT",{"type":18,"value":4089}," and\nimproperly described as an error code.\nThe name has been changed, but the old name is retained as an alias for\ncompatibility with old code.",{"type":13,"tag":25,"props":4091,"children":4092},{},[4093,4099],{"type":13,"tag":62,"props":4094,"children":4096},{"className":4095},[],[4097],{"type":18,"value":4098},"VK_ERROR_OUT_OF_HOST_MEMORY",{"type":18,"value":4100}," A host memory allocation has failed.",{"type":13,"tag":25,"props":4102,"children":4103},{},[4104,4110],{"type":13,"tag":62,"props":4105,"children":4107},{"className":4106},[],[4108],{"type":18,"value":4109},"VK_ERROR_OUT_OF_DEVICE_MEMORY",{"type":18,"value":4111}," A device memory allocation has\nfailed.",{"type":13,"tag":25,"props":4113,"children":4114},{},[4115,4121],{"type":13,"tag":62,"props":4116,"children":4118},{"className":4117},[],[4119],{"type":18,"value":4120},"VK_ERROR_INITIALIZATION_FAILED",{"type":18,"value":4122}," Initialization of an object could\nnot be completed for implementation-specific reasons.",{"type":13,"tag":25,"props":4124,"children":4125},{},[4126,4132,4134],{"type":13,"tag":62,"props":4127,"children":4129},{"className":4128},[],[4130],{"type":18,"value":4131},"VK_ERROR_DEVICE_LOST",{"type":18,"value":4133}," The logical or physical device has been lost.\nSee ",{"type":13,"tag":41,"props":4135,"children":4137},{"href":4136},"/chapters/devsandqueues#devsandqueues-lost-device",[4138],{"type":18,"value":4139},"Lost Device",{"type":13,"tag":25,"props":4141,"children":4142},{},[4143,4149],{"type":13,"tag":62,"props":4144,"children":4146},{"className":4145},[],[4147],{"type":18,"value":4148},"VK_ERROR_MEMORY_MAP_FAILED",{"type":18,"value":4150}," Mapping of a memory object has failed.",{"type":13,"tag":25,"props":4152,"children":4153},{},[4154,4160],{"type":13,"tag":62,"props":4155,"children":4157},{"className":4156},[],[4158],{"type":18,"value":4159},"VK_ERROR_LAYER_NOT_PRESENT",{"type":18,"value":4161}," A requested layer is not present or\ncould not be loaded.",{"type":13,"tag":25,"props":4163,"children":4164},{},[4165,4171],{"type":13,"tag":62,"props":4166,"children":4168},{"className":4167},[],[4169],{"type":18,"value":4170},"VK_ERROR_EXTENSION_NOT_PRESENT",{"type":18,"value":4172}," A requested extension is not\nsupported.",{"type":13,"tag":25,"props":4174,"children":4175},{},[4176,4182],{"type":13,"tag":62,"props":4177,"children":4179},{"className":4178},[],[4180],{"type":18,"value":4181},"VK_ERROR_FEATURE_NOT_PRESENT",{"type":18,"value":4183}," A requested feature is not supported.",{"type":13,"tag":25,"props":4185,"children":4186},{},[4187,4193],{"type":13,"tag":62,"props":4188,"children":4190},{"className":4189},[],[4191],{"type":18,"value":4192},"VK_ERROR_INCOMPATIBLE_DRIVER",{"type":18,"value":4194}," The requested version of Vulkan is\nnot supported by the driver or is otherwise incompatible for\nimplementation-specific reasons.",{"type":13,"tag":25,"props":4196,"children":4197},{},[4198,4204],{"type":13,"tag":62,"props":4199,"children":4201},{"className":4200},[],[4202],{"type":18,"value":4203},"VK_ERROR_TOO_MANY_OBJECTS",{"type":18,"value":4205}," Too many objects of the type have\nalready been created.",{"type":13,"tag":25,"props":4207,"children":4208},{},[4209,4215],{"type":13,"tag":62,"props":4210,"children":4212},{"className":4211},[],[4213],{"type":18,"value":4214},"VK_ERROR_FORMAT_NOT_SUPPORTED",{"type":18,"value":4216}," A requested format is not supported\non this device.",{"type":13,"tag":25,"props":4218,"children":4219},{},[4220,4226,4228,4232,4234,4238,4240,4246],{"type":13,"tag":62,"props":4221,"children":4223},{"className":4222},[],[4224],{"type":18,"value":4225},"VK_ERROR_FRAGMENTED_POOL",{"type":18,"value":4227}," A pool allocation has failed due to\nfragmentation of the pool’s memory.\nThis ",{"type":13,"tag":3982,"props":4229,"children":4231},{"type":4230},"must",[],{"type":18,"value":4233}," only be returned if no attempt to allocate host or device\nmemory was made to accommodate the new allocation.\nThis ",{"type":13,"tag":3982,"props":4235,"children":4237},{"type":4236},"should",[],{"type":18,"value":4239}," be returned in preference to\n",{"type":13,"tag":62,"props":4241,"children":4243},{"className":4242},[],[4244],{"type":18,"value":4245},"VK_ERROR_OUT_OF_POOL_MEMORY",{"type":18,"value":4247},", but only if the implementation is\ncertain that the pool allocation failure was due to fragmentation.",{"type":13,"tag":25,"props":4249,"children":4250},{},[4251,4257],{"type":13,"tag":62,"props":4252,"children":4254},{"className":4253},[],[4255],{"type":18,"value":4256},"VK_ERROR_SURFACE_LOST_KHR",{"type":18,"value":4258}," A surface is no longer available.",{"type":13,"tag":25,"props":4260,"children":4261},{},[4262,4268],{"type":13,"tag":62,"props":4263,"children":4265},{"className":4264},[],[4266],{"type":18,"value":4267},"VK_ERROR_NATIVE_WINDOW_IN_USE_KHR",{"type":18,"value":4269}," The requested window is already\nin use by Vulkan or another API in a manner which prevents it from being\nused again.",{"type":13,"tag":25,"props":4271,"children":4272},{},[4273,4279,4281,4284],{"type":13,"tag":62,"props":4274,"children":4276},{"className":4275},[],[4277],{"type":18,"value":4278},"VK_ERROR_OUT_OF_DATE_KHR",{"type":18,"value":4280}," A surface has changed in such a way that\nit is no longer compatible with the swapchain, and further presentation\nrequests using the swapchain will fail.\nApplications ",{"type":13,"tag":3982,"props":4282,"children":4283},{"type":4230},[],{"type":18,"value":4285}," query the new surface properties and recreate their\nswapchain if they wish to continue presenting to the surface.",{"type":13,"tag":25,"props":4287,"children":4288},{},[4289,4295],{"type":13,"tag":62,"props":4290,"children":4292},{"className":4291},[],[4293],{"type":18,"value":4294},"VK_ERROR_INCOMPATIBLE_DISPLAY_KHR",{"type":18,"value":4296}," The display used by a swapchain\ndoes not use the same presentable image layout, or is incompatible in a\nway that prevents sharing an image.",{"type":13,"tag":25,"props":4298,"children":4299},{},[4300,4306,4308,4314],{"type":13,"tag":62,"props":4301,"children":4303},{"className":4302},[],[4304],{"type":18,"value":4305},"VK_ERROR_INVALID_SHADER_NV",{"type":18,"value":4307}," One or more shaders failed to compile\nor link.\nMore details are reported back to the application via\n",{"type":13,"tag":41,"props":4309,"children":4311},{"href":4310},"/extensions/VK_EXT_debug_report",[4312],{"type":18,"value":4313},"VK_EXT_debug_report",{"type":18,"value":4315}," if enabled.",{"type":13,"tag":25,"props":4317,"children":4318},{},[4319,4324,4326,4329,4331,4336,4338,4341],{"type":13,"tag":62,"props":4320,"children":4322},{"className":4321},[],[4323],{"type":18,"value":4245},{"type":18,"value":4325}," A pool memory allocation has failed.\nThis ",{"type":13,"tag":3982,"props":4327,"children":4328},{"type":4230},[],{"type":18,"value":4330}," only be returned if no attempt to allocate host or device\nmemory was made to accommodate the new allocation.\nIf the failure was definitely due to fragmentation of the pool,\n",{"type":13,"tag":62,"props":4332,"children":4334},{"className":4333},[],[4335],{"type":18,"value":4225},{"type":18,"value":4337}," ",{"type":13,"tag":3982,"props":4339,"children":4340},{"type":4236},[],{"type":18,"value":4342}," be returned instead.",{"type":13,"tag":25,"props":4344,"children":4345},{},[4346,4352],{"type":13,"tag":62,"props":4347,"children":4349},{"className":4348},[],[4350],{"type":18,"value":4351},"VK_ERROR_INVALID_EXTERNAL_HANDLE",{"type":18,"value":4353}," An external handle is not a valid\nhandle of the specified type.",{"type":13,"tag":25,"props":4355,"children":4356},{},[4357,4363],{"type":13,"tag":62,"props":4358,"children":4360},{"className":4359},[],[4361],{"type":18,"value":4362},"VK_ERROR_FRAGMENTATION",{"type":18,"value":4364}," A descriptor pool creation has failed due\nto fragmentation.",{"type":13,"tag":25,"props":4366,"children":4367},{},[4368,4374],{"type":13,"tag":62,"props":4369,"children":4371},{"className":4370},[],[4372],{"type":18,"value":4373},"VK_ERROR_INVALID_DEVICE_ADDRESS_EXT",{"type":18,"value":4375}," A buffer creation failed\nbecause the requested address is not available.",{"type":13,"tag":25,"props":4377,"children":4378},{},[4379,4385],{"type":13,"tag":62,"props":4380,"children":4382},{"className":4381},[],[4383],{"type":18,"value":4384},"VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS",{"type":18,"value":4386}," A buffer creation\nor memory allocation\nfailed because the requested address is not available.\nA shader group handle assignment failed because the requested shader\ngroup handle information is no longer valid.",{"type":13,"tag":25,"props":4388,"children":4389},{},[4390,4396,4398,4404,4406,4410],{"type":13,"tag":62,"props":4391,"children":4393},{"className":4392},[],[4394],{"type":18,"value":4395},"VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT",{"type":18,"value":4397}," An operation on a\nswapchain created with\n",{"type":13,"tag":62,"props":4399,"children":4401},{"className":4400},[],[4402],{"type":18,"value":4403},"VK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT",{"type":18,"value":4405}," failed as it\ndid not have exclusive full-screen access.\nThis ",{"type":13,"tag":3982,"props":4407,"children":4409},{"type":4408},"may",[],{"type":18,"value":4411}," occur due to implementation-dependent reasons, outside of the\napplication’s control.",{"type":13,"tag":25,"props":4413,"children":4414},{},[4415,4421,4423,4429],{"type":13,"tag":62,"props":4416,"children":4418},{"className":4417},[],[4419],{"type":18,"value":4420},"VK_ERROR_PRESENT_TIMING_QUEUE_FULL_EXT",{"type":18,"value":4422}," A present operation on a\nswapchain created with ",{"type":13,"tag":62,"props":4424,"children":4426},{"className":4425},[],[4427],{"type":18,"value":4428},"VK_SWAPCHAIN_CREATE_PRESENT_TIMING_BIT_EXT",{"type":18,"value":4430},"\nfailed due to insufficient space in the swapchain’s internal results\nqueue to hold requested present timing data.",{"type":13,"tag":25,"props":4432,"children":4433},{},[4434,4440,4442,4445],{"type":13,"tag":62,"props":4435,"children":4437},{"className":4436},[],[4438],{"type":18,"value":4439},"VK_ERROR_VALIDATION_FAILED",{"type":18,"value":4441}," A command failed because invalid usage\nwas detected by the implementation or a validation layer.\nThis ",{"type":13,"tag":3982,"props":4443,"children":4444},{"type":4408},[],{"type":18,"value":4446}," result in the command not being dispatched to the ICD.",{"type":13,"tag":25,"props":4448,"children":4449},{},[4450,4456,4458,4461],{"type":13,"tag":62,"props":4451,"children":4453},{"className":4452},[],[4454],{"type":18,"value":4455},"VK_ERROR_COMPRESSION_EXHAUSTED_EXT",{"type":18,"value":4457}," An image creation failed\nbecause internal resources required for compression are exhausted.\nThis ",{"type":13,"tag":3982,"props":4459,"children":4460},{"type":4230},[],{"type":18,"value":4462}," only be returned when fixed-rate compression is requested.",{"type":13,"tag":25,"props":4464,"children":4465},{},[4466,4472,4474,4480],{"type":13,"tag":62,"props":4467,"children":4469},{"className":4468},[],[4470],{"type":18,"value":4471},"VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR",{"type":18,"value":4473}," The requested\n",{"type":13,"tag":41,"props":4475,"children":4477},{"href":4476},"/man/VkImageUsageFlags",[4478],{"type":18,"value":4479},"VkImageUsageFlags",{"type":18,"value":4481}," are not supported.",{"type":13,"tag":25,"props":4483,"children":4484},{},[4485,4491],{"type":13,"tag":62,"props":4486,"children":4488},{"className":4487},[],[4489],{"type":18,"value":4490},"VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR",{"type":18,"value":4492}," The requested\nvideo picture layout is not supported.",{"type":13,"tag":25,"props":4494,"children":4495},{},[4496,4502,4504,4510,4511,4517],{"type":13,"tag":62,"props":4497,"children":4499},{"className":4498},[],[4500],{"type":18,"value":4501},"VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR",{"type":18,"value":4503}," A video profile\noperation specified via\n",{"type":13,"tag":41,"props":4505,"children":4507},{"href":4506},"/man/VkVideoProfileInfoKHR",[4508],{"type":18,"value":4509},"VkVideoProfileInfoKHR",{"type":18,"value":2773},{"type":13,"tag":62,"props":4512,"children":4514},{"className":4513},[],[4515],{"type":18,"value":4516},"videoCodecOperation",{"type":18,"value":4518}," is not supported.",{"type":13,"tag":25,"props":4520,"children":4521},{},[4522,4528,4530,4534],{"type":13,"tag":62,"props":4523,"children":4525},{"className":4524},[],[4526],{"type":18,"value":4527},"VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR",{"type":18,"value":4529}," Format parameters\nin a requested ",{"type":13,"tag":41,"props":4531,"children":4532},{"href":4506},[4533],{"type":18,"value":4509},{"type":18,"value":4535}," chain are not supported.",{"type":13,"tag":25,"props":4537,"children":4538},{},[4539,4545,4547,4551],{"type":13,"tag":62,"props":4540,"children":4542},{"className":4541},[],[4543],{"type":18,"value":4544},"VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR",{"type":18,"value":4546}," Codec-specific\nparameters in a requested ",{"type":13,"tag":41,"props":4548,"children":4549},{"href":4506},[4550],{"type":18,"value":4509},{"type":18,"value":4552}," chain are not\nsupported.",{"type":13,"tag":25,"props":4554,"children":4555},{},[4556,4562],{"type":13,"tag":62,"props":4557,"children":4559},{"className":4558},[],[4560],{"type":18,"value":4561},"VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR",{"type":18,"value":4563}," The specified video\nStd header version is not supported.",{"type":13,"tag":25,"props":4565,"children":4566},{},[4567,4573],{"type":13,"tag":62,"props":4568,"children":4570},{"className":4569},[],[4571],{"type":18,"value":4572},"VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR",{"type":18,"value":4574}," The specified Video Std\nparameters do not adhere to the syntactic or semantic requirements of\nthe used video compression standard, or values derived from parameters\naccording to the rules defined by the used video compression standard do\nnot adhere to the capabilities of the video compression standard or the\nimplementation.",{"type":13,"tag":25,"props":4576,"children":4577},{},[4578,4584,4586,4592],{"type":13,"tag":62,"props":4579,"children":4581},{"className":4580},[],[4582],{"type":18,"value":4583},"VK_ERROR_NOT_PERMITTED",{"type":18,"value":4585}," The driver implementation has denied a\nrequest to acquire a priority above the default priority\n(",{"type":13,"tag":62,"props":4587,"children":4589},{"className":4588},[],[4590],{"type":18,"value":4591},"VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT",{"type":18,"value":4593},") because the application does\nnot have sufficient privileges.",{"type":13,"tag":25,"props":4595,"children":4596},{},[4597,4603],{"type":13,"tag":62,"props":4598,"children":4600},{"className":4599},[],[4601],{"type":18,"value":4602},"VK_ERROR_NOT_ENOUGH_SPACE_KHR",{"type":18,"value":4604}," The application did not provide\nenough space to return all the required data.",{"type":13,"tag":25,"props":4606,"children":4607},{},[4608,4614],{"type":13,"tag":62,"props":4609,"children":4611},{"className":4610},[],[4612],{"type":18,"value":4613},"VK_ERROR_UNKNOWN",{"type":18,"value":4615}," An unknown error has occurred; either the\napplication has provided invalid input, or an implementation failure has\noccurred.",{"type":13,"tag":14,"props":4617,"children":4618},{},[4619,4621,4627,4629,4635,4637,4642,4644,4649,4650,4655],{"type":18,"value":4620},"If a command returns a runtime error, unless otherwise specified any output\nparameters will have undefined contents, except that if the output\nparameter is a structure with ",{"type":13,"tag":62,"props":4622,"children":4624},{"className":4623},[],[4625],{"type":18,"value":4626},"sType",{"type":18,"value":4628}," and ",{"type":13,"tag":62,"props":4630,"children":4632},{"className":4631},[],[4633],{"type":18,"value":4634},"pNext",{"type":18,"value":4636}," fields, those\nfields will be unmodified.\nAny structures chained from ",{"type":13,"tag":62,"props":4638,"children":4640},{"className":4639},[],[4641],{"type":18,"value":4634},{"type":18,"value":4643}," will also have undefined contents,\nexcept that ",{"type":13,"tag":62,"props":4645,"children":4647},{"className":4646},[],[4648],{"type":18,"value":4626},{"type":18,"value":4628},{"type":13,"tag":62,"props":4651,"children":4653},{"className":4652},[],[4654],{"type":18,"value":4634},{"type":18,"value":4656}," will be unmodified.",{"type":13,"tag":14,"props":4658,"children":4659},{},[4660,4666,4668,4671],{"type":13,"tag":62,"props":4661,"children":4663},{"className":4662},[],[4664],{"type":18,"value":4665},"VK_ERROR_OUT_OF_*_MEMORY",{"type":18,"value":4667}," errors do not modify any currently existing\nVulkan objects.\nObjects that have already been successfully created ",{"type":13,"tag":3982,"props":4669,"children":4670},{"type":3984},[],{"type":18,"value":4672}," still be used by\nthe application.",{"type":13,"tag":4066,"props":4674,"children":4675},{},[4676],{"type":13,"tag":14,"props":4677,"children":4678},{},[4679,4681,4687,4689,4695,4697,4703,4705,4710,4712,4715],{"type":18,"value":4680},"As a general rule, ",{"type":13,"tag":62,"props":4682,"children":4684},{"className":4683},[],[4685],{"type":18,"value":4686},"Free",{"type":18,"value":4688},", ",{"type":13,"tag":62,"props":4690,"children":4692},{"className":4691},[],[4693],{"type":18,"value":4694},"Release",{"type":18,"value":4696},", and ",{"type":13,"tag":62,"props":4698,"children":4700},{"className":4699},[],[4701],{"type":18,"value":4702},"Reset",{"type":18,"value":4704}," commands do\nnot return ",{"type":13,"tag":62,"props":4706,"children":4708},{"className":4707},[],[4709],{"type":18,"value":4098},{"type":18,"value":4711},", while any other command with a\nreturn code ",{"type":13,"tag":3982,"props":4713,"children":4714},{"type":4408},[],{"type":18,"value":4716}," return it.\nAny exceptions from this rule are described for those commands.",{"type":13,"tag":14,"props":4718,"children":4719},{},[4720,4725,4727,4730,4732,4736],{"type":13,"tag":62,"props":4721,"children":4723},{"className":4722},[],[4724],{"type":18,"value":4613},{"type":18,"value":4726}," will be returned by an implementation when an\nunexpected error occurs that cannot be attributed to valid behavior of the\napplication and implementation.\nUnder these conditions, it ",{"type":13,"tag":3982,"props":4728,"children":4729},{"type":4408},[],{"type":18,"value":4731}," be returned from any command returning a\n",{"type":13,"tag":41,"props":4733,"children":4734},{"href":43},[4735],{"type":18,"value":4},{"type":18,"value":4737},".",{"type":13,"tag":4066,"props":4739,"children":4740},{},[4741],{"type":13,"tag":14,"props":4742,"children":4743},{},[4744,4749,4751,4756],{"type":13,"tag":62,"props":4745,"children":4747},{"className":4746},[],[4748],{"type":18,"value":4613},{"type":18,"value":4750}," is not expected to ever be returned if the\napplication behavior is valid, and if the implementation is bug-free.\nIf ",{"type":13,"tag":62,"props":4752,"children":4754},{"className":4753},[],[4755],{"type":18,"value":4613},{"type":18,"value":4757}," is returned, the application should be checked\nagainst the latest validation layers to verify correct behavior as much as\npossible.\nIf no issues are identified it could be an implementation issue, and the\nimplementor should be contacted for support.",{"type":13,"tag":14,"props":4759,"children":4760},{},[4761,4763,4767,4768,4771,4773,4778],{"type":18,"value":4762},"Any command returning a ",{"type":13,"tag":41,"props":4764,"children":4765},{"href":43},[4766],{"type":18,"value":4},{"type":18,"value":4337},{"type":13,"tag":3982,"props":4769,"children":4770},{"type":4408},[],{"type":18,"value":4772}," return\n",{"type":13,"tag":62,"props":4774,"children":4776},{"className":4775},[],[4777],{"type":18,"value":4439},{"type":18,"value":4779}," if a violation of valid usage is detected.",{"type":13,"tag":14,"props":4781,"children":4782},{},[4783,4785,4791,4793,4799],{"type":18,"value":4784},"Performance-critical commands generally do not have return codes.\nIf a runtime error occurs in such commands, the implementation will defer\nreporting the error until a specified point.\nFor commands that record into command buffers (",{"type":13,"tag":62,"props":4786,"children":4788},{"className":4787},[],[4789],{"type":18,"value":4790},"vkCmd*",{"type":18,"value":4792},") runtime errors\nare reported by ",{"type":13,"tag":62,"props":4794,"children":4796},{"className":4795},[],[4797],{"type":18,"value":4798},"vkEndCommandBuffer",{"type":18,"value":4737},{"type":13,"tag":4801,"props":4802,"children":4803},"style",{},[4804],{"type":18,"value":4805},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":59,"searchDepth":90,"depth":90,"links":4807},[],"markdown",1776503245789]