[{"data":1,"prerenderedAt":8008},["ShallowReactive",2],{"XBJJhzFSVp":3,"VyF3Mmj32r":6361,"N9m89Rcq0G":6563},{"title":4,"description":5,"body":6,"_type":6360,"_id":4},"VK_AMDX_shader_enqueue.proposal","This extension adds the ability for developers to enqueue mesh pipelines and compute shader workgroups from other compute shaders.",{"type":7,"children":8,"toc":6348},"root",[9,16,23,28,41,47,52,72,77,82,87,92,98,105,112,124,456,477,504,540,576,600,725,758,857,862,867,874,901,906,999,1004,1009,1015,1020,1173,1186,1221,1226,1249,1254,1344,1378,1384,1389,1807,1827,1867,1894,1912,1976,1981,2015,2027,2082,2087,2115,2210,2243,2288,2293,2307,2313,2318,2462,2467,2555,2561,2566,2627,2647,2653,2658,2758,2763,2867,2879,2884,3508,3527,3549,3560,3578,3605,3629,3634,3658,3669,3756,3766,3821,3844,3849,4555,4560,4676,4718,4723,4851,4983,4988,5148,5153,5467,5492,5504,5611,5622,5633,5836,5841,5870,6101,6112,6304,6309,6315,6321,6326,6332,6337,6342],{"type":10,"tag":11,"props":12,"children":13},"element","p",{},[14],{"type":15,"value":5},"text",{"type":10,"tag":17,"props":18,"children":20},"h2",{"id":19},"_problem_statement",[21],{"type":15,"value":22},"Problem Statement",{"type":10,"tag":11,"props":24,"children":25},{},[26],{"type":15,"value":27},"Applications are increasingly using more complex renderers, often incorporating multiple compute passes that classify, sort, or otherwise preprocess input data.\nThese passes may be used to determine how future work is performed on the GPU; but triggering that future GPU work requires either a round trip to the host, or going through buffer memory and using indirect commands.\nHost round trips necessarily include more system bandwidth and latency as command buffers need to be built and transmitted back to the GPU.\nIndirect commands work well in many cases, but they have little flexibility when it comes to determining what is actually dispatched; they must be enqueued ahead of time, synchronized with heavy API barriers, and execute with a single pre-recorded pipeline.",{"type":10,"tag":11,"props":29,"children":30},{},[31,33,39],{"type":15,"value":32},"Whilst latency can be hidden and indirect commands can work in many cases where additional latency and bandwidth is not acceptable, recent engine developments such as Unreal 5’s Nanite technology explicitly require the flexibility of shader selection ",{"type":10,"tag":34,"props":35,"children":36},"em",{},[37],{"type":15,"value":38},"and",{"type":15,"value":40}," low latency.\nA desirable solution should be able to have the flexibility required for these systems, while keeping the execution loop firmly on the GPU.",{"type":10,"tag":17,"props":42,"children":44},{"id":43},"_solution_space",[45],{"type":15,"value":46},"Solution Space",{"type":10,"tag":11,"props":48,"children":49},{},[50],{"type":15,"value":51},"Three main possibilities exist:",{"type":10,"tag":53,"props":54,"children":55},"ol",{},[56,62,67],{"type":10,"tag":57,"props":58,"children":59},"li",{},[60],{"type":15,"value":61},"Extend indirect commands",{"type":10,"tag":57,"props":63,"children":64},{},[65],{"type":15,"value":66},"VK_NV_device_generated_commands",{"type":10,"tag":57,"props":68,"children":69},{},[70],{"type":15,"value":71},"Shader enqueue",{"type":10,"tag":11,"props":73,"children":74},{},[75],{"type":15,"value":76},"More flexible indirect commands could feasibly allow things like shader selection, introduce more complex flow control, or include indirect state setting commands.\nThe main issue with these is that these always require parameters to be written through regular buffer memory, and that buffer memory has to be sized for each indirect command to handle the maximum number of possibilities.\nAs well as the large allocation size causing memory pressure, pushing all that data through buffer memory will reduce the bandwidth available for other operations.\nAll of this could cause bottlenecks elsewhere in the pipeline.\nHypothetically a new interface for better scheduling/memory management could be introduced, but that starts looking a lot like option 3.",{"type":10,"tag":11,"props":78,"children":79},{},[80],{"type":15,"value":81},"Option 2 - implementing a cross-vendor equivalent of VK_NV_device_generated_commands would be a workable solution that adds both flexibility and avoids a CPU round trip.\nThe reason it has not enjoyed wider support is due to concerns about how the commands are generated - it uses a tokenised API which has to be processed by the GPU before it can be executed.\nFor existing GPUs this can mean doing things like running a single compute shader invocation to process each token stream into a runnable command buffer, adding both latency and bandwidth on the GPU.",{"type":10,"tag":11,"props":83,"children":84},{},[85],{"type":15,"value":86},"Option 3 - OpenCL and CUDA have had some form of shader enqueue API for a while, where the focus has typically been primarily on enabling developers and on compute workloads.\nFrom a user interface perspective these have had a decent amount of battle testing and is quite a popular and flexible interface.",{"type":10,"tag":11,"props":88,"children":89},{},[90],{"type":15,"value":91},"This proposal is built around something like Option 3, but extended to be explicit and performant.",{"type":10,"tag":17,"props":93,"children":95},{"id":94},"_proposal",[96],{"type":15,"value":97},"Proposal",{"type":10,"tag":99,"props":100,"children":102},"h3",{"id":101},"_api_changes",[103],{"type":15,"value":104},"API Changes",{"type":10,"tag":106,"props":107,"children":109},"h4",{"id":108},"_graph_pipelines",[110],{"type":15,"value":111},"Graph Pipelines",{"type":10,"tag":11,"props":113,"children":114},{},[115,117,122],{"type":15,"value":116},"In order to facilitate dispatch of multiple shaders from the GPU, the implementation needs some information about how pipelines will be launched and synchronized.\nThis proposal introduces a new ",{"type":10,"tag":34,"props":118,"children":119},{},[120],{"type":15,"value":121},"execution graph pipeline",{"type":15,"value":123}," that defines execution paths between multiple shaders, and allows dynamic execution of different shaders.",{"type":10,"tag":125,"props":126,"children":131},"pre",{"className":127,"code":128,"language":129,"meta":130,"style":130},"language-c shiki shiki-themes github-light-default github-dark-default","VkResult vkCreateExecutionGraphPipelinesAMDX(\n VkDevice device,\n VkPipelineCache pipelineCache,\n uint32_t createInfoCount,\n const VkExecutionGraphPipelineCreateInfoAMDX* pCreateInfos,\n const VkAllocationCallbacks* pAllocator,\n VkPipeline* pPipelines);\n\ntypedef struct VkExecutionGraphPipelineCreateInfoAMDX {\n VkStructureType sType;\n const void* pNext;\n VkPipelineCreateFlags flags;\n uint32_t stageCount;\n const VkPipelineShaderStageCreateInfo* pStages;\n const VkPipelineLibraryCreateInfoKHR* pLibraryInfo;\n VkPipelineLayout layout;\n VkPipeline basePipelineHandle;\n int32_t basePipelineIndex;\n} VkExecutionGraphPipelineCreateInfoAMDX;\n","c","",[132],{"type":10,"tag":133,"props":134,"children":135},"code",{"__ignoreMap":130},[136,159,179,197,216,244,270,293,303,322,331,349,358,371,393,415,424,433,447],{"type":10,"tag":137,"props":138,"children":141},"span",{"class":139,"line":140},"line",1,[142,148,154],{"type":10,"tag":137,"props":143,"children":145},{"style":144},"--shiki-default:#1F2328;--shiki-dark:#E6EDF3",[146],{"type":15,"value":147},"VkResult ",{"type":10,"tag":137,"props":149,"children":151},{"style":150},"--shiki-default:#8250DF;--shiki-dark:#D2A8FF",[152],{"type":15,"value":153},"vkCreateExecutionGraphPipelinesAMDX",{"type":10,"tag":137,"props":155,"children":156},{"style":144},[157],{"type":15,"value":158},"(\n",{"type":10,"tag":137,"props":160,"children":162},{"class":139,"line":161},2,[163,168,174],{"type":10,"tag":137,"props":164,"children":165},{"style":144},[166],{"type":15,"value":167}," VkDevice ",{"type":10,"tag":137,"props":169,"children":171},{"style":170},"--shiki-default:#953800;--shiki-dark:#FFA657",[172],{"type":15,"value":173},"device",{"type":10,"tag":137,"props":175,"children":176},{"style":144},[177],{"type":15,"value":178},",\n",{"type":10,"tag":137,"props":180,"children":182},{"class":139,"line":181},3,[183,188,193],{"type":10,"tag":137,"props":184,"children":185},{"style":144},[186],{"type":15,"value":187}," VkPipelineCache ",{"type":10,"tag":137,"props":189,"children":190},{"style":170},[191],{"type":15,"value":192},"pipelineCache",{"type":10,"tag":137,"props":194,"children":195},{"style":144},[196],{"type":15,"value":178},{"type":10,"tag":137,"props":198,"children":200},{"class":139,"line":199},4,[201,207,212],{"type":10,"tag":137,"props":202,"children":204},{"style":203},"--shiki-default:#CF222E;--shiki-dark:#FF7B72",[205],{"type":15,"value":206}," uint32_t",{"type":10,"tag":137,"props":208,"children":209},{"style":170},[210],{"type":15,"value":211}," createInfoCount",{"type":10,"tag":137,"props":213,"children":214},{"style":144},[215],{"type":15,"value":178},{"type":10,"tag":137,"props":217,"children":219},{"class":139,"line":218},5,[220,225,230,235,240],{"type":10,"tag":137,"props":221,"children":222},{"style":203},[223],{"type":15,"value":224}," const",{"type":10,"tag":137,"props":226,"children":227},{"style":144},[228],{"type":15,"value":229}," VkExecutionGraphPipelineCreateInfoAMDX",{"type":10,"tag":137,"props":231,"children":232},{"style":203},[233],{"type":15,"value":234},"*",{"type":10,"tag":137,"props":236,"children":237},{"style":170},[238],{"type":15,"value":239}," pCreateInfos",{"type":10,"tag":137,"props":241,"children":242},{"style":144},[243],{"type":15,"value":178},{"type":10,"tag":137,"props":245,"children":247},{"class":139,"line":246},6,[248,252,257,261,266],{"type":10,"tag":137,"props":249,"children":250},{"style":203},[251],{"type":15,"value":224},{"type":10,"tag":137,"props":253,"children":254},{"style":144},[255],{"type":15,"value":256}," VkAllocationCallbacks",{"type":10,"tag":137,"props":258,"children":259},{"style":203},[260],{"type":15,"value":234},{"type":10,"tag":137,"props":262,"children":263},{"style":170},[264],{"type":15,"value":265}," pAllocator",{"type":10,"tag":137,"props":267,"children":268},{"style":144},[269],{"type":15,"value":178},{"type":10,"tag":137,"props":271,"children":273},{"class":139,"line":272},7,[274,279,283,288],{"type":10,"tag":137,"props":275,"children":276},{"style":144},[277],{"type":15,"value":278}," VkPipeline",{"type":10,"tag":137,"props":280,"children":281},{"style":203},[282],{"type":15,"value":234},{"type":10,"tag":137,"props":284,"children":285},{"style":170},[286],{"type":15,"value":287}," pPipelines",{"type":10,"tag":137,"props":289,"children":290},{"style":144},[291],{"type":15,"value":292},");\n",{"type":10,"tag":137,"props":294,"children":296},{"class":139,"line":295},8,[297],{"type":10,"tag":137,"props":298,"children":300},{"emptyLinePlaceholder":299},true,[301],{"type":15,"value":302},"\n",{"type":10,"tag":137,"props":304,"children":306},{"class":139,"line":305},9,[307,312,317],{"type":10,"tag":137,"props":308,"children":309},{"style":203},[310],{"type":15,"value":311},"typedef",{"type":10,"tag":137,"props":313,"children":314},{"style":203},[315],{"type":15,"value":316}," struct",{"type":10,"tag":137,"props":318,"children":319},{"style":144},[320],{"type":15,"value":321}," VkExecutionGraphPipelineCreateInfoAMDX {\n",{"type":10,"tag":137,"props":323,"children":325},{"class":139,"line":324},10,[326],{"type":10,"tag":137,"props":327,"children":328},{"style":144},[329],{"type":15,"value":330}," VkStructureType sType;\n",{"type":10,"tag":137,"props":332,"children":334},{"class":139,"line":333},11,[335,339,344],{"type":10,"tag":137,"props":336,"children":337},{"style":203},[338],{"type":15,"value":224},{"type":10,"tag":137,"props":340,"children":341},{"style":203},[342],{"type":15,"value":343}," void*",{"type":10,"tag":137,"props":345,"children":346},{"style":144},[347],{"type":15,"value":348}," pNext;\n",{"type":10,"tag":137,"props":350,"children":352},{"class":139,"line":351},12,[353],{"type":10,"tag":137,"props":354,"children":355},{"style":144},[356],{"type":15,"value":357}," VkPipelineCreateFlags flags;\n",{"type":10,"tag":137,"props":359,"children":361},{"class":139,"line":360},13,[362,366],{"type":10,"tag":137,"props":363,"children":364},{"style":203},[365],{"type":15,"value":206},{"type":10,"tag":137,"props":367,"children":368},{"style":144},[369],{"type":15,"value":370}," stageCount;\n",{"type":10,"tag":137,"props":372,"children":374},{"class":139,"line":373},14,[375,379,384,388],{"type":10,"tag":137,"props":376,"children":377},{"style":203},[378],{"type":15,"value":224},{"type":10,"tag":137,"props":380,"children":381},{"style":144},[382],{"type":15,"value":383}," VkPipelineShaderStageCreateInfo",{"type":10,"tag":137,"props":385,"children":386},{"style":203},[387],{"type":15,"value":234},{"type":10,"tag":137,"props":389,"children":390},{"style":144},[391],{"type":15,"value":392}," pStages;\n",{"type":10,"tag":137,"props":394,"children":396},{"class":139,"line":395},15,[397,401,406,410],{"type":10,"tag":137,"props":398,"children":399},{"style":203},[400],{"type":15,"value":224},{"type":10,"tag":137,"props":402,"children":403},{"style":144},[404],{"type":15,"value":405}," VkPipelineLibraryCreateInfoKHR",{"type":10,"tag":137,"props":407,"children":408},{"style":203},[409],{"type":15,"value":234},{"type":10,"tag":137,"props":411,"children":412},{"style":144},[413],{"type":15,"value":414}," pLibraryInfo;\n",{"type":10,"tag":137,"props":416,"children":418},{"class":139,"line":417},16,[419],{"type":10,"tag":137,"props":420,"children":421},{"style":144},[422],{"type":15,"value":423}," VkPipelineLayout layout;\n",{"type":10,"tag":137,"props":425,"children":427},{"class":139,"line":426},17,[428],{"type":10,"tag":137,"props":429,"children":430},{"style":144},[431],{"type":15,"value":432}," VkPipeline basePipelineHandle;\n",{"type":10,"tag":137,"props":434,"children":436},{"class":139,"line":435},18,[437,442],{"type":10,"tag":137,"props":438,"children":439},{"style":203},[440],{"type":15,"value":441}," int32_t",{"type":10,"tag":137,"props":443,"children":444},{"style":144},[445],{"type":15,"value":446}," basePipelineIndex;\n",{"type":10,"tag":137,"props":448,"children":450},{"class":139,"line":449},19,[451],{"type":10,"tag":137,"props":452,"children":453},{"style":144},[454],{"type":15,"value":455},"} VkExecutionGraphPipelineCreateInfoAMDX;\n",{"type":10,"tag":11,"props":457,"children":458},{},[459,461,467,469,475],{"type":15,"value":460},"Shaders defined by ",{"type":10,"tag":133,"props":462,"children":464},{"className":463},[],[465],{"type":15,"value":466},"pStages",{"type":15,"value":468}," and any pipelines in ",{"type":10,"tag":133,"props":470,"children":472},{"className":471},[],[473],{"type":15,"value":474},"pLibraryInfo→pLibraries",{"type":15,"value":476}," define the possible nodes of the graph.\nThe linkage between nodes however is defined wholly in shader code, though may be overridden by specialization constants in many cases.",{"type":10,"tag":11,"props":478,"children":479},{},[480,482,487,489,495,497,502],{"type":15,"value":481},"Shaders in ",{"type":10,"tag":133,"props":483,"children":485},{"className":484},[],[486],{"type":15,"value":466},{"type":15,"value":488}," must be in the ",{"type":10,"tag":133,"props":490,"children":492},{"className":491},[],[493],{"type":15,"value":494},"GLCompute",{"type":15,"value":496}," execution model, and may have the ",{"type":10,"tag":34,"props":498,"children":499},{},[500],{"type":15,"value":501},"CoalescingAMDX",{"type":15,"value":503}," execution mode.",{"type":10,"tag":11,"props":505,"children":506},{},[507,509,515,517,523,525,531,533,538],{"type":15,"value":508},"Pipelines in ",{"type":10,"tag":133,"props":510,"children":512},{"className":511},[],[513],{"type":15,"value":514},"pLibraries",{"type":15,"value":516}," can be compute pipelines, graphics pipelines, or other execution graph pipelines. Compute and graphics pipelines must be created with the ",{"type":10,"tag":133,"props":518,"children":520},{"className":519},[],[521],{"type":15,"value":522},"VK_PIPELINE_CREATE_2_LIBRARY_BIT_KHR",{"type":15,"value":524}," and ",{"type":10,"tag":133,"props":526,"children":528},{"className":527},[],[529],{"type":15,"value":530},"VK_PIPELINE_CREATE_2_EXECUTION_GRAPH_BIT_AMDX",{"type":15,"value":532}," flag bits. Execution graph pipelines used as libraries must be created with the ",{"type":10,"tag":133,"props":534,"children":536},{"className":535},[],[537],{"type":15,"value":522},{"type":15,"value":539}," flag bit.",{"type":10,"tag":125,"props":541,"children":543},{"className":127,"code":542,"language":129,"meta":130,"style":130},"VK_PIPELINE_CREATE_2_EXECUTION_GRAPH_BIT_AMDX = 0x100000000ULL\n",[544],{"type":10,"tag":133,"props":545,"children":546},{"__ignoreMap":130},[547],{"type":10,"tag":137,"props":548,"children":549},{"class":139,"line":140},[550,555,560,565,571],{"type":10,"tag":137,"props":551,"children":552},{"style":144},[553],{"type":15,"value":554},"VK_PIPELINE_CREATE_2_EXECUTION_GRAPH_BIT_AMDX ",{"type":10,"tag":137,"props":556,"children":557},{"style":203},[558],{"type":15,"value":559},"=",{"type":10,"tag":137,"props":561,"children":562},{"style":203},[563],{"type":15,"value":564}," 0x",{"type":10,"tag":137,"props":566,"children":568},{"style":567},"--shiki-default:#0550AE;--shiki-dark:#79C0FF",[569],{"type":15,"value":570},"100000000",{"type":10,"tag":137,"props":572,"children":573},{"style":203},[574],{"type":15,"value":575},"ULL\n",{"type":10,"tag":11,"props":577,"children":578},{},[579,581,587,589,598],{"type":15,"value":580},"Each shader in an execution graph is associated with a name and an index, which are used to identify the target shader when dispatching a payload.\nThe ",{"type":10,"tag":133,"props":582,"children":584},{"className":583},[],[585],{"type":15,"value":586},"VkPipelineShaderStageNodeCreateInfoAMDX",{"type":15,"value":588}," provides options for specifying how the shader is specified with regards to its entry point name and index, and can be chained to the ",{"type":10,"tag":590,"props":591,"children":595},"a",{"href":592,"rel":593},"https://docs.vulkan.org/spec/latest/chapters/pipelines.html#VkPipelineShaderStageCreateInfo",[594],"nofollow",[596],{"type":15,"value":597},"VkPipelineShaderStageCreateInfo",{"type":15,"value":599}," structure.",{"type":10,"tag":125,"props":601,"children":603},{"className":127,"code":602,"language":129,"meta":130,"style":130},"const uint32_t VK_SHADER_INDEX_UNUSED_AMDX = 0xFFFFFFFF;\n\ntypedef struct VkPipelineShaderStageNodeCreateInfoAMDX {\n VkStructureType sType;\n const void* pNext;\n const char* pName;\n uint32_t index;\n} VkPipelineShaderStageNodeCreateInfoAMDX;\n",[604],{"type":10,"tag":133,"props":605,"children":606},{"__ignoreMap":130},[607,643,650,666,673,688,705,717],{"type":10,"tag":137,"props":608,"children":609},{"class":139,"line":140},[610,615,620,625,629,633,638],{"type":10,"tag":137,"props":611,"children":612},{"style":203},[613],{"type":15,"value":614},"const",{"type":10,"tag":137,"props":616,"children":617},{"style":203},[618],{"type":15,"value":619}," uint32_t",{"type":10,"tag":137,"props":621,"children":622},{"style":144},[623],{"type":15,"value":624}," VK_SHADER_INDEX_UNUSED_AMDX ",{"type":10,"tag":137,"props":626,"children":627},{"style":203},[628],{"type":15,"value":559},{"type":10,"tag":137,"props":630,"children":631},{"style":203},[632],{"type":15,"value":564},{"type":10,"tag":137,"props":634,"children":635},{"style":567},[636],{"type":15,"value":637},"FFFFFFFF",{"type":10,"tag":137,"props":639,"children":640},{"style":144},[641],{"type":15,"value":642},";\n",{"type":10,"tag":137,"props":644,"children":645},{"class":139,"line":161},[646],{"type":10,"tag":137,"props":647,"children":648},{"emptyLinePlaceholder":299},[649],{"type":15,"value":302},{"type":10,"tag":137,"props":651,"children":652},{"class":139,"line":181},[653,657,661],{"type":10,"tag":137,"props":654,"children":655},{"style":203},[656],{"type":15,"value":311},{"type":10,"tag":137,"props":658,"children":659},{"style":203},[660],{"type":15,"value":316},{"type":10,"tag":137,"props":662,"children":663},{"style":144},[664],{"type":15,"value":665}," VkPipelineShaderStageNodeCreateInfoAMDX {\n",{"type":10,"tag":137,"props":667,"children":668},{"class":139,"line":199},[669],{"type":10,"tag":137,"props":670,"children":671},{"style":144},[672],{"type":15,"value":330},{"type":10,"tag":137,"props":674,"children":675},{"class":139,"line":218},[676,680,684],{"type":10,"tag":137,"props":677,"children":678},{"style":203},[679],{"type":15,"value":224},{"type":10,"tag":137,"props":681,"children":682},{"style":203},[683],{"type":15,"value":343},{"type":10,"tag":137,"props":685,"children":686},{"style":144},[687],{"type":15,"value":348},{"type":10,"tag":137,"props":689,"children":690},{"class":139,"line":246},[691,695,700],{"type":10,"tag":137,"props":692,"children":693},{"style":203},[694],{"type":15,"value":224},{"type":10,"tag":137,"props":696,"children":697},{"style":203},[698],{"type":15,"value":699}," char*",{"type":10,"tag":137,"props":701,"children":702},{"style":144},[703],{"type":15,"value":704}," pName;\n",{"type":10,"tag":137,"props":706,"children":707},{"class":139,"line":272},[708,712],{"type":10,"tag":137,"props":709,"children":710},{"style":203},[711],{"type":15,"value":206},{"type":10,"tag":137,"props":713,"children":714},{"style":144},[715],{"type":15,"value":716}," index;\n",{"type":10,"tag":137,"props":718,"children":719},{"class":139,"line":295},[720],{"type":10,"tag":137,"props":721,"children":722},{"style":144},[723],{"type":15,"value":724},"} VkPipelineShaderStageNodeCreateInfoAMDX;\n",{"type":10,"tag":726,"props":727,"children":728},"ul",{},[729,740],{"type":10,"tag":57,"props":730,"children":731},{},[732,738],{"type":10,"tag":133,"props":733,"children":735},{"className":734},[],[736],{"type":15,"value":737},"index",{"type":15,"value":739}," sets the index value for a shader.",{"type":10,"tag":57,"props":741,"children":742},{},[743,749,751,756],{"type":10,"tag":133,"props":744,"children":746},{"className":745},[],[747],{"type":15,"value":748},"pName",{"type":15,"value":750}," allows applications to override the name specified in SPIR-V by ",{"type":10,"tag":34,"props":752,"children":753},{},[754],{"type":15,"value":755},"OpEntryPoint",{"type":15,"value":757},".",{"type":10,"tag":11,"props":759,"children":760},{},[761,763,768,770,776,778,784,786,791,792,798,800,806,808,814,815,821,823,829,831,836,838,843,845,850,851,856],{"type":15,"value":762},"If ",{"type":10,"tag":133,"props":764,"children":766},{"className":765},[],[767],{"type":15,"value":748},{"type":15,"value":769}," is ",{"type":10,"tag":133,"props":771,"children":773},{"className":772},[],[774],{"type":15,"value":775},"NULL",{"type":15,"value":777}," then the original name is used, as specified by ",{"type":10,"tag":133,"props":779,"children":781},{"className":780},[],[782],{"type":15,"value":783},"VkPipelineShaderStageCreateInfo::pName",{"type":15,"value":785},".\nIf ",{"type":10,"tag":133,"props":787,"children":789},{"className":788},[],[790],{"type":15,"value":737},{"type":15,"value":769},{"type":10,"tag":133,"props":793,"children":795},{"className":794},[],[796],{"type":15,"value":797},"VK_SHADER_INDEX_UNUSED_AMDX",{"type":15,"value":799}," then the original index is used, either as specified by the ",{"type":10,"tag":133,"props":801,"children":803},{"className":802},[],[804],{"type":15,"value":805},"ShaderIndexAMDX",{"type":15,"value":807}," ",{"type":10,"tag":133,"props":809,"children":811},{"className":810},[],[812],{"type":15,"value":813},"Execution",{"type":15,"value":807},{"type":10,"tag":133,"props":816,"children":818},{"className":817},[],[819],{"type":15,"value":820},"Mode",{"type":15,"value":822},", or ",{"type":10,"tag":133,"props":824,"children":826},{"className":825},[],[827],{"type":15,"value":828},"0",{"type":15,"value":830}," if that too is not specified.\nIf this structure is not provided, ",{"type":10,"tag":133,"props":832,"children":834},{"className":833},[],[835],{"type":15,"value":748},{"type":15,"value":837}," defaults to ",{"type":10,"tag":133,"props":839,"children":841},{"className":840},[],[842],{"type":15,"value":775},{"type":15,"value":844},", and ",{"type":10,"tag":133,"props":846,"children":848},{"className":847},[],[849],{"type":15,"value":737},{"type":15,"value":837},{"type":10,"tag":133,"props":852,"children":854},{"className":853},[],[855],{"type":15,"value":797},{"type":15,"value":757},{"type":10,"tag":11,"props":858,"children":859},{},[860],{"type":15,"value":861},"When dispatching from another shader, the index is dynamic and can be specified in uniform control flow - however the name must be statically declared as a decoration on the payload.\nAllowing the index to be set dynamically lets applications stream shaders in and out dynamically, by simply changing constant data and relinking the graph pipeline from new libraries.\nShaders with the same name and different indexes must consume identical payloads and have the same execution model.\nShaders with the same name in an execution graph pipeline must have unique indexes.",{"type":10,"tag":11,"props":863,"children":864},{},[865],{"type":15,"value":866},"When dispatching from another shader, any declared input payload for the dispatched node must be less than or equal to the size of the output payload in the dispatching node.\nAdditionally, if an input payload is declared in the dispatched shader, the input and output payloads must specify members with the same decorations at the same offsets.",{"type":10,"tag":868,"props":869,"children":871},"h5",{"id":870},"_graphics_pipeline_state",[872],{"type":15,"value":873},"Graphics Pipeline State",{"type":10,"tag":11,"props":875,"children":876},{},[877,879,884,885,890,892,899],{"type":15,"value":878},"When adding a graphics pipeline to an execution graph pipeline, applications must specify a graphics pipeline with a complete set of state, and the ",{"type":10,"tag":133,"props":880,"children":882},{"className":881},[],[883],{"type":15,"value":522},{"type":15,"value":524},{"type":10,"tag":133,"props":886,"children":888},{"className":887},[],[889],{"type":15,"value":530},{"type":15,"value":891}," flags set.\nGraphics pipelines must only include mesh shaders; vertex shader pipelines or mesh pipelines with task shaders are not supported.\nWhen creating such a graphics pipeline from libraries as an interaction with ",{"type":10,"tag":590,"props":893,"children":896},{"href":894,"rel":895},"https://docs.vulkan.org/spec/latest/appendices/extensions.html#VK_EXT_graphics_pipeline_library",[594],[897],{"type":15,"value":898},"VK_EXT_graphics_pipeline_library",{"type":15,"value":900},", those libraries must also have been created with those flags.",{"type":10,"tag":11,"props":902,"children":903},{},[904],{"type":15,"value":905},"For graphics pipelines defined in this way, only the following dynamic state is allowed:",{"type":10,"tag":726,"props":907,"children":908},{},[909,918,927,936,945,954,963,972,981,990],{"type":10,"tag":57,"props":910,"children":911},{},[912],{"type":10,"tag":133,"props":913,"children":915},{"className":914},[],[916],{"type":15,"value":917},"VK_DYNAMIC_STATE_VIEWPORT",{"type":10,"tag":57,"props":919,"children":920},{},[921],{"type":10,"tag":133,"props":922,"children":924},{"className":923},[],[925],{"type":15,"value":926},"VK_DYNAMIC_STATE_SCISSOR",{"type":10,"tag":57,"props":928,"children":929},{},[930],{"type":10,"tag":133,"props":931,"children":933},{"className":932},[],[934],{"type":15,"value":935},"VK_DYNAMIC_STATE_LINE_WIDTH",{"type":10,"tag":57,"props":937,"children":938},{},[939],{"type":10,"tag":133,"props":940,"children":942},{"className":941},[],[943],{"type":15,"value":944},"VK_DYNAMIC_STATE_DEPTH_BIAS",{"type":10,"tag":57,"props":946,"children":947},{},[948],{"type":10,"tag":133,"props":949,"children":951},{"className":950},[],[952],{"type":15,"value":953},"VK_DYNAMIC_STATE_BLEND_CONSTANTS",{"type":10,"tag":57,"props":955,"children":956},{},[957],{"type":10,"tag":133,"props":958,"children":960},{"className":959},[],[961],{"type":15,"value":962},"VK_DYNAMIC_STATE_DEPTH_BOUNDS",{"type":10,"tag":57,"props":964,"children":965},{},[966],{"type":10,"tag":133,"props":967,"children":969},{"className":968},[],[970],{"type":15,"value":971},"VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT",{"type":10,"tag":57,"props":973,"children":974},{},[975],{"type":10,"tag":133,"props":976,"children":978},{"className":977},[],[979],{"type":15,"value":980},"VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT",{"type":10,"tag":57,"props":982,"children":983},{},[984],{"type":10,"tag":133,"props":985,"children":987},{"className":986},[],[988],{"type":15,"value":989},"VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT",{"type":10,"tag":57,"props":991,"children":992},{},[993],{"type":10,"tag":133,"props":994,"children":996},{"className":995},[],[997],{"type":15,"value":998},"VK_DYNAMIC_STATE_FRAGMENT_SHADING_RATE_KHR",{"type":10,"tag":11,"props":1000,"children":1001},{},[1002],{"type":15,"value":1003},"When these dynamic states are specified, this state is captured from the command buffer state at the point the execution graph is dispatched, and applies to all nodes that have that state set dynamically executed as part of that dispatch.\nAll graphics pipelines in an execution graph must use the same set of dynamic states.\nApplications can dynamically choose any other state at runtime by selecting between pipelines with different state when dispatching, but the underlying pipelines must be created statically.",{"type":10,"tag":11,"props":1005,"children":1006},{},[1007],{"type":15,"value":1008},"When included as a library in an execution graph pipeline, the node is defined by the first shader in the graphics pipeline.",{"type":10,"tag":106,"props":1010,"children":1012},{"id":1011},"_scratch_memory",[1013],{"type":15,"value":1014},"Scratch Memory",{"type":10,"tag":11,"props":1016,"children":1017},{},[1018],{"type":15,"value":1019},"Implementations may need scratch memory to manage dispatch queues or similar when executing a pipeline graph, and this is explicitly managed by the application.",{"type":10,"tag":125,"props":1021,"children":1023},{"className":127,"code":1022,"language":129,"meta":130,"style":130},"typedef struct VkExecutionGraphPipelineScratchSizeAMDX {\n VkStructureType sType;\n void* pNext;\n VkDeviceSize minSize;\n VkDeviceSize maxSize;\n VkDeviceSize sizeGranularity;\n} VkExecutionGraphPipelineScratchSizeAMDX;\n\nVkResult vkGetExecutionGraphPipelineScratchSizeAMDX(\n VkDevice device,\n VkPipeline executionGraph,\n VkExecutionGraphPipelineScratchSizeAMDX* pSizeInfo);\n",[1024],{"type":10,"tag":133,"props":1025,"children":1026},{"__ignoreMap":130},[1027,1043,1051,1064,1072,1080,1088,1096,1103,1119,1135,1152],{"type":10,"tag":137,"props":1028,"children":1029},{"class":139,"line":140},[1030,1034,1038],{"type":10,"tag":137,"props":1031,"children":1032},{"style":203},[1033],{"type":15,"value":311},{"type":10,"tag":137,"props":1035,"children":1036},{"style":203},[1037],{"type":15,"value":316},{"type":10,"tag":137,"props":1039,"children":1040},{"style":144},[1041],{"type":15,"value":1042}," VkExecutionGraphPipelineScratchSizeAMDX {\n",{"type":10,"tag":137,"props":1044,"children":1045},{"class":139,"line":161},[1046],{"type":10,"tag":137,"props":1047,"children":1048},{"style":144},[1049],{"type":15,"value":1050}," VkStructureType sType;\n",{"type":10,"tag":137,"props":1052,"children":1053},{"class":139,"line":181},[1054,1059],{"type":10,"tag":137,"props":1055,"children":1056},{"style":203},[1057],{"type":15,"value":1058}," void*",{"type":10,"tag":137,"props":1060,"children":1061},{"style":144},[1062],{"type":15,"value":1063}," pNext;\n",{"type":10,"tag":137,"props":1065,"children":1066},{"class":139,"line":199},[1067],{"type":10,"tag":137,"props":1068,"children":1069},{"style":144},[1070],{"type":15,"value":1071}," VkDeviceSize minSize;\n",{"type":10,"tag":137,"props":1073,"children":1074},{"class":139,"line":218},[1075],{"type":10,"tag":137,"props":1076,"children":1077},{"style":144},[1078],{"type":15,"value":1079}," VkDeviceSize maxSize;\n",{"type":10,"tag":137,"props":1081,"children":1082},{"class":139,"line":246},[1083],{"type":10,"tag":137,"props":1084,"children":1085},{"style":144},[1086],{"type":15,"value":1087}," VkDeviceSize sizeGranularity;\n",{"type":10,"tag":137,"props":1089,"children":1090},{"class":139,"line":272},[1091],{"type":10,"tag":137,"props":1092,"children":1093},{"style":144},[1094],{"type":15,"value":1095},"} VkExecutionGraphPipelineScratchSizeAMDX;\n",{"type":10,"tag":137,"props":1097,"children":1098},{"class":139,"line":295},[1099],{"type":10,"tag":137,"props":1100,"children":1101},{"emptyLinePlaceholder":299},[1102],{"type":15,"value":302},{"type":10,"tag":137,"props":1104,"children":1105},{"class":139,"line":305},[1106,1110,1115],{"type":10,"tag":137,"props":1107,"children":1108},{"style":144},[1109],{"type":15,"value":147},{"type":10,"tag":137,"props":1111,"children":1112},{"style":150},[1113],{"type":15,"value":1114},"vkGetExecutionGraphPipelineScratchSizeAMDX",{"type":10,"tag":137,"props":1116,"children":1117},{"style":144},[1118],{"type":15,"value":158},{"type":10,"tag":137,"props":1120,"children":1121},{"class":139,"line":324},[1122,1127,1131],{"type":10,"tag":137,"props":1123,"children":1124},{"style":144},[1125],{"type":15,"value":1126}," VkDevice ",{"type":10,"tag":137,"props":1128,"children":1129},{"style":170},[1130],{"type":15,"value":173},{"type":10,"tag":137,"props":1132,"children":1133},{"style":144},[1134],{"type":15,"value":178},{"type":10,"tag":137,"props":1136,"children":1137},{"class":139,"line":333},[1138,1143,1148],{"type":10,"tag":137,"props":1139,"children":1140},{"style":144},[1141],{"type":15,"value":1142}," VkPipeline ",{"type":10,"tag":137,"props":1144,"children":1145},{"style":170},[1146],{"type":15,"value":1147},"executionGraph",{"type":10,"tag":137,"props":1149,"children":1150},{"style":144},[1151],{"type":15,"value":178},{"type":10,"tag":137,"props":1153,"children":1154},{"class":139,"line":351},[1155,1160,1164,1169],{"type":10,"tag":137,"props":1156,"children":1157},{"style":144},[1158],{"type":15,"value":1159}," VkExecutionGraphPipelineScratchSizeAMDX",{"type":10,"tag":137,"props":1161,"children":1162},{"style":203},[1163],{"type":15,"value":234},{"type":10,"tag":137,"props":1165,"children":1166},{"style":170},[1167],{"type":15,"value":1168}," pSizeInfo",{"type":10,"tag":137,"props":1170,"children":1171},{"style":144},[1172],{"type":15,"value":292},{"type":10,"tag":11,"props":1174,"children":1175},{},[1176,1178,1184],{"type":15,"value":1177},"Applications can query the required amount of scratch memory for a given pipeline, and the address of a buffer of that size must be provided when calling ",{"type":10,"tag":133,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":15,"value":1183},"vkCmdDispatchGraphAMDX",{"type":15,"value":1185},".\nThe amount of scratch memory needed by a given pipeline is related to the number and size of payloads across the whole graph; while the exact relationship is implementation dependent, reducing the number of unique nodes (different name string) and size of payloads can reduce scratch memory consumption.",{"type":10,"tag":11,"props":1187,"children":1188},{},[1189,1191,1197,1198,1204,1206,1211,1213,1219],{"type":15,"value":1190},"A range of sizes are returned by the implementation; any size between ",{"type":10,"tag":133,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":15,"value":1196},"minSize",{"type":15,"value":524},{"type":10,"tag":133,"props":1199,"children":1201},{"className":1200},[],[1202],{"type":15,"value":1203},"maxSize",{"type":15,"value":1205}," can be used, though the actual memory consumed will be snapped to ",{"type":10,"tag":133,"props":1207,"children":1209},{"className":1208},[],[1210],{"type":15,"value":1196},{"type":15,"value":1212}," + an integer multiple of ",{"type":10,"tag":133,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":15,"value":1218},"sizeGranularity",{"type":15,"value":1220},".\nChoosing any value less than the maximum size will reduce memory pressure but will likely result in degraded performance.",{"type":10,"tag":11,"props":1222,"children":1223},{},[1224],{"type":15,"value":1225},"Buffers created for this purpose must use the new buffer usage flags:",{"type":10,"tag":125,"props":1227,"children":1229},{"className":127,"code":1228,"language":129,"meta":130,"style":130},"VK_BUFFER_USAGE_EXECUTION_GRAPH_SCRATCH_BIT_AMDX\nVK_BUFFER_USAGE_2_EXECUTION_GRAPH_SCRATCH_BIT_AMDX\n",[1230],{"type":10,"tag":133,"props":1231,"children":1232},{"__ignoreMap":130},[1233,1241],{"type":10,"tag":137,"props":1234,"children":1235},{"class":139,"line":140},[1236],{"type":10,"tag":137,"props":1237,"children":1238},{"style":144},[1239],{"type":15,"value":1240},"VK_BUFFER_USAGE_EXECUTION_GRAPH_SCRATCH_BIT_AMDX\n",{"type":10,"tag":137,"props":1242,"children":1243},{"class":139,"line":161},[1244],{"type":10,"tag":137,"props":1245,"children":1246},{"style":144},[1247],{"type":15,"value":1248},"VK_BUFFER_USAGE_2_EXECUTION_GRAPH_SCRATCH_BIT_AMDX\n",{"type":10,"tag":11,"props":1250,"children":1251},{},[1252],{"type":15,"value":1253},"Scratch memory needs to be initialized against a graph pipeline before it can be used with that graph for the first time, using the following command:",{"type":10,"tag":125,"props":1255,"children":1257},{"className":127,"code":1256,"language":129,"meta":130,"style":130},"void vkCmdInitializeGraphScratchMemoryAMDX(\n VkCommandBuffer commandBuffer,\n VkPipeline executionGraph,\n VkDeviceAddress scratch,\n VkDeviceSize scratchSize);\n",[1258],{"type":10,"tag":133,"props":1259,"children":1260},{"__ignoreMap":130},[1261,1278,1295,1310,1327],{"type":10,"tag":137,"props":1262,"children":1263},{"class":139,"line":140},[1264,1269,1274],{"type":10,"tag":137,"props":1265,"children":1266},{"style":203},[1267],{"type":15,"value":1268},"void",{"type":10,"tag":137,"props":1270,"children":1271},{"style":150},[1272],{"type":15,"value":1273}," vkCmdInitializeGraphScratchMemoryAMDX",{"type":10,"tag":137,"props":1275,"children":1276},{"style":144},[1277],{"type":15,"value":158},{"type":10,"tag":137,"props":1279,"children":1280},{"class":139,"line":161},[1281,1286,1291],{"type":10,"tag":137,"props":1282,"children":1283},{"style":144},[1284],{"type":15,"value":1285}," VkCommandBuffer ",{"type":10,"tag":137,"props":1287,"children":1288},{"style":170},[1289],{"type":15,"value":1290},"commandBuffer",{"type":10,"tag":137,"props":1292,"children":1293},{"style":144},[1294],{"type":15,"value":178},{"type":10,"tag":137,"props":1296,"children":1297},{"class":139,"line":181},[1298,1302,1306],{"type":10,"tag":137,"props":1299,"children":1300},{"style":144},[1301],{"type":15,"value":1142},{"type":10,"tag":137,"props":1303,"children":1304},{"style":170},[1305],{"type":15,"value":1147},{"type":10,"tag":137,"props":1307,"children":1308},{"style":144},[1309],{"type":15,"value":178},{"type":10,"tag":137,"props":1311,"children":1312},{"class":139,"line":199},[1313,1318,1323],{"type":10,"tag":137,"props":1314,"children":1315},{"style":144},[1316],{"type":15,"value":1317}," VkDeviceAddress ",{"type":10,"tag":137,"props":1319,"children":1320},{"style":170},[1321],{"type":15,"value":1322},"scratch",{"type":10,"tag":137,"props":1324,"children":1325},{"style":144},[1326],{"type":15,"value":178},{"type":10,"tag":137,"props":1328,"children":1329},{"class":139,"line":218},[1330,1335,1340],{"type":10,"tag":137,"props":1331,"children":1332},{"style":144},[1333],{"type":15,"value":1334}," VkDeviceSize ",{"type":10,"tag":137,"props":1336,"children":1337},{"style":170},[1338],{"type":15,"value":1339},"scratchSize",{"type":10,"tag":137,"props":1341,"children":1342},{"style":144},[1343],{"type":15,"value":292},{"type":10,"tag":11,"props":1345,"children":1346},{},[1347,1349,1354,1356,1361,1363,1369,1371,1377],{"type":15,"value":1348},"This command initializes it for the execution graph pipeline ",{"type":10,"tag":133,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":15,"value":1147},{"type":15,"value":1355}," with the specified ",{"type":10,"tag":133,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":15,"value":1339},{"type":15,"value":1362},".\nScratch memory will need to be re-initialized if it is going to be reused with a different execution graph pipeline, but can be used with the same pipeline repeatedly without re-initialization.\nScratch memory initialization can be synchronized using the compute pipeline stage ",{"type":10,"tag":133,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":15,"value":1368},"VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT",{"type":15,"value":1370}," and shader write access flag ",{"type":10,"tag":133,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":15,"value":1376},"VK_ACCESS_SHADER_WRITE_BIT",{"type":15,"value":757},{"type":10,"tag":106,"props":1379,"children":1381},{"id":1380},"_dispatch_a_graph",[1382],{"type":15,"value":1383},"Dispatch a graph",{"type":10,"tag":11,"props":1385,"children":1386},{},[1387],{"type":15,"value":1388},"Once an execution graph has been created and scratch memory has been initialized for it, the following commands can be used to execute the graph:",{"type":10,"tag":125,"props":1390,"children":1392},{"className":127,"code":1391,"language":129,"meta":130,"style":130},"typedef struct VkDispatchGraphInfoAMDX {\n uint32_t nodeIndex;\n uint32_t payloadCount;\n VkDeviceOrHostAddressConstAMDX payloads;\n uint64_t payloadStride;\n} VkDispatchGraphInfoAMDX;\n\ntypedef struct VkDispatchGraphCountInfoAMDX {\n uint32_t count;\n VkDeviceOrHostAddressConstAMDX infos;\n uint64_t stride;\n} VkDispatchGraphCountInfoAMDX;\n\nvoid vkCmdDispatchGraphAMDX(\n VkCommandBuffer commandBuffer,\n VkDeviceAddress scratch,\n VkDeviceSize scratchSize,\n const VkDispatchGraphCountInfoAMDX* pCountInfo);\n\nvoid vkCmdDispatchGraphIndirectAMDX(\n VkCommandBuffer commandBuffer,\n VkDeviceAddress scratch,\n VkDeviceSize scratchSize,\n const VkDispatchGraphCountInfoAMDX* pCountInfo);\n\nvoid vkCmdDispatchGraphIndirectCountAMDX(\n VkCommandBuffer commandBuffer,\n VkDeviceAddress scratch,\n VkDeviceSize scratchSize,\n VkDeviceAddress countInfo);\n",[1393],{"type":10,"tag":133,"props":1394,"children":1395},{"__ignoreMap":130},[1396,1412,1424,1436,1444,1457,1465,1472,1488,1500,1508,1520,1528,1535,1551,1566,1581,1596,1621,1628,1645,1661,1677,1693,1717,1725,1742,1758,1774,1790],{"type":10,"tag":137,"props":1397,"children":1398},{"class":139,"line":140},[1399,1403,1407],{"type":10,"tag":137,"props":1400,"children":1401},{"style":203},[1402],{"type":15,"value":311},{"type":10,"tag":137,"props":1404,"children":1405},{"style":203},[1406],{"type":15,"value":316},{"type":10,"tag":137,"props":1408,"children":1409},{"style":144},[1410],{"type":15,"value":1411}," VkDispatchGraphInfoAMDX {\n",{"type":10,"tag":137,"props":1413,"children":1414},{"class":139,"line":161},[1415,1419],{"type":10,"tag":137,"props":1416,"children":1417},{"style":203},[1418],{"type":15,"value":206},{"type":10,"tag":137,"props":1420,"children":1421},{"style":144},[1422],{"type":15,"value":1423}," nodeIndex;\n",{"type":10,"tag":137,"props":1425,"children":1426},{"class":139,"line":181},[1427,1431],{"type":10,"tag":137,"props":1428,"children":1429},{"style":203},[1430],{"type":15,"value":206},{"type":10,"tag":137,"props":1432,"children":1433},{"style":144},[1434],{"type":15,"value":1435}," payloadCount;\n",{"type":10,"tag":137,"props":1437,"children":1438},{"class":139,"line":199},[1439],{"type":10,"tag":137,"props":1440,"children":1441},{"style":144},[1442],{"type":15,"value":1443}," VkDeviceOrHostAddressConstAMDX payloads;\n",{"type":10,"tag":137,"props":1445,"children":1446},{"class":139,"line":218},[1447,1452],{"type":10,"tag":137,"props":1448,"children":1449},{"style":203},[1450],{"type":15,"value":1451}," uint64_t",{"type":10,"tag":137,"props":1453,"children":1454},{"style":144},[1455],{"type":15,"value":1456}," payloadStride;\n",{"type":10,"tag":137,"props":1458,"children":1459},{"class":139,"line":246},[1460],{"type":10,"tag":137,"props":1461,"children":1462},{"style":144},[1463],{"type":15,"value":1464},"} VkDispatchGraphInfoAMDX;\n",{"type":10,"tag":137,"props":1466,"children":1467},{"class":139,"line":272},[1468],{"type":10,"tag":137,"props":1469,"children":1470},{"emptyLinePlaceholder":299},[1471],{"type":15,"value":302},{"type":10,"tag":137,"props":1473,"children":1474},{"class":139,"line":295},[1475,1479,1483],{"type":10,"tag":137,"props":1476,"children":1477},{"style":203},[1478],{"type":15,"value":311},{"type":10,"tag":137,"props":1480,"children":1481},{"style":203},[1482],{"type":15,"value":316},{"type":10,"tag":137,"props":1484,"children":1485},{"style":144},[1486],{"type":15,"value":1487}," VkDispatchGraphCountInfoAMDX {\n",{"type":10,"tag":137,"props":1489,"children":1490},{"class":139,"line":305},[1491,1495],{"type":10,"tag":137,"props":1492,"children":1493},{"style":203},[1494],{"type":15,"value":206},{"type":10,"tag":137,"props":1496,"children":1497},{"style":144},[1498],{"type":15,"value":1499}," count;\n",{"type":10,"tag":137,"props":1501,"children":1502},{"class":139,"line":324},[1503],{"type":10,"tag":137,"props":1504,"children":1505},{"style":144},[1506],{"type":15,"value":1507}," VkDeviceOrHostAddressConstAMDX infos;\n",{"type":10,"tag":137,"props":1509,"children":1510},{"class":139,"line":333},[1511,1515],{"type":10,"tag":137,"props":1512,"children":1513},{"style":203},[1514],{"type":15,"value":1451},{"type":10,"tag":137,"props":1516,"children":1517},{"style":144},[1518],{"type":15,"value":1519}," stride;\n",{"type":10,"tag":137,"props":1521,"children":1522},{"class":139,"line":351},[1523],{"type":10,"tag":137,"props":1524,"children":1525},{"style":144},[1526],{"type":15,"value":1527},"} VkDispatchGraphCountInfoAMDX;\n",{"type":10,"tag":137,"props":1529,"children":1530},{"class":139,"line":360},[1531],{"type":10,"tag":137,"props":1532,"children":1533},{"emptyLinePlaceholder":299},[1534],{"type":15,"value":302},{"type":10,"tag":137,"props":1536,"children":1537},{"class":139,"line":373},[1538,1542,1547],{"type":10,"tag":137,"props":1539,"children":1540},{"style":203},[1541],{"type":15,"value":1268},{"type":10,"tag":137,"props":1543,"children":1544},{"style":150},[1545],{"type":15,"value":1546}," vkCmdDispatchGraphAMDX",{"type":10,"tag":137,"props":1548,"children":1549},{"style":144},[1550],{"type":15,"value":158},{"type":10,"tag":137,"props":1552,"children":1553},{"class":139,"line":395},[1554,1558,1562],{"type":10,"tag":137,"props":1555,"children":1556},{"style":144},[1557],{"type":15,"value":1285},{"type":10,"tag":137,"props":1559,"children":1560},{"style":170},[1561],{"type":15,"value":1290},{"type":10,"tag":137,"props":1563,"children":1564},{"style":144},[1565],{"type":15,"value":178},{"type":10,"tag":137,"props":1567,"children":1568},{"class":139,"line":417},[1569,1573,1577],{"type":10,"tag":137,"props":1570,"children":1571},{"style":144},[1572],{"type":15,"value":1317},{"type":10,"tag":137,"props":1574,"children":1575},{"style":170},[1576],{"type":15,"value":1322},{"type":10,"tag":137,"props":1578,"children":1579},{"style":144},[1580],{"type":15,"value":178},{"type":10,"tag":137,"props":1582,"children":1583},{"class":139,"line":426},[1584,1588,1592],{"type":10,"tag":137,"props":1585,"children":1586},{"style":144},[1587],{"type":15,"value":1334},{"type":10,"tag":137,"props":1589,"children":1590},{"style":170},[1591],{"type":15,"value":1339},{"type":10,"tag":137,"props":1593,"children":1594},{"style":144},[1595],{"type":15,"value":178},{"type":10,"tag":137,"props":1597,"children":1598},{"class":139,"line":435},[1599,1603,1608,1612,1617],{"type":10,"tag":137,"props":1600,"children":1601},{"style":203},[1602],{"type":15,"value":224},{"type":10,"tag":137,"props":1604,"children":1605},{"style":144},[1606],{"type":15,"value":1607}," VkDispatchGraphCountInfoAMDX",{"type":10,"tag":137,"props":1609,"children":1610},{"style":203},[1611],{"type":15,"value":234},{"type":10,"tag":137,"props":1613,"children":1614},{"style":170},[1615],{"type":15,"value":1616}," pCountInfo",{"type":10,"tag":137,"props":1618,"children":1619},{"style":144},[1620],{"type":15,"value":292},{"type":10,"tag":137,"props":1622,"children":1623},{"class":139,"line":449},[1624],{"type":10,"tag":137,"props":1625,"children":1626},{"emptyLinePlaceholder":299},[1627],{"type":15,"value":302},{"type":10,"tag":137,"props":1629,"children":1631},{"class":139,"line":1630},20,[1632,1636,1641],{"type":10,"tag":137,"props":1633,"children":1634},{"style":203},[1635],{"type":15,"value":1268},{"type":10,"tag":137,"props":1637,"children":1638},{"style":150},[1639],{"type":15,"value":1640}," vkCmdDispatchGraphIndirectAMDX",{"type":10,"tag":137,"props":1642,"children":1643},{"style":144},[1644],{"type":15,"value":158},{"type":10,"tag":137,"props":1646,"children":1648},{"class":139,"line":1647},21,[1649,1653,1657],{"type":10,"tag":137,"props":1650,"children":1651},{"style":144},[1652],{"type":15,"value":1285},{"type":10,"tag":137,"props":1654,"children":1655},{"style":170},[1656],{"type":15,"value":1290},{"type":10,"tag":137,"props":1658,"children":1659},{"style":144},[1660],{"type":15,"value":178},{"type":10,"tag":137,"props":1662,"children":1664},{"class":139,"line":1663},22,[1665,1669,1673],{"type":10,"tag":137,"props":1666,"children":1667},{"style":144},[1668],{"type":15,"value":1317},{"type":10,"tag":137,"props":1670,"children":1671},{"style":170},[1672],{"type":15,"value":1322},{"type":10,"tag":137,"props":1674,"children":1675},{"style":144},[1676],{"type":15,"value":178},{"type":10,"tag":137,"props":1678,"children":1680},{"class":139,"line":1679},23,[1681,1685,1689],{"type":10,"tag":137,"props":1682,"children":1683},{"style":144},[1684],{"type":15,"value":1334},{"type":10,"tag":137,"props":1686,"children":1687},{"style":170},[1688],{"type":15,"value":1339},{"type":10,"tag":137,"props":1690,"children":1691},{"style":144},[1692],{"type":15,"value":178},{"type":10,"tag":137,"props":1694,"children":1696},{"class":139,"line":1695},24,[1697,1701,1705,1709,1713],{"type":10,"tag":137,"props":1698,"children":1699},{"style":203},[1700],{"type":15,"value":224},{"type":10,"tag":137,"props":1702,"children":1703},{"style":144},[1704],{"type":15,"value":1607},{"type":10,"tag":137,"props":1706,"children":1707},{"style":203},[1708],{"type":15,"value":234},{"type":10,"tag":137,"props":1710,"children":1711},{"style":170},[1712],{"type":15,"value":1616},{"type":10,"tag":137,"props":1714,"children":1715},{"style":144},[1716],{"type":15,"value":292},{"type":10,"tag":137,"props":1718,"children":1720},{"class":139,"line":1719},25,[1721],{"type":10,"tag":137,"props":1722,"children":1723},{"emptyLinePlaceholder":299},[1724],{"type":15,"value":302},{"type":10,"tag":137,"props":1726,"children":1728},{"class":139,"line":1727},26,[1729,1733,1738],{"type":10,"tag":137,"props":1730,"children":1731},{"style":203},[1732],{"type":15,"value":1268},{"type":10,"tag":137,"props":1734,"children":1735},{"style":150},[1736],{"type":15,"value":1737}," vkCmdDispatchGraphIndirectCountAMDX",{"type":10,"tag":137,"props":1739,"children":1740},{"style":144},[1741],{"type":15,"value":158},{"type":10,"tag":137,"props":1743,"children":1745},{"class":139,"line":1744},27,[1746,1750,1754],{"type":10,"tag":137,"props":1747,"children":1748},{"style":144},[1749],{"type":15,"value":1285},{"type":10,"tag":137,"props":1751,"children":1752},{"style":170},[1753],{"type":15,"value":1290},{"type":10,"tag":137,"props":1755,"children":1756},{"style":144},[1757],{"type":15,"value":178},{"type":10,"tag":137,"props":1759,"children":1761},{"class":139,"line":1760},28,[1762,1766,1770],{"type":10,"tag":137,"props":1763,"children":1764},{"style":144},[1765],{"type":15,"value":1317},{"type":10,"tag":137,"props":1767,"children":1768},{"style":170},[1769],{"type":15,"value":1322},{"type":10,"tag":137,"props":1771,"children":1772},{"style":144},[1773],{"type":15,"value":178},{"type":10,"tag":137,"props":1775,"children":1777},{"class":139,"line":1776},29,[1778,1782,1786],{"type":10,"tag":137,"props":1779,"children":1780},{"style":144},[1781],{"type":15,"value":1334},{"type":10,"tag":137,"props":1783,"children":1784},{"style":170},[1785],{"type":15,"value":1339},{"type":10,"tag":137,"props":1787,"children":1788},{"style":144},[1789],{"type":15,"value":178},{"type":10,"tag":137,"props":1791,"children":1793},{"class":139,"line":1792},30,[1794,1798,1803],{"type":10,"tag":137,"props":1795,"children":1796},{"style":144},[1797],{"type":15,"value":1317},{"type":10,"tag":137,"props":1799,"children":1800},{"style":170},[1801],{"type":15,"value":1802},"countInfo",{"type":10,"tag":137,"props":1804,"children":1805},{"style":144},[1806],{"type":15,"value":292},{"type":10,"tag":11,"props":1808,"children":1809},{},[1810,1812,1818,1819,1825],{"type":15,"value":1811},"Each of the above commands enqueues payloads for an array of nodes in the bound execution graph pipeline, according to the contents of the ",{"type":10,"tag":133,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":15,"value":1817},"VkDispatchGraphCountInfoAMDX",{"type":15,"value":524},{"type":10,"tag":133,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":15,"value":1824},"VkDispatchGraphInfoAMDX",{"type":15,"value":1826}," structures.",{"type":10,"tag":11,"props":1828,"children":1829},{},[1830,1835,1837,1843,1845,1850,1852,1858,1859,1865],{"type":10,"tag":133,"props":1831,"children":1833},{"className":1832},[],[1834],{"type":15,"value":1183},{"type":15,"value":1836}," takes all of its arguments from the host pointers.\n",{"type":10,"tag":133,"props":1838,"children":1840},{"className":1839},[],[1841],{"type":15,"value":1842},"VkDispatchGraphCountInfoAMDX::infos.hostAddress",{"type":15,"value":1844}," is a pointer to an array of ",{"type":10,"tag":133,"props":1846,"children":1848},{"className":1847},[],[1849],{"type":15,"value":1824},{"type":15,"value":1851}," structures,\nwith stride equal to ",{"type":10,"tag":133,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":15,"value":1857},"VkDispatchGraphCountInfoAMDX::stride",{"type":15,"value":524},{"type":10,"tag":133,"props":1860,"children":1862},{"className":1861},[],[1863],{"type":15,"value":1864},"VkDispatchGraphCountInfoAMDX::count",{"type":15,"value":1866}," elements.",{"type":10,"tag":11,"props":1868,"children":1869},{},[1870,1876,1878,1884,1886,1892],{"type":10,"tag":133,"props":1871,"children":1873},{"className":1872},[],[1874],{"type":15,"value":1875},"vkCmdDispatchGraphIndirectAMDX",{"type":15,"value":1877}," consumes most parameters on the host, but uses the device address for ",{"type":10,"tag":133,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":15,"value":1883},"VkDispatchGraphCountInfoAMDX::infos",{"type":15,"value":1885},", and also treating ",{"type":10,"tag":133,"props":1887,"children":1889},{"className":1888},[],[1890],{"type":15,"value":1891},"payloads",{"type":15,"value":1893}," parameters as device addresses.",{"type":10,"tag":11,"props":1895,"children":1896},{},[1897,1903,1905,1910],{"type":10,"tag":133,"props":1898,"children":1900},{"className":1899},[],[1901],{"type":15,"value":1902},"vkCmdDispatchGraphIndirectCountAMDX",{"type":15,"value":1904}," consumes ",{"type":10,"tag":133,"props":1906,"children":1908},{"className":1907},[],[1909],{"type":15,"value":1802},{"type":15,"value":1911}," on the device and all child parameters also use device addresses.",{"type":10,"tag":11,"props":1913,"children":1914},{},[1915,1917,1923,1924,1930,1932,1937,1939,1945,1947,1953,1955,1960,1962,1967,1969,1974],{"type":15,"value":1916},"Data consumed via a device address must be from buffers created with the ",{"type":10,"tag":133,"props":1918,"children":1920},{"className":1919},[],[1921],{"type":15,"value":1922},"VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT",{"type":15,"value":524},{"type":10,"tag":133,"props":1925,"children":1927},{"className":1926},[],[1928],{"type":15,"value":1929},"VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT",{"type":15,"value":1931}," flags.\n",{"type":10,"tag":133,"props":1933,"children":1935},{"className":1934},[],[1936],{"type":15,"value":1891},{"type":15,"value":1938}," is a pointer to a linear array of payloads in memory, with a stride equal to ",{"type":10,"tag":133,"props":1940,"children":1942},{"className":1941},[],[1943],{"type":15,"value":1944},"payloadStride",{"type":15,"value":1946},".\n",{"type":10,"tag":133,"props":1948,"children":1950},{"className":1949},[],[1951],{"type":15,"value":1952},"payloadCount",{"type":15,"value":1954}," may be ",{"type":10,"tag":133,"props":1956,"children":1958},{"className":1957},[],[1959],{"type":15,"value":828},{"type":15,"value":1961},".\nThe range of memory from ",{"type":10,"tag":133,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":15,"value":1322},{"type":15,"value":1968}," up to ",{"type":10,"tag":133,"props":1970,"children":1972},{"className":1971},[],[1973],{"type":15,"value":1339},{"type":15,"value":1975}," may be used by the implementation to hold temporary data during graph execution, and can be synchronized using the compute pipeline stage and shader write access flags.",{"type":10,"tag":11,"props":1977,"children":1978},{},[1979],{"type":15,"value":1980},"These dispatch commands must not be called in protected command buffers or secondary command buffers.",{"type":10,"tag":11,"props":1982,"children":1983},{},[1984,1986,1991,1993,1999,2001,2006,2008,2013],{"type":15,"value":1985},"The size of the payload provided for each dispatched node must be at least as large as the ",{"type":10,"tag":34,"props":1987,"children":1988},{},[1989],{"type":15,"value":1990},"NodePayloadAMDX",{"type":15,"value":1992}," declaration in the node, and the layout of the payload data in memory will be interpreted as it is laid out in the selected node’s shader, including any member decorations.\nIn particular, this means for nodes that consume indirect parameters from the payload, those parameters must be provided in the correct location as specified in the shader.\nFor example, for a compute shader that does not include a ",{"type":10,"tag":133,"props":1994,"children":1996},{"className":1995},[],[1997],{"type":15,"value":1998},"StaticNumWorkgroupsAMDX",{"type":15,"value":2000}," or ",{"type":10,"tag":133,"props":2002,"children":2004},{"className":2003},[],[2005],{"type":15,"value":501},{"type":15,"value":2007}," declaration, each dispatch will consume a payload structure containing a member decorated with ",{"type":10,"tag":34,"props":2009,"children":2010},{},[2011],{"type":15,"value":2012},"PayloadDispatchIndirectAMDX",{"type":15,"value":2014}," that indicates the number of workgroups to dispatch in each dimension.",{"type":10,"tag":11,"props":2016,"children":2017},{},[2018,2020,2025],{"type":15,"value":2019},"Node payload members must be ",{"type":10,"tag":34,"props":2021,"children":2022},{},[2023],{"type":15,"value":2024},"explicitly laid out",{"type":15,"value":2026}," with offset and array stride decorations, both in the input and output.",{"type":10,"tag":726,"props":2028,"children":2029},{},[2030],{"type":10,"tag":57,"props":2031,"children":2032},{},[2033,2035,2040,2041,2047,2048,2054,2056],{"type":15,"value":2034},"If the dispatched shader uses ",{"type":10,"tag":133,"props":2036,"children":2038},{"className":2037},[],[2039],{"type":15,"value":494},{"type":15,"value":2000},{"type":10,"tag":133,"props":2042,"children":2044},{"className":2043},[],[2045],{"type":15,"value":2046},"MeshEXT",{"type":15,"value":807},{"type":10,"tag":133,"props":2049,"children":2051},{"className":2050},[],[2052],{"type":15,"value":2053},"Execution Model",{"type":15,"value":2055},", then it is allowed to not specify the input payload.\nIn this case, the payload is defined implicitly as follows:",{"type":10,"tag":726,"props":2057,"children":2058},{},[2059,2077],{"type":10,"tag":57,"props":2060,"children":2061},{},[2062,2064,2069,2070,2075],{"type":15,"value":2063},"If the ",{"type":10,"tag":133,"props":2065,"children":2067},{"className":2066},[],[2068],{"type":15,"value":1998},{"type":15,"value":2000},{"type":10,"tag":133,"props":2071,"children":2073},{"className":2072},[],[2074],{"type":15,"value":501},{"type":15,"value":2076}," execution modes are specified, the payload is empty.",{"type":10,"tag":57,"props":2078,"children":2079},{},[2080],{"type":15,"value":2081},"Otherwise, the payload is a structure with a single member that is a vector of three 32-bit unsigned integers.",{"type":10,"tag":11,"props":2083,"children":2084},{},[2085],{"type":15,"value":2086},"Payloads are always read (including built-in values) according to the input payload definition - the output payload definition must have the same size as the expected input, but does not otherwise need to match.\nApplications must take care to ensure that values are where they expect them.",{"type":10,"tag":11,"props":2088,"children":2089},{},[2090,2092,2098,2100,2105,2107,2113],{"type":15,"value":2091},"The ",{"type":10,"tag":133,"props":2093,"children":2095},{"className":2094},[],[2096],{"type":15,"value":2097},"nodeIndex",{"type":15,"value":2099}," is a unique integer identifier identifying a specific shader name and shader index (defined by ",{"type":10,"tag":133,"props":2101,"children":2103},{"className":2102},[],[2104],{"type":15,"value":586},{"type":15,"value":2106},") added to the executable graph pipeline.\n",{"type":10,"tag":133,"props":2108,"children":2110},{"className":2109},[],[2111],{"type":15,"value":2112},"vkGetExecutionGraphPipelineNodeIndexAMDX",{"type":15,"value":2114}," can be used to query the identifier for a given node:",{"type":10,"tag":125,"props":2116,"children":2118},{"className":127,"code":2117,"language":129,"meta":130,"style":130},"VkResult vkGetExecutionGraphPipelineNodeIndexAMDX(\n VkDevice device,\n VkPipeline executionGraph,\n const VkPipelineShaderStageNodeCreateInfoAMDX* pNodeInfo,\n uint32_t* pNodeIndex);\n",[2119],{"type":10,"tag":133,"props":2120,"children":2121},{"__ignoreMap":130},[2122,2137,2152,2168,2193],{"type":10,"tag":137,"props":2123,"children":2124},{"class":139,"line":140},[2125,2129,2133],{"type":10,"tag":137,"props":2126,"children":2127},{"style":144},[2128],{"type":15,"value":147},{"type":10,"tag":137,"props":2130,"children":2131},{"style":150},[2132],{"type":15,"value":2112},{"type":10,"tag":137,"props":2134,"children":2135},{"style":144},[2136],{"type":15,"value":158},{"type":10,"tag":137,"props":2138,"children":2139},{"class":139,"line":161},[2140,2144,2148],{"type":10,"tag":137,"props":2141,"children":2142},{"style":144},[2143],{"type":15,"value":167},{"type":10,"tag":137,"props":2145,"children":2146},{"style":170},[2147],{"type":15,"value":173},{"type":10,"tag":137,"props":2149,"children":2150},{"style":144},[2151],{"type":15,"value":178},{"type":10,"tag":137,"props":2153,"children":2154},{"class":139,"line":181},[2155,2160,2164],{"type":10,"tag":137,"props":2156,"children":2157},{"style":144},[2158],{"type":15,"value":2159}," VkPipeline ",{"type":10,"tag":137,"props":2161,"children":2162},{"style":170},[2163],{"type":15,"value":1147},{"type":10,"tag":137,"props":2165,"children":2166},{"style":144},[2167],{"type":15,"value":178},{"type":10,"tag":137,"props":2169,"children":2170},{"class":139,"line":199},[2171,2175,2180,2184,2189],{"type":10,"tag":137,"props":2172,"children":2173},{"style":203},[2174],{"type":15,"value":224},{"type":10,"tag":137,"props":2176,"children":2177},{"style":144},[2178],{"type":15,"value":2179}," VkPipelineShaderStageNodeCreateInfoAMDX",{"type":10,"tag":137,"props":2181,"children":2182},{"style":203},[2183],{"type":15,"value":234},{"type":10,"tag":137,"props":2185,"children":2186},{"style":170},[2187],{"type":15,"value":2188}," pNodeInfo",{"type":10,"tag":137,"props":2190,"children":2191},{"style":144},[2192],{"type":15,"value":178},{"type":10,"tag":137,"props":2194,"children":2195},{"class":139,"line":218},[2196,2201,2206],{"type":10,"tag":137,"props":2197,"children":2198},{"style":203},[2199],{"type":15,"value":2200}," uint32_t*",{"type":10,"tag":137,"props":2202,"children":2203},{"style":170},[2204],{"type":15,"value":2205}," pNodeIndex",{"type":10,"tag":137,"props":2207,"children":2208},{"style":144},[2209],{"type":15,"value":292},{"type":10,"tag":11,"props":2211,"children":2212},{},[2213,2219,2221,2227,2229,2235,2237,2242],{"type":10,"tag":133,"props":2214,"children":2216},{"className":2215},[],[2217],{"type":15,"value":2218},"pNodeInfo",{"type":15,"value":2220}," specifies the shader name and index as set up when creating the pipeline, with the associated node index returned in ",{"type":10,"tag":133,"props":2222,"children":2224},{"className":2223},[],[2225],{"type":15,"value":2226},"pNodeIndex",{"type":15,"value":2228},".\nWhen used with this function, ",{"type":10,"tag":133,"props":2230,"children":2232},{"className":2231},[],[2233],{"type":15,"value":2234},"pNodeInfo→pName",{"type":15,"value":2236}," must not be ",{"type":10,"tag":133,"props":2238,"children":2240},{"className":2239},[],[2241],{"type":15,"value":775},{"type":15,"value":757},{"type":10,"tag":2244,"props":2245,"children":2246},"note",{},[2247,2252],{"type":10,"tag":11,"props":2248,"children":2249},{},[2250],{"type":15,"value":2251},"To summarize, execution graphs use two kinds of indexes:",{"type":10,"tag":53,"props":2253,"children":2254},{},[2255,2272],{"type":10,"tag":57,"props":2256,"children":2257},{},[2258,2263,2265,2270],{"type":10,"tag":34,"props":2259,"children":2260},{},[2261],{"type":15,"value":2262},"shader index",{"type":15,"value":2264}," specified in ",{"type":10,"tag":133,"props":2266,"children":2268},{"className":2267},[],[2269],{"type":15,"value":586},{"type":15,"value":2271}," and used to enqueue payloads,",{"type":10,"tag":57,"props":2273,"children":2274},{},[2275,2280,2281,2286],{"type":10,"tag":34,"props":2276,"children":2277},{},[2278],{"type":15,"value":2279},"node index",{"type":15,"value":2264},{"type":10,"tag":133,"props":2282,"children":2284},{"className":2283},[],[2285],{"type":15,"value":1824},{"type":15,"value":2287}," and used only for launching the graph from a command buffer.",{"type":10,"tag":11,"props":2289,"children":2290},{},[2291],{"type":15,"value":2292},"Execution graph pipelines and their resources are bound using a new pipeline bind point:",{"type":10,"tag":125,"props":2294,"children":2296},{"className":127,"code":2295,"language":129,"meta":130,"style":130},"VK_PIPELINE_BIND_POINT_EXECUTION_GRAPH_AMDX\n",[2297],{"type":10,"tag":133,"props":2298,"children":2299},{"__ignoreMap":130},[2300],{"type":10,"tag":137,"props":2301,"children":2302},{"class":139,"line":140},[2303],{"type":10,"tag":137,"props":2304,"children":2305},{"style":144},[2306],{"type":15,"value":2295},{"type":10,"tag":106,"props":2308,"children":2310},{"id":2309},"_properties",[2311],{"type":15,"value":2312},"Properties",{"type":10,"tag":11,"props":2314,"children":2315},{},[2316],{"type":15,"value":2317},"The following new properties are added to Vulkan:",{"type":10,"tag":125,"props":2319,"children":2321},{"className":127,"code":2320,"language":129,"meta":130,"style":130},"typedef VkPhysicalDeviceShaderEnqueuePropertiesAMDX {\n VkStructureType sType;\n void* pNext;\n uint32_t maxExecutionGraphDepth;\n uint32_t maxExecutionGraphShaderOutputNodes;\n uint32_t maxExecutionGraphShaderPayloadSize;\n uint32_t maxExecutionGraphShaderPayloadCount;\n uint32_t executionGraphDispatchAddressAlignment;\n uint32_t maxExecutionGraphWorkgroupCount[3];\n uint32_t maxExecutionGraphWorkgroups;\n} VkPhysicalDeviceShaderEnqueuePropertiesAMDX;\n",[2322],{"type":10,"tag":133,"props":2323,"children":2324},{"__ignoreMap":130},[2325,2337,2344,2355,2367,2379,2391,2403,2415,2442,2454],{"type":10,"tag":137,"props":2326,"children":2327},{"class":139,"line":140},[2328,2332],{"type":10,"tag":137,"props":2329,"children":2330},{"style":203},[2331],{"type":15,"value":311},{"type":10,"tag":137,"props":2333,"children":2334},{"style":144},[2335],{"type":15,"value":2336}," VkPhysicalDeviceShaderEnqueuePropertiesAMDX {\n",{"type":10,"tag":137,"props":2338,"children":2339},{"class":139,"line":161},[2340],{"type":10,"tag":137,"props":2341,"children":2342},{"style":144},[2343],{"type":15,"value":1050},{"type":10,"tag":137,"props":2345,"children":2346},{"class":139,"line":181},[2347,2351],{"type":10,"tag":137,"props":2348,"children":2349},{"style":203},[2350],{"type":15,"value":1058},{"type":10,"tag":137,"props":2352,"children":2353},{"style":144},[2354],{"type":15,"value":1063},{"type":10,"tag":137,"props":2356,"children":2357},{"class":139,"line":199},[2358,2362],{"type":10,"tag":137,"props":2359,"children":2360},{"style":203},[2361],{"type":15,"value":206},{"type":10,"tag":137,"props":2363,"children":2364},{"style":144},[2365],{"type":15,"value":2366}," maxExecutionGraphDepth;\n",{"type":10,"tag":137,"props":2368,"children":2369},{"class":139,"line":218},[2370,2374],{"type":10,"tag":137,"props":2371,"children":2372},{"style":203},[2373],{"type":15,"value":206},{"type":10,"tag":137,"props":2375,"children":2376},{"style":144},[2377],{"type":15,"value":2378}," maxExecutionGraphShaderOutputNodes;\n",{"type":10,"tag":137,"props":2380,"children":2381},{"class":139,"line":246},[2382,2386],{"type":10,"tag":137,"props":2383,"children":2384},{"style":203},[2385],{"type":15,"value":206},{"type":10,"tag":137,"props":2387,"children":2388},{"style":144},[2389],{"type":15,"value":2390}," maxExecutionGraphShaderPayloadSize;\n",{"type":10,"tag":137,"props":2392,"children":2393},{"class":139,"line":272},[2394,2398],{"type":10,"tag":137,"props":2395,"children":2396},{"style":203},[2397],{"type":15,"value":206},{"type":10,"tag":137,"props":2399,"children":2400},{"style":144},[2401],{"type":15,"value":2402}," maxExecutionGraphShaderPayloadCount;\n",{"type":10,"tag":137,"props":2404,"children":2405},{"class":139,"line":295},[2406,2410],{"type":10,"tag":137,"props":2407,"children":2408},{"style":203},[2409],{"type":15,"value":206},{"type":10,"tag":137,"props":2411,"children":2412},{"style":144},[2413],{"type":15,"value":2414}," executionGraphDispatchAddressAlignment;\n",{"type":10,"tag":137,"props":2416,"children":2417},{"class":139,"line":305},[2418,2422,2427,2432,2437],{"type":10,"tag":137,"props":2419,"children":2420},{"style":203},[2421],{"type":15,"value":206},{"type":10,"tag":137,"props":2423,"children":2424},{"style":170},[2425],{"type":15,"value":2426}," maxExecutionGraphWorkgroupCount",{"type":10,"tag":137,"props":2428,"children":2429},{"style":144},[2430],{"type":15,"value":2431},"[",{"type":10,"tag":137,"props":2433,"children":2434},{"style":567},[2435],{"type":15,"value":2436},"3",{"type":10,"tag":137,"props":2438,"children":2439},{"style":144},[2440],{"type":15,"value":2441},"];\n",{"type":10,"tag":137,"props":2443,"children":2444},{"class":139,"line":324},[2445,2449],{"type":10,"tag":137,"props":2446,"children":2447},{"style":203},[2448],{"type":15,"value":206},{"type":10,"tag":137,"props":2450,"children":2451},{"style":144},[2452],{"type":15,"value":2453}," maxExecutionGraphWorkgroups;\n",{"type":10,"tag":137,"props":2455,"children":2456},{"class":139,"line":333},[2457],{"type":10,"tag":137,"props":2458,"children":2459},{"style":144},[2460],{"type":15,"value":2461},"} VkPhysicalDeviceShaderEnqueuePropertiesAMDX;\n",{"type":10,"tag":11,"props":2463,"children":2464},{},[2465],{"type":15,"value":2466},"Each limit is defined as follows:",{"type":10,"tag":726,"props":2468,"children":2469},{},[2470,2481,2492,2503,2514,2533,2544],{"type":10,"tag":57,"props":2471,"children":2472},{},[2473,2479],{"type":10,"tag":133,"props":2474,"children":2476},{"className":2475},[],[2477],{"type":15,"value":2478},"maxExecutionGraphDepth",{"type":15,"value":2480}," defines the maximum node chain length in the graph, and must be at least 32.\nA node that is dispatched with an API command is at depth 1 and the node that receives a payload from it is at depth 2, and so on.\nIf a node uses tail recursion, each recursive call increases the depth by 1 as well.",{"type":10,"tag":57,"props":2482,"children":2483},{},[2484,2490],{"type":10,"tag":133,"props":2485,"children":2487},{"className":2486},[],[2488],{"type":15,"value":2489},"maxExecutionGraphShaderOutputNodes",{"type":15,"value":2491}," specifies the maximum number of unique nodes that can be dispatched from a single shader, and must be at least 256.",{"type":10,"tag":57,"props":2493,"children":2494},{},[2495,2501],{"type":10,"tag":133,"props":2496,"children":2498},{"className":2497},[],[2499],{"type":15,"value":2500},"maxExecutionGraphShaderPayloadSize",{"type":15,"value":2502}," specifies the maximum total size of payload declarations in a shader, and must be at least 32KB.",{"type":10,"tag":57,"props":2504,"children":2505},{},[2506,2512],{"type":10,"tag":133,"props":2507,"children":2509},{"className":2508},[],[2510],{"type":15,"value":2511},"maxExecutionGraphShaderPayloadCount",{"type":15,"value":2513}," specifies the maximum number of output payloads that can be initialized in a single workgroup, and must be at least 256.",{"type":10,"tag":57,"props":2515,"children":2516},{},[2517,2523,2525,2531],{"type":10,"tag":133,"props":2518,"children":2520},{"className":2519},[],[2521],{"type":15,"value":2522},"executionGraphDispatchAddressAlignment",{"type":15,"value":2524}," specifies the alignment of non-scratch ",{"type":10,"tag":133,"props":2526,"children":2528},{"className":2527},[],[2529],{"type":15,"value":2530},"VkDeviceAddress",{"type":15,"value":2532}," arguments consumed by graph dispatch commands, and must be no more than 4 bytes.",{"type":10,"tag":57,"props":2534,"children":2535},{},[2536,2542],{"type":10,"tag":133,"props":2537,"children":2539},{"className":2538},[],[2540],{"type":15,"value":2541},"maxExecutionGraphWorkgroupCount[3]",{"type":15,"value":2543}," describes the maximum number of local workgroups that a shader can be dispatched with,\nand must be at least (65535, 65535, 65535) for the X, Y, and Z dimensions, respectively.",{"type":10,"tag":57,"props":2545,"children":2546},{},[2547,2553],{"type":10,"tag":133,"props":2548,"children":2550},{"className":2549},[],[2551],{"type":15,"value":2552},"maxExecutionGraphWorkgroups",{"type":15,"value":2554}," describes the total number of local workgroups that a shader can be dispatched with and must be at least 16777215.",{"type":10,"tag":106,"props":2556,"children":2558},{"id":2557},"_features",[2559],{"type":15,"value":2560},"Features",{"type":10,"tag":11,"props":2562,"children":2563},{},[2564],{"type":15,"value":2565},"The following new features are added to Vulkan:",{"type":10,"tag":125,"props":2567,"children":2569},{"className":127,"code":2568,"language":129,"meta":130,"style":130},"typedef VkPhysicalDeviceShaderEnqueueFeaturesAMDX {\n VkStructureType sType;\n void* pNext;\n VkBool32 shaderEnqueue;\n VkBool32 shaderMeshEnqueue;\n} VkPhysicalDeviceShaderEnqueueFeaturesAMDX;\n",[2570],{"type":10,"tag":133,"props":2571,"children":2572},{"__ignoreMap":130},[2573,2585,2592,2603,2611,2619],{"type":10,"tag":137,"props":2574,"children":2575},{"class":139,"line":140},[2576,2580],{"type":10,"tag":137,"props":2577,"children":2578},{"style":203},[2579],{"type":15,"value":311},{"type":10,"tag":137,"props":2581,"children":2582},{"style":144},[2583],{"type":15,"value":2584}," VkPhysicalDeviceShaderEnqueueFeaturesAMDX {\n",{"type":10,"tag":137,"props":2586,"children":2587},{"class":139,"line":161},[2588],{"type":10,"tag":137,"props":2589,"children":2590},{"style":144},[2591],{"type":15,"value":1050},{"type":10,"tag":137,"props":2593,"children":2594},{"class":139,"line":181},[2595,2599],{"type":10,"tag":137,"props":2596,"children":2597},{"style":203},[2598],{"type":15,"value":1058},{"type":10,"tag":137,"props":2600,"children":2601},{"style":144},[2602],{"type":15,"value":1063},{"type":10,"tag":137,"props":2604,"children":2605},{"class":139,"line":199},[2606],{"type":10,"tag":137,"props":2607,"children":2608},{"style":144},[2609],{"type":15,"value":2610}," VkBool32 shaderEnqueue;\n",{"type":10,"tag":137,"props":2612,"children":2613},{"class":139,"line":218},[2614],{"type":10,"tag":137,"props":2615,"children":2616},{"style":144},[2617],{"type":15,"value":2618}," VkBool32 shaderMeshEnqueue;\n",{"type":10,"tag":137,"props":2620,"children":2621},{"class":139,"line":246},[2622],{"type":10,"tag":137,"props":2623,"children":2624},{"style":144},[2625],{"type":15,"value":2626},"} VkPhysicalDeviceShaderEnqueueFeaturesAMDX;\n",{"type":10,"tag":11,"props":2628,"children":2629},{},[2630,2631,2637,2639,2645],{"type":15,"value":2091},{"type":10,"tag":133,"props":2632,"children":2634},{"className":2633},[],[2635],{"type":15,"value":2636},"shaderEnqueue",{"type":15,"value":2638}," feature enables the ability to enqueue compute shader workgroups from other compute shaders.\nThe ",{"type":10,"tag":133,"props":2640,"children":2642},{"className":2641},[],[2643],{"type":15,"value":2644},"shaderMeshEnqueue",{"type":15,"value":2646}," feature enables the ability to enqueue mesh nodes in an execution graph.",{"type":10,"tag":99,"props":2648,"children":2650},{"id":2649},"_spir_v_changes",[2651],{"type":15,"value":2652},"SPIR-V Changes",{"type":10,"tag":11,"props":2654,"children":2655},{},[2656],{"type":15,"value":2657},"A new capability is added:",{"type":10,"tag":2659,"props":2660,"children":2666},"table",{"className":2661},[2662,2663,2664,2665],"tableblock","frame-all","grid-all","stretch",[2667,2684,2710],{"type":10,"tag":2668,"props":2669,"children":2670},"colgroup",{},[2671,2676,2680],{"type":10,"tag":2672,"props":2673,"children":2675},"col",{"style":2674},"width: 5.2631%;",[],{"type":10,"tag":2672,"props":2677,"children":2679},{"style":2678},"width: 52.6315%;",[],{"type":10,"tag":2672,"props":2681,"children":2683},{"style":2682},"width: 42.1054%;",[],{"type":10,"tag":2685,"props":2686,"children":2687},"thead",{},[2688],{"type":10,"tag":2689,"props":2690,"children":2691},"tr",{},[2692,2702],{"type":10,"tag":2693,"props":2694,"children":2699},"th",{"className":2695,"colSpan":2698},[2662,2696,2697],"halign-center","valign-middle","2",[2700],{"type":15,"value":2701},"Capability",{"type":10,"tag":2693,"props":2703,"children":2707},{"className":2704},[2662,2705,2706],"halign-left","valign-top",[2708],{"type":15,"value":2709},"Enabling Capabilities",{"type":10,"tag":2711,"props":2712,"children":2713},"tbody",{},[2714],{"type":10,"tag":2689,"props":2715,"children":2716},{},[2717,2728,2745],{"type":10,"tag":2718,"props":2719,"children":2721},"td",{"className":2720},[2662,2705,2706],[2722],{"type":10,"tag":11,"props":2723,"children":2725},{"className":2724},[2662],[2726],{"type":15,"value":2727},"5067",{"type":10,"tag":2718,"props":2729,"children":2731},{"className":2730},[2662,2705,2706],[2732],{"type":10,"tag":11,"props":2733,"children":2735},{"className":2734},[2662],[2736,2743],{"type":10,"tag":2737,"props":2738,"children":2740},"emphasis",{"role":2739},"strong",[2741],{"type":15,"value":2742},"ShaderEnqueueAMDX",{"type":15,"value":2744},"\nUses shader enqueue capabilities",{"type":10,"tag":2718,"props":2746,"children":2748},{"className":2747},[2662,2705,2706],[2749],{"type":10,"tag":11,"props":2750,"children":2752},{"className":2751},[2662],[2753],{"type":10,"tag":2737,"props":2754,"children":2755},{"role":2739},[2756],{"type":15,"value":2757},"Shader",{"type":10,"tag":11,"props":2759,"children":2760},{},[2761],{"type":15,"value":2762},"A new storage class is added:",{"type":10,"tag":2659,"props":2764,"children":2766},{"className":2765},[2662,2663,2664,2665],[2767,2779,2796],{"type":10,"tag":2668,"props":2768,"children":2769},{},[2770,2773,2776],{"type":10,"tag":2672,"props":2771,"children":2772},{"style":2674},[],{"type":10,"tag":2672,"props":2774,"children":2775},{"style":2678},[],{"type":10,"tag":2672,"props":2777,"children":2778},{"style":2682},[],{"type":10,"tag":2685,"props":2780,"children":2781},{},[2782],{"type":10,"tag":2689,"props":2783,"children":2784},{},[2785,2791],{"type":10,"tag":2693,"props":2786,"children":2788},{"className":2787,"colSpan":2698},[2662,2696,2697],[2789],{"type":15,"value":2790},"Storage Class",{"type":10,"tag":2693,"props":2792,"children":2794},{"className":2793},[2662,2705,2706],[2795],{"type":15,"value":2709},{"type":10,"tag":2711,"props":2797,"children":2798},{},[2799],{"type":10,"tag":2689,"props":2800,"children":2801},{},[2802,2812,2855],{"type":10,"tag":2718,"props":2803,"children":2805},{"className":2804},[2662,2705,2706],[2806],{"type":10,"tag":11,"props":2807,"children":2809},{"className":2808},[2662],[2810],{"type":15,"value":2811},"5068",{"type":10,"tag":2718,"props":2813,"children":2815},{"className":2814},[2662,2705,2706],[2816],{"type":10,"tag":11,"props":2817,"children":2819},{"className":2818},[2662],[2820,2824,2826,2828,2833,2835,2839,2841,2845,2847,2851,2853],{"type":10,"tag":2737,"props":2821,"children":2822},{"role":2739},[2823],{"type":15,"value":1990},{"type":15,"value":2825},"\nStorage for Node Payloads.",{"type":15,"value":2827},"\nVariables declared with ",{"type":10,"tag":2737,"props":2829,"children":2830},{"role":2739},[2831],{"type":15,"value":2832},"OpVariable",{"type":15,"value":2834}," in the ",{"type":10,"tag":2737,"props":2836,"children":2837},{"role":2739},[2838],{"type":15,"value":494},{"type":15,"value":2840}," execution model with the ",{"type":10,"tag":2737,"props":2842,"children":2843},{"role":2739},[2844],{"type":15,"value":501},{"type":15,"value":2846}," execution mode are visible across all invocations within a workgroup; and other variables declared with ",{"type":10,"tag":2737,"props":2848,"children":2849},{"role":2739},[2850],{"type":15,"value":2832},{"type":15,"value":2852}," in this storage class are visible across all invocations within a node dispatch.\nVariables declared with this storage class are readable and writable, and must not have initializers.",{"type":15,"value":2854},"\nPointers to this storage class are also used to point to payloads allocated and enqueued for other nodes.",{"type":10,"tag":2718,"props":2856,"children":2858},{"className":2857},[2662,2705,2706],[2859],{"type":10,"tag":11,"props":2860,"children":2862},{"className":2861},[2662],[2863],{"type":10,"tag":2737,"props":2864,"children":2865},{"role":2739},[2866],{"type":15,"value":2742},{"type":10,"tag":11,"props":2868,"children":2869},{},[2870,2872,2877],{"type":15,"value":2871},"An entry point must only declare one variable in the ",{"type":10,"tag":133,"props":2873,"children":2875},{"className":2874},[],[2876],{"type":15,"value":1990},{"type":15,"value":2878}," storage class in its interface.",{"type":10,"tag":11,"props":2880,"children":2881},{},[2882],{"type":15,"value":2883},"New execution modes are added:",{"type":10,"tag":2659,"props":2885,"children":2887},{"className":2886},[2662,2663,2664,2665],[2888,2913,2936],{"type":10,"tag":2668,"props":2889,"children":2890},{},[2891,2895,2899,2903,2906,2909],{"type":10,"tag":2672,"props":2892,"children":2894},{"style":2893},"width: 3.5714%;",[],{"type":10,"tag":2672,"props":2896,"children":2898},{"style":2897},"width: 35.7142%;",[],{"type":10,"tag":2672,"props":2900,"children":2902},{"style":2901},"width: 10.7142%;",[],{"type":10,"tag":2672,"props":2904,"children":2905},{"style":2901},[],{"type":10,"tag":2672,"props":2907,"children":2908},{"style":2901},[],{"type":10,"tag":2672,"props":2910,"children":2912},{"style":2911},"width: 28.5718%;",[],{"type":10,"tag":2685,"props":2914,"children":2915},{},[2916],{"type":10,"tag":2689,"props":2917,"children":2918},{},[2919,2925,2931],{"type":10,"tag":2693,"props":2920,"children":2922},{"className":2921,"colSpan":2698},[2662,2696,2697],[2923],{"type":15,"value":2924},"Execution Mode",{"type":10,"tag":2693,"props":2926,"children":2928},{"className":2927,"colSpan":2436},[2662,2705,2706],[2929],{"type":15,"value":2930},"Extra Operands",{"type":10,"tag":2693,"props":2932,"children":2934},{"className":2933},[2662,2705,2706],[2935],{"type":15,"value":2709},{"type":10,"tag":2711,"props":2937,"children":2938},{},[2939,2995,3053,3150,3251,3349,3405],{"type":10,"tag":2689,"props":2940,"children":2941},{},[2942,2952,2979,2983],{"type":10,"tag":2718,"props":2943,"children":2945},{"className":2944},[2662,2705,2706],[2946],{"type":10,"tag":11,"props":2947,"children":2949},{"className":2948},[2662],[2950],{"type":15,"value":2951},"5069",{"type":10,"tag":2718,"props":2953,"children":2955},{"className":2954},[2662,2705,2706],[2956],{"type":10,"tag":11,"props":2957,"children":2959},{"className":2958},[2662],[2960,2964,2966,2968,2972,2973,2978],{"type":10,"tag":2737,"props":2961,"children":2962},{"role":2739},[2963],{"type":15,"value":501},{"type":15,"value":2965},"\nIndicates that a GLCompute shader has coalescing semantics. (GLCompute only)",{"type":15,"value":2967},"\nMust not be declared alongside ",{"type":10,"tag":2737,"props":2969,"children":2970},{"role":2739},[2971],{"type":15,"value":1998},{"type":15,"value":2000},{"type":10,"tag":2737,"props":2974,"children":2975},{"role":2739},[2976],{"type":15,"value":2977},"MaxNumWorkgroupsAMDX",{"type":15,"value":757},{"type":10,"tag":2718,"props":2980,"children":2982},{"className":2981,"colSpan":2436},[2662,2705,2706],[],{"type":10,"tag":2718,"props":2984,"children":2986},{"className":2985},[2662,2705,2706],[2987],{"type":10,"tag":11,"props":2988,"children":2990},{"className":2989},[2662],[2991],{"type":10,"tag":2737,"props":2992,"children":2993},{"role":2739},[2994],{"type":15,"value":2742},{"type":10,"tag":2689,"props":2996,"children":2997},{},[2998,3008,3023,3041],{"type":10,"tag":2718,"props":2999,"children":3001},{"className":3000},[2662,2705,2706],[3002],{"type":10,"tag":11,"props":3003,"children":3005},{"className":3004},[2662],[3006],{"type":15,"value":3007},"5071",{"type":10,"tag":2718,"props":3009,"children":3011},{"className":3010},[2662,2705,2706],[3012],{"type":10,"tag":11,"props":3013,"children":3015},{"className":3014},[2662],[3016,3021],{"type":10,"tag":2737,"props":3017,"children":3018},{"role":2739},[3019],{"type":15,"value":3020},"MaxNodeRecursionAMDX",{"type":15,"value":3022},"\nMaximum number of times a node can enqueue payloads for itself.",{"type":10,"tag":2718,"props":3024,"children":3026},{"className":3025,"colSpan":2436},[2662,2705,2706],[3027],{"type":10,"tag":11,"props":3028,"children":3030},{"className":3029},[2662],[3031,3036],{"type":10,"tag":2737,"props":3032,"children":3033},{},[3034],{"type":15,"value":3035},"\u003Cid>",{"type":10,"tag":2737,"props":3037,"children":3038},{},[3039],{"type":15,"value":3040},"Number of recursions",{"type":10,"tag":2718,"props":3042,"children":3044},{"className":3043},[2662,2705,2706],[3045],{"type":10,"tag":11,"props":3046,"children":3048},{"className":3047},[2662],[3049],{"type":10,"tag":2737,"props":3050,"children":3051},{"role":2739},[3052],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3054,"children":3055},{},[3056,3066,3122,3138],{"type":10,"tag":2718,"props":3057,"children":3059},{"className":3058},[2662,2705,2706],[3060],{"type":10,"tag":11,"props":3061,"children":3063},{"className":3062},[2662],[3064],{"type":15,"value":3065},"5070",{"type":10,"tag":2718,"props":3067,"children":3069},{"className":3068},[2662,2705,2706],[3070],{"type":10,"tag":11,"props":3071,"children":3073},{"className":3072},[2662],[3074,3079,3081,3086,3088,3093,3095,3100,3102,3106,3107,3109,3113,3115,3120],{"type":10,"tag":2737,"props":3075,"children":3076},{"role":2739},[3077],{"type":15,"value":3078},"IsApiEntryAMDX",{"type":15,"value":3080},"\nIndicates whether the shader can be dispatched directly by the client API or not. (GLCompute and MeshEXT execution models only)",{"type":10,"tag":2737,"props":3082,"children":3083},{},[3084],{"type":15,"value":3085},"Is Entry",{"type":15,"value":3087}," is a scalar Boolean value, with a value of ",{"type":10,"tag":2737,"props":3089,"children":3090},{"role":2739},[3091],{"type":15,"value":3092},"true",{"type":15,"value":3094}," indicating that it can be dispatched from the API, and ",{"type":10,"tag":2737,"props":3096,"children":3097},{"role":2739},[3098],{"type":15,"value":3099},"false",{"type":15,"value":3101}," indicating that it cannot.\nIf not specified, defaults to ",{"type":10,"tag":2737,"props":3103,"children":3104},{"role":2739},[3105],{"type":15,"value":3092},{"type":15,"value":757},{"type":15,"value":3108},"\nMust be set to ",{"type":10,"tag":2737,"props":3110,"children":3111},{"role":2739},[3112],{"type":15,"value":3099},{"type":15,"value":3114}," if ",{"type":10,"tag":2737,"props":3116,"children":3117},{"role":2739},[3118],{"type":15,"value":3119},"SharesInputWithAMDX",{"type":15,"value":3121}," is specified.",{"type":10,"tag":2718,"props":3123,"children":3125},{"className":3124,"colSpan":2436},[2662,2705,2706],[3126],{"type":10,"tag":11,"props":3127,"children":3129},{"className":3128},[2662],[3130,3134],{"type":10,"tag":2737,"props":3131,"children":3132},{},[3133],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3135,"children":3136},{},[3137],{"type":15,"value":3085},{"type":10,"tag":2718,"props":3139,"children":3141},{"className":3140},[2662,2705,2706],[3142],{"type":10,"tag":11,"props":3143,"children":3145},{"className":3144},[2662],[3146],{"type":10,"tag":2737,"props":3147,"children":3148},{"role":2739},[3149],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3151,"children":3152},{},[3153,3163,3188,3205,3222,3239],{"type":10,"tag":2718,"props":3154,"children":3156},{"className":3155},[2662,2705,2706],[3157],{"type":10,"tag":11,"props":3158,"children":3160},{"className":3159},[2662],[3161],{"type":15,"value":3162},"5072",{"type":10,"tag":2718,"props":3164,"children":3166},{"className":3165},[2662,2705,2706],[3167],{"type":10,"tag":11,"props":3168,"children":3170},{"className":3169},[2662],[3171,3175,3177,3178,3182,3183,3187],{"type":10,"tag":2737,"props":3172,"children":3173},{"role":2739},[3174],{"type":15,"value":1998},{"type":15,"value":3176},"\nStatically declare the number of workgroups dispatched for this shader, instead of obeying an API- or payload-specified value. (GLCompute and MeshEXT only)",{"type":15,"value":2967},{"type":10,"tag":2737,"props":3179,"children":3180},{"role":2739},[3181],{"type":15,"value":501},{"type":15,"value":2000},{"type":10,"tag":2737,"props":3184,"children":3185},{"role":2739},[3186],{"type":15,"value":2977},{"type":15,"value":757},{"type":10,"tag":2718,"props":3189,"children":3191},{"className":3190},[2662,2705,2706],[3192],{"type":10,"tag":11,"props":3193,"children":3195},{"className":3194},[2662],[3196,3200],{"type":10,"tag":2737,"props":3197,"children":3198},{},[3199],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3201,"children":3202},{},[3203],{"type":15,"value":3204},"x size",{"type":10,"tag":2718,"props":3206,"children":3208},{"className":3207},[2662,2705,2706],[3209],{"type":10,"tag":11,"props":3210,"children":3212},{"className":3211},[2662],[3213,3217],{"type":10,"tag":2737,"props":3214,"children":3215},{},[3216],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3218,"children":3219},{},[3220],{"type":15,"value":3221},"y size",{"type":10,"tag":2718,"props":3223,"children":3225},{"className":3224},[2662,2705,2706],[3226],{"type":10,"tag":11,"props":3227,"children":3229},{"className":3228},[2662],[3230,3234],{"type":10,"tag":2737,"props":3231,"children":3232},{},[3233],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3235,"children":3236},{},[3237],{"type":15,"value":3238},"z size",{"type":10,"tag":2718,"props":3240,"children":3242},{"className":3241},[2662,2705,2706],[3243],{"type":10,"tag":11,"props":3244,"children":3246},{"className":3245},[2662],[3247],{"type":10,"tag":2737,"props":3248,"children":3249},{"role":2739},[3250],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3252,"children":3253},{},[3254,3264,3289,3305,3321,3337],{"type":10,"tag":2718,"props":3255,"children":3257},{"className":3256},[2662,2705,2706],[3258],{"type":10,"tag":11,"props":3259,"children":3261},{"className":3260},[2662],[3262],{"type":15,"value":3263},"5077",{"type":10,"tag":2718,"props":3265,"children":3267},{"className":3266},[2662,2705,2706],[3268],{"type":10,"tag":11,"props":3269,"children":3271},{"className":3270},[2662],[3272,3276,3278,3279,3283,3284,3288],{"type":10,"tag":2737,"props":3273,"children":3274},{"role":2739},[3275],{"type":15,"value":2977},{"type":15,"value":3277},"\nDeclare the maximum number of workgroups dispatched for this shader. Dispatches must not exceed this value (GLCompute and MeshEXT only)",{"type":15,"value":2967},{"type":10,"tag":2737,"props":3280,"children":3281},{"role":2739},[3282],{"type":15,"value":501},{"type":15,"value":2000},{"type":10,"tag":2737,"props":3285,"children":3286},{"role":2739},[3287],{"type":15,"value":1998},{"type":15,"value":757},{"type":10,"tag":2718,"props":3290,"children":3292},{"className":3291},[2662,2705,2706],[3293],{"type":10,"tag":11,"props":3294,"children":3296},{"className":3295},[2662],[3297,3301],{"type":10,"tag":2737,"props":3298,"children":3299},{},[3300],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3302,"children":3303},{},[3304],{"type":15,"value":3204},{"type":10,"tag":2718,"props":3306,"children":3308},{"className":3307},[2662,2705,2706],[3309],{"type":10,"tag":11,"props":3310,"children":3312},{"className":3311},[2662],[3313,3317],{"type":10,"tag":2737,"props":3314,"children":3315},{},[3316],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3318,"children":3319},{},[3320],{"type":15,"value":3221},{"type":10,"tag":2718,"props":3322,"children":3324},{"className":3323},[2662,2705,2706],[3325],{"type":10,"tag":11,"props":3326,"children":3328},{"className":3327},[2662],[3329,3333],{"type":10,"tag":2737,"props":3330,"children":3331},{},[3332],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3334,"children":3335},{},[3336],{"type":15,"value":3238},{"type":10,"tag":2718,"props":3338,"children":3340},{"className":3339},[2662,2705,2706],[3341],{"type":10,"tag":11,"props":3342,"children":3344},{"className":3343},[2662],[3345],{"type":10,"tag":2737,"props":3346,"children":3347},{"role":2739},[3348],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3350,"children":3351},{},[3352,3362,3376,3393],{"type":10,"tag":2718,"props":3353,"children":3355},{"className":3354},[2662,2705,2706],[3356],{"type":10,"tag":11,"props":3357,"children":3359},{"className":3358},[2662],[3360],{"type":15,"value":3361},"5073",{"type":10,"tag":2718,"props":3363,"children":3365},{"className":3364},[2662,2705,2706],[3366],{"type":10,"tag":11,"props":3367,"children":3369},{"className":3368},[2662],[3370,3374],{"type":10,"tag":2737,"props":3371,"children":3372},{"role":2739},[3373],{"type":15,"value":805},{"type":15,"value":3375},"\nDeclare the node index for this shader. (GLCompute and MeshEXT only)",{"type":10,"tag":2718,"props":3377,"children":3379},{"className":3378,"colSpan":2436},[2662,2705,2706],[3380],{"type":10,"tag":11,"props":3381,"children":3383},{"className":3382},[2662],[3384,3388],{"type":10,"tag":2737,"props":3385,"children":3386},{},[3387],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3389,"children":3390},{},[3391],{"type":15,"value":3392},"Shader Index",{"type":10,"tag":2718,"props":3394,"children":3396},{"className":3395},[2662,2705,2706],[3397],{"type":10,"tag":11,"props":3398,"children":3400},{"className":3399},[2662],[3401],{"type":10,"tag":2737,"props":3402,"children":3403},{"role":2739},[3404],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3406,"children":3407},{},[3408,3418,3463,3476,3492,3496],{"type":10,"tag":2718,"props":3409,"children":3411},{"className":3410},[2662,2705,2706],[3412],{"type":10,"tag":11,"props":3413,"children":3415},{"className":3414},[2662],[3416],{"type":15,"value":3417},"5102",{"type":10,"tag":2718,"props":3419,"children":3421},{"className":3420},[2662,2705,2706],[3422],{"type":10,"tag":11,"props":3423,"children":3425},{"className":3424},[2662],[3426,3430,3432,3437,3438,3442,3444,3448,3450,3455,3456,3461],{"type":10,"tag":2737,"props":3427,"children":3428},{"role":2739},[3429],{"type":15,"value":3119},{"type":15,"value":3431},"\nDeclare that this shader is paired with another node, such that it will be dispatched with the same input payload when the identified node is dispatched.",{"type":10,"tag":2737,"props":3433,"children":3434},{},[3435],{"type":15,"value":3436},"Node Name",{"type":15,"value":524},{"type":10,"tag":2737,"props":3439,"children":3440},{},[3441],{"type":15,"value":3392},{"type":15,"value":3443}," indicate the node that the input will be shared with.",{"type":10,"tag":2737,"props":3445,"children":3446},{},[3447],{"type":15,"value":3436},{"type":15,"value":3449}," must be an ",{"type":10,"tag":2737,"props":3451,"children":3452},{"role":2739},[3453],{"type":15,"value":3454},"OpConstantStringAMDX",{"type":15,"value":2000},{"type":10,"tag":2737,"props":3457,"children":3458},{"role":2739},[3459],{"type":15,"value":3460},"OpSpecConstantStringAMDX",{"type":15,"value":3462}," instruction.",{"type":10,"tag":2718,"props":3464,"children":3466},{"className":3465},[2662,2705,2706],[3467],{"type":10,"tag":11,"props":3468,"children":3470},{"className":3469},[2662],[3471,3472],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3473,"children":3474},{},[3475],{"type":15,"value":3436},{"type":10,"tag":2718,"props":3477,"children":3479},{"className":3478},[2662,2705,2706],[3480],{"type":10,"tag":11,"props":3481,"children":3483},{"className":3482},[2662],[3484,3488],{"type":10,"tag":2737,"props":3485,"children":3486},{},[3487],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3489,"children":3490},{},[3491],{"type":15,"value":3392},{"type":10,"tag":2718,"props":3493,"children":3495},{"className":3494},[2662,2705,2706],[],{"type":10,"tag":2718,"props":3497,"children":3499},{"className":3498},[2662,2705,2706],[3500],{"type":10,"tag":11,"props":3501,"children":3503},{"className":3502},[2662],[3504],{"type":10,"tag":2737,"props":3505,"children":3506},{"role":2739},[3507],{"type":15,"value":2742},{"type":10,"tag":11,"props":3509,"children":3510},{},[3511,3513,3518,3520,3525],{"type":15,"value":3512},"A shader module declaring ",{"type":10,"tag":133,"props":3514,"children":3516},{"className":3515},[],[3517],{"type":15,"value":2742},{"type":15,"value":3519}," capability must only be used in execution graph pipelines created by\n",{"type":10,"tag":133,"props":3521,"children":3523},{"className":3522},[],[3524],{"type":15,"value":153},{"type":15,"value":3526}," command.",{"type":10,"tag":11,"props":3528,"children":3529},{},[3530,3535,3537,3542,3543,3547],{"type":10,"tag":133,"props":3531,"children":3533},{"className":3532},[],[3534],{"type":15,"value":3020},{"type":15,"value":3536}," must be specified if a shader re-enqueues itself, which takes place if that shader\nallocates and enqueues a payload for the same node ",{"type":10,"tag":34,"props":3538,"children":3539},{},[3540],{"type":15,"value":3541},"name",{"type":15,"value":524},{"type":10,"tag":34,"props":3544,"children":3545},{},[3546],{"type":15,"value":737},{"type":15,"value":3548},". Other forms of recursion are not allowed.",{"type":10,"tag":11,"props":3550,"children":3551},{},[3552,3554,3559],{"type":15,"value":3553},"An application must not dispatch the shader with a number of workgroups in any dimension greater than the values specified by ",{"type":10,"tag":133,"props":3555,"children":3557},{"className":3556},[],[3558],{"type":15,"value":2977},{"type":15,"value":757},{"type":10,"tag":11,"props":3561,"children":3562},{},[3563,3568,3570,3576],{"type":10,"tag":133,"props":3564,"children":3566},{"className":3565},[],[3567],{"type":15,"value":1998},{"type":15,"value":3569}," allows the declaration of the number of workgroups to dispatch to be coded into the shader itself, which can be useful for optimizing some algorithms. When a compute shader is dispatched using existing ",{"type":10,"tag":133,"props":3571,"children":3573},{"className":3572},[],[3574],{"type":15,"value":3575},"vkCmdDispatchGraph*",{"type":15,"value":3577}," commands, the workgroup counts specified there are overridden. When enqueuing such shaders with a payload, these arguments will not be consumed from the payload before application-specified data begins.",{"type":10,"tag":11,"props":3579,"children":3580},{},[3581,3583,3588,3589,3594,3596,3603],{"type":15,"value":3582},"The values of ",{"type":10,"tag":133,"props":3584,"children":3586},{"className":3585},[],[3587],{"type":15,"value":2977},{"type":15,"value":524},{"type":10,"tag":133,"props":3590,"children":3592},{"className":3591},[],[3593],{"type":15,"value":1998},{"type":15,"value":3595}," must be less than or equal to ",{"type":10,"tag":590,"props":3597,"children":3600},{"href":3598,"rel":3599},"https://docs.vulkan.org/spec/latest/chapters/limits.html#VkPhysicalDeviceShaderEnqueuePropertiesAMDX",[594],[3601],{"type":15,"value":3602},"VkPhysicalDeviceShaderEnqueuePropertiesAMDX",{"type":15,"value":3604},"::maxExecutionGraphWorkgroupCount.",{"type":10,"tag":11,"props":3606,"children":3607},{},[3608,3610,3615,3616,3621,3622,3627],{"type":15,"value":3609},"The product of the X, Y, and Z values of ",{"type":10,"tag":133,"props":3611,"children":3613},{"className":3612},[],[3614],{"type":15,"value":2977},{"type":15,"value":524},{"type":10,"tag":133,"props":3617,"children":3619},{"className":3618},[],[3620],{"type":15,"value":1998},{"type":15,"value":3595},{"type":10,"tag":590,"props":3623,"children":3625},{"href":3598,"rel":3624},[594],[3626],{"type":15,"value":3602},{"type":15,"value":3628},"::maxExecutionGraphWorkgroups.",{"type":10,"tag":11,"props":3630,"children":3631},{},[3632],{"type":15,"value":3633},"The arguments to each of these execution modes must be a constant 32-bit integer value, and may be supplied via specialization constants.",{"type":10,"tag":11,"props":3635,"children":3636},{},[3637,3639,3643,3644,3648,3650,3656],{"type":15,"value":3638},"When a ",{"type":10,"tag":34,"props":3640,"children":3641},{},[3642],{"type":15,"value":494},{"type":15,"value":2000},{"type":10,"tag":34,"props":3645,"children":3646},{},[3647],{"type":15,"value":2046},{"type":15,"value":3649}," shader is being used in an execution graph, ",{"type":10,"tag":133,"props":3651,"children":3653},{"className":3652},[],[3654],{"type":15,"value":3655},"NumWorkgroups",{"type":15,"value":3657}," must not be used.",{"type":10,"tag":11,"props":3659,"children":3660},{},[3661,3663,3667],{"type":15,"value":3662},"When ",{"type":10,"tag":34,"props":3664,"children":3665},{},[3666],{"type":15,"value":501},{"type":15,"value":3668}," is used, it has the following effects on a compute shader’s inputs and outputs:",{"type":10,"tag":726,"props":3670,"children":3671},{},[3672,3690,3701,3713,3732,3745],{"type":10,"tag":57,"props":3673,"children":3674},{},[3675,3676,3682,3684],{"type":15,"value":2091},{"type":10,"tag":133,"props":3677,"children":3679},{"className":3678},[],[3680],{"type":15,"value":3681},"WorkgroupId",{"type":15,"value":3683}," built-in is always ",{"type":10,"tag":133,"props":3685,"children":3687},{"className":3686},[],[3688],{"type":15,"value":3689},"(0,0,0)",{"type":10,"tag":57,"props":3691,"children":3692},{},[3693,3695],{"type":15,"value":3694},"NB: This affects related built-ins like ",{"type":10,"tag":133,"props":3696,"children":3698},{"className":3697},[],[3699],{"type":15,"value":3700},"GlobalInvocationId",{"type":10,"tag":57,"props":3702,"children":3703},{},[3704,3706,3711],{"type":15,"value":3705},"So similar to ",{"type":10,"tag":133,"props":3707,"children":3709},{"className":3708},[],[3710],{"type":15,"value":1998},{"type":15,"value":3712},", no dispatch size is consumed from the payload-specified",{"type":10,"tag":57,"props":3714,"children":3715},{},[3716,3718,3723,3725,3731],{"type":15,"value":3717},"The input in the ",{"type":10,"tag":133,"props":3719,"children":3721},{"className":3720},[],[3722],{"type":15,"value":1990},{"type":15,"value":3724}," storage class must have a type of ",{"type":10,"tag":133,"props":3726,"children":3728},{"className":3727},[],[3729],{"type":15,"value":3730},"OpTypeNodePayloadArrayAMDX",{"type":15,"value":757},{"type":10,"tag":57,"props":3733,"children":3734},{},[3735,3737,3743],{"type":15,"value":3736},"This input must be decorated with ",{"type":10,"tag":133,"props":3738,"children":3740},{"className":3739},[],[3741],{"type":15,"value":3742},"NodeMaxPayloadsAMDX",{"type":15,"value":3744},", indicating the number of payloads that can be received.",{"type":10,"tag":57,"props":3746,"children":3747},{},[3748,3750],{"type":15,"value":3749},"The number of payloads received can be queried through ",{"type":10,"tag":133,"props":3751,"children":3753},{"className":3752},[],[3754],{"type":15,"value":3755},"OpNodePayloadArrayLengthAMDX",{"type":10,"tag":11,"props":3757,"children":3758},{},[3759,3760,3764],{"type":15,"value":3662},{"type":10,"tag":34,"props":3761,"children":3762},{},[3763],{"type":15,"value":3119},{"type":15,"value":3765}," is declared, the node will be dispatched whenever the node identified by it is dispatched, with the same input payload.\nThe following limitations apply for sharing nodes in this way:",{"type":10,"tag":726,"props":3767,"children":3768},{},[3769,3778,3783,3793,3810],{"type":10,"tag":57,"props":3770,"children":3771},{},[3772,3774],{"type":15,"value":3773},"Nodes must only share with a node that does not declare ",{"type":10,"tag":34,"props":3775,"children":3776},{},[3777],{"type":15,"value":3119},{"type":10,"tag":57,"props":3779,"children":3780},{},[3781],{"type":15,"value":3782},"No more than 256 nodes in a graph can share the same input (including the base node)",{"type":10,"tag":57,"props":3784,"children":3785},{},[3786,3788,3792],{"type":15,"value":3787},"Applications must not directly dispatch any node with the ",{"type":10,"tag":34,"props":3789,"children":3790},{},[3791],{"type":15,"value":3119},{"type":15,"value":503},{"type":10,"tag":57,"props":3794,"children":3795},{},[3796,3798,3803,3804,3808],{"type":15,"value":3797},"Input payloads must be decorated with ",{"type":10,"tag":34,"props":3799,"children":3800},{},[3801],{"type":15,"value":3802},"NonWritable",{"type":15,"value":3114},{"type":10,"tag":34,"props":3805,"children":3806},{},[3807],{"type":15,"value":3119},{"type":15,"value":3809}," is declared.",{"type":10,"tag":57,"props":3811,"children":3812},{},[3813,3815,3820],{"type":15,"value":3814},"Emitting a payload to a shared node multiplies all of the payload resources by the number of shared nodes, as they count against values in ",{"type":10,"tag":133,"props":3816,"children":3818},{"className":3817},[],[3819],{"type":15,"value":3602},{"type":15,"value":757},{"type":10,"tag":11,"props":3822,"children":3823},{},[3824,3825,3829,3831,3835,3837,3842],{"type":15,"value":762},{"type":10,"tag":34,"props":3826,"children":3827},{},[3828],{"type":15,"value":3078},{"type":15,"value":3830}," is set to ",{"type":10,"tag":34,"props":3832,"children":3833},{},[3834],{"type":15,"value":3099},{"type":15,"value":3836},", ",{"type":10,"tag":133,"props":3838,"children":3840},{"className":3839},[],[3841],{"type":15,"value":3575},{"type":15,"value":3843}," commands must not reference this node.",{"type":10,"tag":11,"props":3845,"children":3846},{},[3847],{"type":15,"value":3848},"New decorations are added:",{"type":10,"tag":2659,"props":3850,"children":3852},{"className":3851},[2662,2663,2664,2665],[3853,3872,3894],{"type":10,"tag":2668,"props":3854,"children":3855},{},[3856,3860,3864,3868],{"type":10,"tag":2672,"props":3857,"children":3859},{"style":3858},"width: 5.5555%;",[],{"type":10,"tag":2672,"props":3861,"children":3863},{"style":3862},"width: 55.5555%;",[],{"type":10,"tag":2672,"props":3865,"children":3867},{"style":3866},"width: 16.6666%;",[],{"type":10,"tag":2672,"props":3869,"children":3871},{"style":3870},"width: 22.2224%;",[],{"type":10,"tag":2685,"props":3873,"children":3874},{},[3875],{"type":10,"tag":2689,"props":3876,"children":3877},{},[3878,3884,3889],{"type":10,"tag":2693,"props":3879,"children":3881},{"className":3880,"colSpan":2698},[2662,2696,2697],[3882],{"type":15,"value":3883},"Decoration",{"type":10,"tag":2693,"props":3885,"children":3887},{"className":3886},[2662,2705,2706],[3888],{"type":15,"value":2930},{"type":10,"tag":2693,"props":3890,"children":3892},{"className":3891},[2662,2705,2706],[3893],{"type":15,"value":2709},{"type":10,"tag":2711,"props":3895,"children":3896},{},[3897,3964,4085,4173,4248,4312,4406,4466],{"type":10,"tag":2689,"props":3898,"children":3899},{},[3900,3910,3935,3952],{"type":10,"tag":2718,"props":3901,"children":3903},{"className":3902},[2662,2705,2706],[3904],{"type":10,"tag":11,"props":3905,"children":3907},{"className":3906},[2662],[3908],{"type":15,"value":3909},"5020",{"type":10,"tag":2718,"props":3911,"children":3913},{"className":3912},[2662,2705,2706],[3914],{"type":10,"tag":11,"props":3915,"children":3917},{"className":3916},[2662],[3918,3922,3924,3928,3929,3933],{"type":10,"tag":2737,"props":3919,"children":3920},{"role":2739},[3921],{"type":15,"value":3742},{"type":15,"value":3923},"\nMust only be used to decorate an ",{"type":10,"tag":2737,"props":3925,"children":3926},{"role":2739},[3927],{"type":15,"value":3730},{"type":15,"value":757},{"type":10,"tag":2737,"props":3930,"children":3931},{"role":2739},[3932],{"type":15,"value":3730},{"type":15,"value":3934}," must have this decoration.\nThe operand indicates the maximum number of payloads that can be in the array, and the maximum number of payloads that can be enqueued with this type.",{"type":10,"tag":2718,"props":3936,"children":3938},{"className":3937},[2662,2705,2706],[3939],{"type":10,"tag":11,"props":3940,"children":3942},{"className":3941},[2662],[3943,3947],{"type":10,"tag":2737,"props":3944,"children":3945},{},[3946],{"type":15,"value":3035},{"type":10,"tag":2737,"props":3948,"children":3949},{},[3950],{"type":15,"value":3951},"Max number of payloads",{"type":10,"tag":2718,"props":3953,"children":3955},{"className":3954},[2662,2705,2706],[3956],{"type":10,"tag":11,"props":3957,"children":3959},{"className":3958},[2662],[3960],{"type":10,"tag":2737,"props":3961,"children":3962},{"role":2739},[3963],{"type":15,"value":2742},{"type":10,"tag":2689,"props":3965,"children":3966},{},[3967,3977,4057,4073],{"type":10,"tag":2718,"props":3968,"children":3970},{"className":3969},[2662,2705,2706],[3971],{"type":10,"tag":11,"props":3972,"children":3974},{"className":3973},[2662],[3975],{"type":15,"value":3976},"5019",{"type":10,"tag":2718,"props":3978,"children":3980},{"className":3979},[2662,2705,2706],[3981],{"type":10,"tag":11,"props":3982,"children":3984},{"className":3983},[2662],[3985,3990,3992,3996,3998,4003,4005,4007,4011,4013,4014,4018,4020,4024,4026,4030,4032,4036,4038,4042,4043,4045,4049,4051,4055],{"type":10,"tag":2737,"props":3986,"children":3987},{"role":2739},[3988],{"type":15,"value":3989},"NodeSharesPayloadLimitsWithAMDX",{"type":15,"value":3991},"\nDecorates an ",{"type":10,"tag":2737,"props":3993,"children":3994},{"role":2739},[3995],{"type":15,"value":3730},{"type":15,"value":3997}," declaration to indicate that payloads of this type share output resources with ",{"type":10,"tag":2737,"props":3999,"children":4000},{},[4001],{"type":15,"value":4002},"Payload Type",{"type":15,"value":4004}," when allocated.",{"type":15,"value":4006},"\nWithout the decoration, each types’s resources are separately allocated against the output limits; by using the decoration only the limits of ",{"type":10,"tag":2737,"props":4008,"children":4009},{},[4010],{"type":15,"value":4002},{"type":15,"value":4012}," are considered.\nApplications must still ensure that at runtime the actual usage does not exceed these limits, as this decoration only modifies static validation.",{"type":15,"value":3923},{"type":10,"tag":2737,"props":4015,"children":4016},{"role":2739},[4017],{"type":15,"value":3730},{"type":15,"value":4019}," declaration,\n",{"type":10,"tag":2737,"props":4021,"children":4022},{},[4023],{"type":15,"value":4002},{"type":15,"value":4025}," must be a different ",{"type":10,"tag":2737,"props":4027,"children":4028},{"role":2739},[4029],{"type":15,"value":3730},{"type":15,"value":4031}," declaration, and\n",{"type":10,"tag":2737,"props":4033,"children":4034},{},[4035],{"type":15,"value":4002},{"type":15,"value":4037}," must not be itself decorated with ",{"type":10,"tag":2737,"props":4039,"children":4040},{"role":2739},[4041],{"type":15,"value":3989},{"type":15,"value":757},{"type":15,"value":4044},"\nIt is only necessary to decorate one ",{"type":10,"tag":2737,"props":4046,"children":4047},{"role":2739},[4048],{"type":15,"value":3730},{"type":15,"value":4050}," declaration to indicate sharing between two node outputs.\nMultiple variables can be decorated with the same ",{"type":10,"tag":2737,"props":4052,"children":4053},{},[4054],{"type":15,"value":4002},{"type":15,"value":4056}," to indicate sharing across multiple node outputs.",{"type":10,"tag":2718,"props":4058,"children":4060},{"className":4059},[2662,2705,2706],[4061],{"type":10,"tag":11,"props":4062,"children":4064},{"className":4063},[2662],[4065,4069],{"type":10,"tag":2737,"props":4066,"children":4067},{},[4068],{"type":15,"value":3035},{"type":10,"tag":2737,"props":4070,"children":4071},{},[4072],{"type":15,"value":4002},{"type":10,"tag":2718,"props":4074,"children":4076},{"className":4075},[2662,2705,2706],[4077],{"type":10,"tag":11,"props":4078,"children":4080},{"className":4079},[2662],[4081],{"type":10,"tag":2737,"props":4082,"children":4083},{"role":2739},[4084],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4086,"children":4087},{},[4088,4098,4145,4161],{"type":10,"tag":2718,"props":4089,"children":4091},{"className":4090},[2662,2705,2706],[4092],{"type":10,"tag":11,"props":4093,"children":4095},{"className":4094},[2662],[4096],{"type":15,"value":4097},"5091",{"type":10,"tag":2718,"props":4099,"children":4101},{"className":4100},[2662,2705,2706],[4102],{"type":10,"tag":11,"props":4103,"children":4105},{"className":4104},[2662],[4106,4111,4112,4116,4118,4122,4123,4124,4128,4130,4134,4135,4139,4140,4144],{"type":10,"tag":2737,"props":4107,"children":4108},{"role":2739},[4109],{"type":15,"value":4110},"PayloadNodeNameAMDX",{"type":15,"value":3991},{"type":10,"tag":2737,"props":4113,"children":4114},{"role":2739},[4115],{"type":15,"value":3730},{"type":15,"value":4117}," declaration to indicate that the payloads in the array\nwill be enqueued for the shader with ",{"type":10,"tag":2737,"props":4119,"children":4120},{},[4121],{"type":15,"value":3436},{"type":15,"value":757},{"type":15,"value":3923},{"type":10,"tag":2737,"props":4125,"children":4126},{"role":2739},[4127],{"type":15,"value":3730},{"type":15,"value":4129}," declaration.",{"type":10,"tag":2737,"props":4131,"children":4132},{},[4133],{"type":15,"value":3436},{"type":15,"value":3449},{"type":10,"tag":2737,"props":4136,"children":4137},{"role":2739},[4138],{"type":15,"value":3454},{"type":15,"value":2000},{"type":10,"tag":2737,"props":4141,"children":4142},{"role":2739},[4143],{"type":15,"value":3460},{"type":15,"value":3462},{"type":10,"tag":2718,"props":4146,"children":4148},{"className":4147},[2662,2705,2706],[4149],{"type":10,"tag":11,"props":4150,"children":4152},{"className":4151},[2662],[4153,4157],{"type":10,"tag":2737,"props":4154,"children":4155},{},[4156],{"type":15,"value":3035},{"type":10,"tag":2737,"props":4158,"children":4159},{},[4160],{"type":15,"value":3436},{"type":10,"tag":2718,"props":4162,"children":4164},{"className":4163},[2662,2705,2706],[4165],{"type":10,"tag":11,"props":4166,"children":4168},{"className":4167},[2662],[4169],{"type":10,"tag":2737,"props":4170,"children":4171},{"role":2739},[4172],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4174,"children":4175},{},[4176,4186,4219,4236],{"type":10,"tag":2718,"props":4177,"children":4179},{"className":4178},[2662,2705,2706],[4180],{"type":10,"tag":11,"props":4181,"children":4183},{"className":4182},[2662],[4184],{"type":15,"value":4185},"5098",{"type":10,"tag":2718,"props":4187,"children":4189},{"className":4188},[2662,2705,2706],[4190],{"type":10,"tag":11,"props":4191,"children":4193},{"className":4192},[2662],[4194,4199,4200,4204,4206,4211,4213,4214,4218],{"type":10,"tag":2737,"props":4195,"children":4196},{"role":2739},[4197],{"type":15,"value":4198},"PayloadNodeBaseIndexAMDX",{"type":15,"value":3991},{"type":10,"tag":2737,"props":4201,"children":4202},{"role":2739},[4203],{"type":15,"value":3730},{"type":15,"value":4205}," declaration to indicate a base index that\nwill be added to the ",{"type":10,"tag":2737,"props":4207,"children":4208},{},[4209],{"type":15,"value":4210},"Node Index",{"type":15,"value":4212}," when allocating payloads of this type.\nIf not specified, it is equivalent to specifying a value of 0.",{"type":15,"value":3923},{"type":10,"tag":2737,"props":4215,"children":4216},{"role":2739},[4217],{"type":15,"value":3730},{"type":15,"value":4129},{"type":10,"tag":2718,"props":4220,"children":4222},{"className":4221},[2662,2705,2706],[4223],{"type":10,"tag":11,"props":4224,"children":4226},{"className":4225},[2662],[4227,4231],{"type":10,"tag":2737,"props":4228,"children":4229},{},[4230],{"type":15,"value":3035},{"type":10,"tag":2737,"props":4232,"children":4233},{},[4234],{"type":15,"value":4235},"Base Index",{"type":10,"tag":2718,"props":4237,"children":4239},{"className":4238},[2662,2705,2706],[4240],{"type":10,"tag":11,"props":4241,"children":4243},{"className":4242},[2662],[4244],{"type":10,"tag":2737,"props":4245,"children":4246},{"role":2739},[4247],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4249,"children":4250},{},[4251,4261,4296,4300],{"type":10,"tag":2718,"props":4252,"children":4254},{"className":4253},[2662,2705,2706],[4255],{"type":10,"tag":11,"props":4256,"children":4258},{"className":4257},[2662],[4259],{"type":15,"value":4260},"5099",{"type":10,"tag":2718,"props":4262,"children":4264},{"className":4263},[2662,2705,2706],[4265],{"type":10,"tag":11,"props":4266,"children":4268},{"className":4267},[2662],[4269,4274,4275,4279,4281,4283,4288,4290,4291,4295],{"type":10,"tag":2737,"props":4270,"children":4271},{"role":2739},[4272],{"type":15,"value":4273},"PayloadNodeSparseArrayAMDX",{"type":15,"value":3991},{"type":10,"tag":2737,"props":4276,"children":4277},{"role":2739},[4278],{"type":15,"value":3730},{"type":15,"value":4280}," declaration to indicate that nodes at some node indexes may not exist in the execution graph pipeline and cannot be used to allocate payloads.",{"type":15,"value":4282},"\nIf not specified, all node indexes between 0 and the ",{"type":10,"tag":2737,"props":4284,"children":4285},{"role":2739},[4286],{"type":15,"value":4287},"PayloadNodeArraySizeAMDX",{"type":15,"value":4289}," value must be valid nodes in the graph.",{"type":15,"value":3923},{"type":10,"tag":2737,"props":4292,"children":4293},{"role":2739},[4294],{"type":15,"value":3730},{"type":15,"value":4129},{"type":10,"tag":2718,"props":4297,"children":4299},{"className":4298},[2662,2705,2706],[],{"type":10,"tag":2718,"props":4301,"children":4303},{"className":4302},[2662,2705,2706],[4304],{"type":10,"tag":11,"props":4305,"children":4307},{"className":4306},[2662],[4308],{"type":10,"tag":2737,"props":4309,"children":4310},{"role":2739},[4311],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4313,"children":4314},{},[4315,4325,4377,4394],{"type":10,"tag":2718,"props":4316,"children":4318},{"className":4317},[2662,2705,2706],[4319],{"type":10,"tag":11,"props":4320,"children":4322},{"className":4321},[2662],[4323],{"type":15,"value":4324},"5100",{"type":10,"tag":2718,"props":4326,"children":4328},{"className":4327},[2662,2705,2706],[4329],{"type":10,"tag":11,"props":4330,"children":4332},{"className":4331},[2662],[4333,4337,4338,4342,4344,4348,4350,4351,4355,4356,4358,4362,4364,4368,4370,4375],{"type":10,"tag":2737,"props":4334,"children":4335},{"role":2739},[4336],{"type":15,"value":4287},{"type":15,"value":3991},{"type":10,"tag":2737,"props":4339,"children":4340},{"role":2739},[4341],{"type":15,"value":3730},{"type":15,"value":4343}," declaration to indicate the maximum node index that can be used when allocating payloads of this type, including the base index offset in ",{"type":10,"tag":2737,"props":4345,"children":4346},{"role":2739},[4347],{"type":15,"value":4198},{"type":15,"value":4349}," decoration (if present).\nIf not specified, the node array is considered unbounded.",{"type":15,"value":3923},{"type":10,"tag":2737,"props":4352,"children":4353},{"role":2739},[4354],{"type":15,"value":3730},{"type":15,"value":4129},{"type":15,"value":4357},"\nIf ",{"type":10,"tag":2737,"props":4359,"children":4360},{"role":2739},[4361],{"type":15,"value":4273},{"type":15,"value":4363}," is not set to ",{"type":10,"tag":2737,"props":4365,"children":4366},{"role":2739},[4367],{"type":15,"value":3092},{"type":15,"value":4369}," for a type initialized by ",{"type":10,"tag":2737,"props":4371,"children":4372},{"role":2739},[4373],{"type":15,"value":4374},"OpAllocateNodePayloadsAMDX",{"type":15,"value":4376},", this must be specified.",{"type":10,"tag":2718,"props":4378,"children":4380},{"className":4379},[2662,2705,2706],[4381],{"type":10,"tag":11,"props":4382,"children":4384},{"className":4383},[2662],[4385,4389],{"type":10,"tag":2737,"props":4386,"children":4387},{},[4388],{"type":15,"value":3035},{"type":10,"tag":2737,"props":4390,"children":4391},{},[4392],{"type":15,"value":4393},"Array Size",{"type":10,"tag":2718,"props":4395,"children":4397},{"className":4396},[2662,2705,2706],[4398],{"type":10,"tag":11,"props":4399,"children":4401},{"className":4400},[2662],[4402],{"type":10,"tag":2737,"props":4403,"children":4404},{"role":2739},[4405],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4407,"children":4408},{},[4409,4419,4450,4454],{"type":10,"tag":2718,"props":4410,"children":4412},{"className":4411},[2662,2705,2706],[4413],{"type":10,"tag":11,"props":4414,"children":4416},{"className":4415},[2662],[4417],{"type":15,"value":4418},"5078",{"type":10,"tag":2718,"props":4420,"children":4422},{"className":4421},[2662,2705,2706],[4423],{"type":10,"tag":11,"props":4424,"children":4426},{"className":4425},[2662],[4427,4432,4434,4439,4440,4442,4444,4448],{"type":10,"tag":2737,"props":4428,"children":4429},{"role":2739},[4430],{"type":15,"value":4431},"TrackFinishWritingAMDX",{"type":15,"value":4433},"\nDecorates a structure to indicate that when used as a payload it can be written to and works with the ",{"type":10,"tag":2737,"props":4435,"children":4436},{"role":2739},[4437],{"type":15,"value":4438},"OpFinishWritingNodePayloadAMDX",{"type":15,"value":3462},{"type":15,"value":4441},"\nMust only be used to decorate a structure type declaration.",{"type":15,"value":4443},"\nIf the payload enqueued for a node is using a structure decorated with this value, the input payload in the ",{"type":10,"tag":2737,"props":4445,"children":4446},{"role":2739},[4447],{"type":15,"value":1990},{"type":15,"value":4449}," storage class in the receiving node must use a structure decorated with it as well.",{"type":10,"tag":2718,"props":4451,"children":4453},{"className":4452},[2662,2705,2706],[],{"type":10,"tag":2718,"props":4455,"children":4457},{"className":4456},[2662,2705,2706],[4458],{"type":10,"tag":11,"props":4459,"children":4461},{"className":4460},[2662],[4462],{"type":10,"tag":2737,"props":4463,"children":4464},{"role":2739},[4465],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4467,"children":4468},{},[4469,4479,4539,4543],{"type":10,"tag":2718,"props":4470,"children":4472},{"className":4471},[2662,2705,2706],[4473],{"type":10,"tag":11,"props":4474,"children":4476},{"className":4475},[2662],[4477],{"type":15,"value":4478},"5105",{"type":10,"tag":2718,"props":4480,"children":4482},{"className":4481},[2662,2705,2706],[4483,4500],{"type":10,"tag":11,"props":4484,"children":4486},{"className":4485},[2662],[4487,4491,4493,4498],{"type":10,"tag":2737,"props":4488,"children":4489},{"role":2739},[4490],{"type":15,"value":2012},{"type":15,"value":4492},"\nIndicates the dispatch indirect arguments describing the number of workgroups to dispatch in a payload.\nMust only be used with ",{"type":10,"tag":2737,"props":4494,"children":4495},{"role":2739},[4496],{"type":15,"value":4497},"OpMemberDecorate",{"type":15,"value":4499}," to decorate the member of a structure.",{"type":10,"tag":11,"props":4501,"children":4503},{"className":4502},[2662],[4504,4506,4511,4512,4517,4519,4523,4525,4530,4532,4537],{"type":15,"value":4505},"Must decorate a structure member with a type of ",{"type":10,"tag":2737,"props":4507,"children":4508},{"role":2739},[4509],{"type":15,"value":4510},"OpTypeInt",{"type":15,"value":2000},{"type":10,"tag":2737,"props":4513,"children":4514},{"role":2739},[4515],{"type":15,"value":4516},"OpTypeVector",{"type":15,"value":4518}," with two or three components.\nThe integer type or the type of the vector component must be an ",{"type":10,"tag":2737,"props":4520,"children":4521},{"role":2739},[4522],{"type":15,"value":4510},{"type":15,"value":4524}," with up to 32-bit ",{"type":10,"tag":2737,"props":4526,"children":4527},{},[4528],{"type":15,"value":4529},"Width",{"type":15,"value":4531}," and 0 ",{"type":10,"tag":2737,"props":4533,"children":4534},{},[4535],{"type":15,"value":4536},"Signedness",{"type":15,"value":4538},".\nIf a single integer is used, the Y and Z dispatch indirect arguments are assumed to be 1.\nIf a vector of two components is used, the Z dispatch indirect argument is assumed to be 1.",{"type":10,"tag":2718,"props":4540,"children":4542},{"className":4541},[2662,2705,2706],[],{"type":10,"tag":2718,"props":4544,"children":4546},{"className":4545},[2662,2705,2706],[4547],{"type":10,"tag":11,"props":4548,"children":4550},{"className":4549},[2662],[4551],{"type":10,"tag":2737,"props":4552,"children":4553},{"role":2739},[4554],{"type":15,"value":2742},{"type":10,"tag":11,"props":4556,"children":4557},{},[4558],{"type":15,"value":4559},"The following new built-ins are provided:",{"type":10,"tag":2659,"props":4561,"children":4563},{"className":4562},[2662,2663,2664,2665],[4564,4576,4593],{"type":10,"tag":2668,"props":4565,"children":4566},{},[4567,4570,4573],{"type":10,"tag":2672,"props":4568,"children":4569},{"style":2674},[],{"type":10,"tag":2672,"props":4571,"children":4572},{"style":2678},[],{"type":10,"tag":2672,"props":4574,"children":4575},{"style":2682},[],{"type":10,"tag":2685,"props":4577,"children":4578},{},[4579],{"type":10,"tag":2689,"props":4580,"children":4581},{},[4582,4588],{"type":10,"tag":2693,"props":4583,"children":4585},{"className":4584,"colSpan":2698},[2662,2696,2697],[4586],{"type":15,"value":4587},"BuiltIn",{"type":10,"tag":2693,"props":4589,"children":4591},{"className":4590},[2662,2705,2706],[4592],{"type":15,"value":2709},{"type":10,"tag":2711,"props":4594,"children":4595},{},[4596,4638],{"type":10,"tag":2689,"props":4597,"children":4598},{},[4599,4609,4626],{"type":10,"tag":2718,"props":4600,"children":4602},{"className":4601},[2662,2705,2706],[4603],{"type":10,"tag":11,"props":4604,"children":4606},{"className":4605},[2662],[4607],{"type":15,"value":4608},"5021",{"type":10,"tag":2718,"props":4610,"children":4612},{"className":4611},[2662,2705,2706],[4613],{"type":10,"tag":11,"props":4614,"children":4616},{"className":4615},[2662],[4617,4622,4624],{"type":10,"tag":2737,"props":4618,"children":4619},{"role":2739},[4620],{"type":15,"value":4621},"RemainingRecursionLevelsAMDX",{"type":15,"value":4623},"\nThe number of times this node can still enqueue payloads for itself.",{"type":15,"value":4625},"\nIs equal to 0 if at the leaf or if the node is not recursive at all.",{"type":10,"tag":2718,"props":4627,"children":4629},{"className":4628},[2662,2705,2706],[4630],{"type":10,"tag":11,"props":4631,"children":4633},{"className":4632},[2662],[4634],{"type":10,"tag":2737,"props":4635,"children":4636},{"role":2739},[4637],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4639,"children":4640},{},[4641,4650,4664],{"type":10,"tag":2718,"props":4642,"children":4644},{"className":4643},[2662,2705,2706],[4645],{"type":10,"tag":11,"props":4646,"children":4648},{"className":4647},[2662],[4649],{"type":15,"value":3361},{"type":10,"tag":2718,"props":4651,"children":4653},{"className":4652},[2662,2705,2706],[4654],{"type":10,"tag":11,"props":4655,"children":4657},{"className":4656},[2662],[4658,4662],{"type":10,"tag":2737,"props":4659,"children":4660},{"role":2739},[4661],{"type":15,"value":805},{"type":15,"value":4663},"\nIndex assigned to the current shader.",{"type":10,"tag":2718,"props":4665,"children":4667},{"className":4666},[2662,2705,2706],[4668],{"type":10,"tag":11,"props":4669,"children":4671},{"className":4670},[2662],[4672],{"type":10,"tag":2737,"props":4673,"children":4674},{"role":2739},[4675],{"type":15,"value":2742},{"type":10,"tag":11,"props":4677,"children":4678},{},[4679,4680,4685,4686,4691,4692,4697,4699,4704,4705,4710,4712,4716],{"type":15,"value":2063},{"type":10,"tag":133,"props":4681,"children":4683},{"className":4682},[],[4684],{"type":15,"value":2053},{"type":15,"value":769},{"type":10,"tag":133,"props":4687,"children":4689},{"className":4688},[],[4690],{"type":15,"value":494},{"type":15,"value":2000},{"type":10,"tag":133,"props":4693,"children":4695},{"className":4694},[],[4696],{"type":15,"value":2046},{"type":15,"value":4698},", and neither the ",{"type":10,"tag":133,"props":4700,"children":4702},{"className":4701},[],[4703],{"type":15,"value":1998},{"type":15,"value":2000},{"type":10,"tag":133,"props":4706,"children":4708},{"className":4707},[],[4709],{"type":15,"value":501},{"type":15,"value":4711}," execution modes are specified, if an input payload is specified it must include a member with the ",{"type":10,"tag":34,"props":4713,"children":4714},{},[4715],{"type":15,"value":2012},{"type":15,"value":4717}," decoration, indicating the number of workgroups to dispatch in each dimension.",{"type":10,"tag":11,"props":4719,"children":4720},{},[4721],{"type":15,"value":4722},"New constant instructions are added to allow specialization of string variables, which are used for linkage between shaders.",{"type":10,"tag":2659,"props":4724,"children":4726},{"className":4725},[2662,2663,2664,2665],[4727,4743],{"type":10,"tag":2668,"props":4728,"children":4729},{},[4730,4734,4737,4740],{"type":10,"tag":2672,"props":4731,"children":4733},{"style":4732},"width: 25%;",[],{"type":10,"tag":2672,"props":4735,"children":4736},{"style":4732},[],{"type":10,"tag":2672,"props":4738,"children":4739},{"style":4732},[],{"type":10,"tag":2672,"props":4741,"children":4742},{"style":4732},[],{"type":10,"tag":2711,"props":4744,"children":4745},{},[4746,4798],{"type":10,"tag":2689,"props":4747,"children":4748},{},[4749,4784],{"type":10,"tag":2718,"props":4750,"children":4752},{"className":4751,"colSpan":2436},[2662,2705,2706],[4753],{"type":10,"tag":11,"props":4754,"children":4756},{"className":4755},[2662],[4757],{"type":10,"tag":4758,"props":4759,"children":4761},"anchor",{"xml:id":3454,"xreflabel":4760},"[OpConstantStringAMDX]",[4762,4766,4768,4773,4775,4777,4782],{"type":10,"tag":2737,"props":4763,"children":4764},{"role":2739},[4765],{"type":15,"value":3454},{"type":15,"value":4767},"\nDeclare a new string specialization constant.",{"type":10,"tag":2737,"props":4769,"children":4770},{},[4771],{"type":15,"value":4772},"String",{"type":15,"value":4774}," is the value of the constant.",{"type":15,"value":4776},"\nUnlike ",{"type":10,"tag":2737,"props":4778,"children":4779},{"role":2739},[4780],{"type":15,"value":4781},"OpString",{"type":15,"value":4783},", this is a semantically meaningful instruction and cannot be safely removed from a module.",{"type":10,"tag":2718,"props":4785,"children":4787},{"className":4786},[2662,2705,2706],[4788],{"type":10,"tag":11,"props":4789,"children":4791},{"className":4790},[2662],[4792,4794],{"type":15,"value":4793},"Capability:",{"type":10,"tag":2737,"props":4795,"children":4796},{"role":2739},[4797],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4799,"children":4800},{},[4801,4811,4821,4834],{"type":10,"tag":2718,"props":4802,"children":4804},{"className":4803},[2662,2705,2706],[4805],{"type":10,"tag":11,"props":4806,"children":4808},{"className":4807},[2662],[4809],{"type":15,"value":4810},"3 + variable",{"type":10,"tag":2718,"props":4812,"children":4814},{"className":4813},[2662,2705,2706],[4815],{"type":10,"tag":11,"props":4816,"children":4818},{"className":4817},[2662],[4819],{"type":15,"value":4820},"5103",{"type":10,"tag":2718,"props":4822,"children":4824},{"className":4823},[2662,2705,2706],[4825],{"type":10,"tag":11,"props":4826,"children":4828},{"className":4827},[2662],[4829],{"type":10,"tag":2737,"props":4830,"children":4831},{},[4832],{"type":15,"value":4833},"Result \u003Cid>",{"type":10,"tag":2718,"props":4835,"children":4837},{"className":4836},[2662,2705,2706],[4838],{"type":10,"tag":11,"props":4839,"children":4841},{"className":4840},[2662],[4842,4847],{"type":10,"tag":2737,"props":4843,"children":4844},{},[4845],{"type":15,"value":4846},"Literal",{"type":10,"tag":2737,"props":4848,"children":4849},{},[4850],{"type":15,"value":4772},{"type":10,"tag":2659,"props":4852,"children":4854},{"className":4853},[2662,2663,2664,2665],[4855,4870],{"type":10,"tag":2668,"props":4856,"children":4857},{},[4858,4861,4864,4867],{"type":10,"tag":2672,"props":4859,"children":4860},{"style":4732},[],{"type":10,"tag":2672,"props":4862,"children":4863},{"style":4732},[],{"type":10,"tag":2672,"props":4865,"children":4866},{"style":4732},[],{"type":10,"tag":2672,"props":4868,"children":4869},{"style":4732},[],{"type":10,"tag":2711,"props":4871,"children":4872},{},[4873,4933],{"type":10,"tag":2689,"props":4874,"children":4875},{},[4876,4920],{"type":10,"tag":2718,"props":4877,"children":4879},{"className":4878,"colSpan":2436},[2662,2705,2706],[4880],{"type":10,"tag":11,"props":4881,"children":4883},{"className":4882},[2662],[4884],{"type":10,"tag":4758,"props":4885,"children":4887},{"xml:id":3460,"xreflabel":4886},"[OpSpecConstantStringAMDX]",[4888,4892,4893,4897,4899,4900,4904,4905,4907,4911,4912,4914,4919],{"type":10,"tag":2737,"props":4889,"children":4890},{"role":2739},[4891],{"type":15,"value":3460},{"type":15,"value":4767},{"type":10,"tag":2737,"props":4894,"children":4895},{},[4896],{"type":15,"value":4772},{"type":15,"value":4898}," is the default value of the constant.",{"type":15,"value":4776},{"type":10,"tag":2737,"props":4901,"children":4902},{"role":2739},[4903],{"type":15,"value":4781},{"type":15,"value":4783},{"type":15,"value":4906},"\nThis instruction can be specialized to become an ",{"type":10,"tag":2737,"props":4908,"children":4909},{"role":2739},[4910],{"type":15,"value":3454},{"type":15,"value":3462},{"type":15,"value":4913},"\nSee ",{"type":10,"tag":2737,"props":4915,"children":4916},{},[4917],{"type":15,"value":4918},"Specialization",{"type":15,"value":757},{"type":10,"tag":2718,"props":4921,"children":4923},{"className":4922},[2662,2705,2706],[4924],{"type":10,"tag":11,"props":4925,"children":4927},{"className":4926},[2662],[4928,4929],{"type":15,"value":4793},{"type":10,"tag":2737,"props":4930,"children":4931},{"role":2739},[4932],{"type":15,"value":2742},{"type":10,"tag":2689,"props":4934,"children":4935},{},[4936,4945,4955,4967],{"type":10,"tag":2718,"props":4937,"children":4939},{"className":4938},[2662,2705,2706],[4940],{"type":10,"tag":11,"props":4941,"children":4943},{"className":4942},[2662],[4944],{"type":15,"value":4810},{"type":10,"tag":2718,"props":4946,"children":4948},{"className":4947},[2662,2705,2706],[4949],{"type":10,"tag":11,"props":4950,"children":4952},{"className":4951},[2662],[4953],{"type":15,"value":4954},"5104",{"type":10,"tag":2718,"props":4956,"children":4958},{"className":4957},[2662,2705,2706],[4959],{"type":10,"tag":11,"props":4960,"children":4962},{"className":4961},[2662],[4963],{"type":10,"tag":2737,"props":4964,"children":4965},{},[4966],{"type":15,"value":4833},{"type":10,"tag":2718,"props":4968,"children":4970},{"className":4969},[2662,2705,2706],[4971],{"type":10,"tag":11,"props":4972,"children":4974},{"className":4973},[2662],[4975,4979],{"type":10,"tag":2737,"props":4976,"children":4977},{},[4978],{"type":15,"value":4846},{"type":10,"tag":2737,"props":4980,"children":4981},{},[4982],{"type":15,"value":4772},{"type":10,"tag":11,"props":4984,"children":4985},{},[4986],{"type":15,"value":4987},"A new payload type is defined that can be allocated dynamically and then enqueued for a node:",{"type":10,"tag":2659,"props":4989,"children":4991},{"className":4990},[2662,2663,2664,2665],[4992,5007],{"type":10,"tag":2668,"props":4993,"children":4994},{},[4995,4998,5001,5004],{"type":10,"tag":2672,"props":4996,"children":4997},{"style":4732},[],{"type":10,"tag":2672,"props":4999,"children":5000},{"style":4732},[],{"type":10,"tag":2672,"props":5002,"children":5003},{"style":4732},[],{"type":10,"tag":2672,"props":5005,"children":5006},{"style":4732},[],{"type":10,"tag":2711,"props":5008,"children":5009},{},[5010,5098],{"type":10,"tag":2689,"props":5011,"children":5012},{},[5013,5082],{"type":10,"tag":2718,"props":5014,"children":5016},{"className":5015,"colSpan":2436},[2662,2705,2706],[5017],{"type":10,"tag":11,"props":5018,"children":5020},{"className":5019},[2662],[5021],{"type":10,"tag":4758,"props":5022,"children":5024},{"xml:id":3730,"xreflabel":5023},"[OpTypeNodePayloadArrayAMDX]",[5025,5029,5031,5035,5037,5039,5043,5047,5049,5051,5055,5057,5061,5062,5066,5068,5070,5075,5076,5081],{"type":10,"tag":2737,"props":5026,"children":5027},{"role":2739},[5028],{"type":15,"value":3730},{"type":15,"value":5030},"\nDeclare a new payload array type. Its length is not known at compile time.",{"type":10,"tag":2737,"props":5032,"children":5033},{},[5034],{"type":15,"value":4002},{"type":15,"value":5036}," is the type of each payload in the array.",{"type":15,"value":5038},"\n See ",{"type":10,"tag":5040,"props":5041,"children":5042},"link",{"linkend":3755},[],{"type":10,"tag":2737,"props":5044,"children":5045},{"role":2739},[5046],{"type":15,"value":3755},{"type":15,"value":5048}," for getting the length of an array of this type.",{"type":15,"value":5050},"\nA payload array can be allocated by either ",{"type":10,"tag":2737,"props":5052,"children":5053},{"role":2739},[5054],{"type":15,"value":4374},{"type":15,"value":5056}," to be enqueued as an output, or via ",{"type":10,"tag":2737,"props":5058,"children":5059},{"role":2739},[5060],{"type":15,"value":2832},{"type":15,"value":2834},{"type":10,"tag":2737,"props":5063,"children":5064},{"role":2739},[5065],{"type":15,"value":1990},{"type":15,"value":5067}," storage class to be consumed as an input.",{"type":15,"value":5069},"\nCan be dereferenced using an access chain in the same way as ",{"type":10,"tag":2737,"props":5071,"children":5072},{"role":2739},[5073],{"type":15,"value":5074},"OpTypeRuntimeArray",{"type":15,"value":2000},{"type":10,"tag":2737,"props":5077,"children":5078},{"role":2739},[5079],{"type":15,"value":5080},"OpTypeArray",{"type":15,"value":757},{"type":10,"tag":2718,"props":5083,"children":5085},{"className":5084},[2662,2705,2706],[5086],{"type":10,"tag":11,"props":5087,"children":5089},{"className":5088},[2662],[5090,5093,5094],{"type":10,"tag":5040,"props":5091,"children":5092},{"linkend":2701},[],{"type":15,"value":4793},{"type":10,"tag":2737,"props":5095,"children":5096},{"role":2739},[5097],{"type":15,"value":2757},{"type":10,"tag":2689,"props":5099,"children":5100},{},[5101,5110,5120,5132],{"type":10,"tag":2718,"props":5102,"children":5104},{"className":5103},[2662,2705,2706],[5105],{"type":10,"tag":11,"props":5106,"children":5108},{"className":5107},[2662],[5109],{"type":15,"value":2436},{"type":10,"tag":2718,"props":5111,"children":5113},{"className":5112},[2662,2705,2706],[5114],{"type":10,"tag":11,"props":5115,"children":5117},{"className":5116},[2662],[5118],{"type":15,"value":5119},"5076",{"type":10,"tag":2718,"props":5121,"children":5123},{"className":5122},[2662,2705,2706],[5124],{"type":10,"tag":11,"props":5125,"children":5127},{"className":5126},[2662],[5128],{"type":10,"tag":2737,"props":5129,"children":5130},{},[5131],{"type":15,"value":4833},{"type":10,"tag":2718,"props":5133,"children":5135},{"className":5134},[2662,2705,2706],[5136],{"type":10,"tag":11,"props":5137,"children":5139},{"className":5138},[2662],[5140,5144],{"type":10,"tag":2737,"props":5141,"children":5142},{},[5143],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5145,"children":5146},{},[5147],{"type":15,"value":4002},{"type":10,"tag":11,"props":5149,"children":5150},{},[5151],{"type":15,"value":5152},"Decorations on this type indicate which node this type will be dispatched to and how it consumes resources.\nOnce a payload array type has been declared and all relevant decorations specified, they can be allocated using:",{"type":10,"tag":2659,"props":5154,"children":5156},{"className":5155},[2662,2663,2664,2665],[5157,5182],{"type":10,"tag":2668,"props":5158,"children":5159},{},[5160,5164,5167,5170,5173,5176,5179],{"type":10,"tag":2672,"props":5161,"children":5163},{"style":5162},"width: 12.5%;",[],{"type":10,"tag":2672,"props":5165,"children":5166},{"style":5162},[],{"type":10,"tag":2672,"props":5168,"children":5169},{"style":5162},[],{"type":10,"tag":2672,"props":5171,"children":5172},{"style":5162},[],{"type":10,"tag":2672,"props":5174,"children":5175},{"style":5162},[],{"type":10,"tag":2672,"props":5177,"children":5178},{"style":5162},[],{"type":10,"tag":2672,"props":5180,"children":5181},{"style":4732},[],{"type":10,"tag":2711,"props":5183,"children":5184},{},[5185,5362],{"type":10,"tag":2689,"props":5186,"children":5187},{},[5188,5349],{"type":10,"tag":2718,"props":5189,"children":5192},{"className":5190,"colSpan":5191},[2662,2705,2706],"6",[5193],{"type":10,"tag":11,"props":5194,"children":5196},{"className":5195},[2662],[5197],{"type":10,"tag":4758,"props":5198,"children":5200},{"xml:id":4374,"xreflabel":5199},"[OpAllocateNodePayloadsAMDX]",[5201,5205,5207,5212,5213,5218,5219,5224,5226,5230,5231,5235,5237,5239,5243,5244,5248,5250,5254,5256,5260,5262,5266,5267,5269,5274,5276,5281,5283,5287,5288,5293,5295,5297,5301,5303,5307,5308,5312,5313,5317,5318,5322,5324,5328,5329,5333,5335,5340,5341,5346,5347],{"type":10,"tag":2737,"props":5202,"children":5203},{"role":2739},[5204],{"type":15,"value":4374},{"type":15,"value":5206},"\nAllocates payloads for a node to be later enqueued via ",{"type":10,"tag":2737,"props":5208,"children":5209},{"role":2739},[5210],{"type":15,"value":5211},"OpEnqueueNodePayloadsAMDX",{"type":15,"value":757},{"type":10,"tag":2737,"props":5214,"children":5215},{},[5216],{"type":15,"value":5217},"Result Type",{"type":15,"value":3449},{"type":10,"tag":2737,"props":5220,"children":5221},{"role":2739},[5222],{"type":15,"value":5223},"OpTypePointer",{"type":15,"value":5225}," to an ",{"type":10,"tag":2737,"props":5227,"children":5228},{"role":2739},[5229],{"type":15,"value":3730},{"type":15,"value":2834},{"type":10,"tag":2737,"props":5232,"children":5233},{"role":2739},[5234],{"type":15,"value":1990},{"type":15,"value":5236}," storage class.",{"type":15,"value":5238},"\nThe payloads are allocated for the node identified by the ",{"type":10,"tag":2737,"props":5240,"children":5241},{},[5242],{"type":15,"value":3436},{"type":15,"value":2834},{"type":10,"tag":2737,"props":5245,"children":5246},{"role":2739},[5247],{"type":15,"value":4110},{"type":15,"value":5249}," decoration on ",{"type":10,"tag":2737,"props":5251,"children":5252},{},[5253],{"type":15,"value":5217},{"type":15,"value":5255},",\nwith an index equal to the sum of its ",{"type":10,"tag":2737,"props":5257,"children":5258},{"role":2739},[5259],{"type":15,"value":4198},{"type":15,"value":5261}," decoration (if present) and ",{"type":10,"tag":2737,"props":5263,"children":5264},{},[5265],{"type":15,"value":4210},{"type":15,"value":1946},{"type":15,"value":5268},"\nPayloads are allocated for the ",{"type":10,"tag":2737,"props":5270,"children":5271},{},[5272],{"type":15,"value":5273},"Scope",{"type":15,"value":5275}," indicated by ",{"type":10,"tag":2737,"props":5277,"children":5278},{},[5279],{"type":15,"value":5280},"Visibility",{"type":15,"value":5282},", and are visible to all invocations in that ",{"type":10,"tag":2737,"props":5284,"children":5285},{},[5286],{"type":15,"value":5273},{"type":15,"value":757},{"type":10,"tag":2737,"props":5289,"children":5290},{},[5291],{"type":15,"value":5292},"Payload Count",{"type":15,"value":5294}," is the number of payloads to allocate in the resulting array.\n",{"type":15,"value":5296},"\nBehavior is undefined if ",{"type":10,"tag":2737,"props":5298,"children":5299},{},[5300],{"type":15,"value":5292},{"type":15,"value":5302}," is greater than the ",{"type":10,"tag":2737,"props":5304,"children":5305},{"role":2739},[5306],{"type":15,"value":3742},{"type":15,"value":5249},{"type":10,"tag":2737,"props":5309,"children":5310},{},[5311],{"type":15,"value":5217},{"type":15,"value":757},{"type":10,"tag":2737,"props":5314,"children":5315},{},[5316],{"type":15,"value":5292},{"type":15,"value":524},{"type":10,"tag":2737,"props":5319,"children":5320},{},[5321],{"type":15,"value":4210},{"type":15,"value":5323}," must be dynamically uniform within the scope identified by ",{"type":10,"tag":2737,"props":5325,"children":5326},{},[5327],{"type":15,"value":5280},{"type":15,"value":757},{"type":10,"tag":2737,"props":5330,"children":5331},{},[5332],{"type":15,"value":5280},{"type":15,"value":5334}," must only be either ",{"type":10,"tag":2737,"props":5336,"children":5337},{},[5338],{"type":15,"value":5339},"Invocation",{"type":15,"value":2000},{"type":10,"tag":2737,"props":5342,"children":5343},{},[5344],{"type":15,"value":5345},"Workgroup",{"type":15,"value":757},{"type":15,"value":5348},"\nThis instruction must be called in uniform control flow within the same workgroup.",{"type":10,"tag":2718,"props":5350,"children":5352},{"className":5351},[2662,2705,2706],[5353],{"type":10,"tag":11,"props":5354,"children":5356},{"className":5355},[2662],[5357,5358],{"type":15,"value":4793},{"type":10,"tag":2737,"props":5359,"children":5360},{"role":2739},[5361],{"type":15,"value":2742},{"type":10,"tag":2689,"props":5363,"children":5364},{},[5365,5374,5384,5400,5418,5435,5451],{"type":10,"tag":2718,"props":5366,"children":5368},{"className":5367},[2662,2705,2706],[5369],{"type":10,"tag":11,"props":5370,"children":5372},{"className":5371},[2662],[5373],{"type":15,"value":5191},{"type":10,"tag":2718,"props":5375,"children":5377},{"className":5376},[2662,2705,2706],[5378],{"type":10,"tag":11,"props":5379,"children":5381},{"className":5380},[2662],[5382],{"type":15,"value":5383},"5074",{"type":10,"tag":2718,"props":5385,"children":5387},{"className":5386},[2662,2705,2706],[5388],{"type":10,"tag":11,"props":5389,"children":5391},{"className":5390},[2662],[5392,5396],{"type":10,"tag":2737,"props":5393,"children":5394},{},[5395],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5397,"children":5398},{},[5399],{"type":15,"value":5217},{"type":10,"tag":2718,"props":5401,"children":5403},{"className":5402},[2662,2705,2706],[5404],{"type":10,"tag":11,"props":5405,"children":5407},{"className":5406},[2662],[5408,5413,5414],{"type":10,"tag":2737,"props":5409,"children":5410},{},[5411],{"type":15,"value":5412},"Result",{"type":15,"value":807},{"type":10,"tag":2737,"props":5415,"children":5416},{},[5417],{"type":15,"value":3035},{"type":10,"tag":2718,"props":5419,"children":5421},{"className":5420},[2662,2705,2706],[5422],{"type":10,"tag":11,"props":5423,"children":5425},{"className":5424},[2662],[5426,5431],{"type":10,"tag":2737,"props":5427,"children":5428},{},[5429],{"type":15,"value":5430},"Scope \u003Cid>",{"type":10,"tag":2737,"props":5432,"children":5433},{},[5434],{"type":15,"value":5280},{"type":10,"tag":2718,"props":5436,"children":5438},{"className":5437},[2662,2705,2706],[5439],{"type":10,"tag":11,"props":5440,"children":5442},{"className":5441},[2662],[5443,5447],{"type":10,"tag":2737,"props":5444,"children":5445},{},[5446],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5448,"children":5449},{},[5450],{"type":15,"value":5292},{"type":10,"tag":2718,"props":5452,"children":5454},{"className":5453},[2662,2705,2706],[5455],{"type":10,"tag":11,"props":5456,"children":5458},{"className":5457},[2662],[5459,5463],{"type":10,"tag":2737,"props":5460,"children":5461},{},[5462],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5464,"children":5465},{},[5466],{"type":15,"value":4210},{"type":10,"tag":11,"props":5468,"children":5469},{},[5470,5472,5476,5478,5483,5485,5490],{"type":15,"value":5471},"Once a payload array is allocated, it can be enqueued to the identified node by calling ",{"type":10,"tag":34,"props":5473,"children":5474},{},[5475],{"type":15,"value":5211},{"type":15,"value":5477},".\nEnqueues are performed in the same manner as the ",{"type":10,"tag":133,"props":5479,"children":5481},{"className":5480},[],[5482],{"type":15,"value":3575},{"type":15,"value":5484}," API commands.\nIf the node receiving the payloads has the ",{"type":10,"tag":133,"props":5486,"children":5488},{"className":5487},[],[5489],{"type":15,"value":501},{"type":15,"value":5491}," execution mode, there is no guarantee what set of payloads are visible to the same workgroup.",{"type":10,"tag":11,"props":5493,"children":5494},{},[5495,5497,5502],{"type":15,"value":5496},"The shader must not enqueue payloads to a shader with the same name as this shader unless the index identifies this node and ",{"type":10,"tag":133,"props":5498,"children":5500},{"className":5499},[],[5501],{"type":15,"value":3020},{"type":15,"value":5503}," is declared with a sufficient depth.\nShaders with the same name and different indexes can each recurse independently.",{"type":10,"tag":2659,"props":5505,"children":5507},{"className":5506},[2662,2663,2664,2665],[5508,5522],{"type":10,"tag":2668,"props":5509,"children":5510},{},[5511,5515,5519],{"type":10,"tag":2672,"props":5512,"children":5514},{"style":5513},"width: 60%;",[],{"type":10,"tag":2672,"props":5516,"children":5518},{"style":5517},"width: 20%;",[],{"type":10,"tag":2672,"props":5520,"children":5521},{"style":5517},[],{"type":10,"tag":2711,"props":5523,"children":5524},{},[5525,5573],{"type":10,"tag":2689,"props":5526,"children":5527},{},[5528,5560],{"type":10,"tag":2718,"props":5529,"children":5531},{"className":5530,"colSpan":2698},[2662,2705,2706],[5532],{"type":10,"tag":11,"props":5533,"children":5535},{"className":5534},[2662],[5536],{"type":10,"tag":4758,"props":5537,"children":5539},{"xml:id":5211,"xreflabel":5538},"[OpEnqueueNodePayloadsAMDX]",[5540,5544,5546,5551,5553,5557,5558],{"type":10,"tag":2737,"props":5541,"children":5542},{"role":2739},[5543],{"type":15,"value":5211},{"type":15,"value":5545},"\nEnqueues a previously allocated payload array for execution by its node.",{"type":10,"tag":2737,"props":5547,"children":5548},{},[5549],{"type":15,"value":5550},"Payload Array",{"type":15,"value":5552}," is a pointer to a payload array that was previously allocated by ",{"type":10,"tag":2737,"props":5554,"children":5555},{"role":2739},[5556],{"type":15,"value":4374},{"type":15,"value":757},{"type":15,"value":5559},"\nThis instruction must be called in uniform control flow within the workgroup.",{"type":10,"tag":2718,"props":5561,"children":5563},{"className":5562},[2662,2705,2706],[5564],{"type":10,"tag":11,"props":5565,"children":5567},{"className":5566},[2662],[5568,5569],{"type":15,"value":4793},{"type":10,"tag":2737,"props":5570,"children":5571},{"role":2739},[5572],{"type":15,"value":2742},{"type":10,"tag":2689,"props":5574,"children":5575},{},[5576,5585,5595],{"type":10,"tag":2718,"props":5577,"children":5579},{"className":5578},[2662,2705,2706],[5580],{"type":10,"tag":11,"props":5581,"children":5583},{"className":5582},[2662],[5584],{"type":15,"value":2698},{"type":10,"tag":2718,"props":5586,"children":5588},{"className":5587},[2662,2705,2706],[5589],{"type":10,"tag":11,"props":5590,"children":5592},{"className":5591},[2662],[5593],{"type":15,"value":5594},"5075",{"type":10,"tag":2718,"props":5596,"children":5598},{"className":5597},[2662,2705,2706],[5599],{"type":10,"tag":11,"props":5600,"children":5602},{"className":5601},[2662],[5603,5607],{"type":10,"tag":2737,"props":5604,"children":5605},{},[5606],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5608,"children":5609},{},[5610],{"type":15,"value":5550},{"type":10,"tag":11,"props":5612,"children":5613},{},[5614,5616,5620],{"type":15,"value":5615},"Once this has been called, accessing any element of ",{"type":10,"tag":34,"props":5617,"children":5618},{},[5619],{"type":15,"value":5550},{"type":15,"value":5621}," is undefined behavior.",{"type":10,"tag":11,"props":5623,"children":5624},{},[5625,5627,5631],{"type":15,"value":5626},"The length of ",{"type":10,"tag":34,"props":5628,"children":5629},{},[5630],{"type":15,"value":5550},{"type":15,"value":5632}," can be queried at any point by calling:",{"type":10,"tag":2659,"props":5634,"children":5636},{"className":5635},[2662,2663,2664,2665],[5637,5655],{"type":10,"tag":2668,"props":5638,"children":5639},{},[5640,5643,5646,5649,5652],{"type":10,"tag":2672,"props":5641,"children":5642},{"style":5162},[],{"type":10,"tag":2672,"props":5644,"children":5645},{"style":5162},[],{"type":10,"tag":2672,"props":5647,"children":5648},{"style":4732},[],{"type":10,"tag":2672,"props":5650,"children":5651},{"style":4732},[],{"type":10,"tag":2672,"props":5653,"children":5654},{"style":4732},[],{"type":10,"tag":2711,"props":5656,"children":5657},{},[5658,5770],{"type":10,"tag":2689,"props":5659,"children":5660},{},[5661,5754],{"type":10,"tag":2718,"props":5662,"children":5665},{"className":5663,"colSpan":5664},[2662,2705,2706],"4",[5666],{"type":10,"tag":11,"props":5667,"children":5669},{"className":5668},[2662],[5670],{"type":10,"tag":4758,"props":5671,"children":5673},{"xml:id":3755,"xreflabel":5672},"[OpNodePayloadArrayLengthAMDX]",[5674,5678,5680,5684,5686,5690,5692,5696,5698,5702,5704,5708,5710,5714,5715,5719,5721,5725,5726,5730,5731,5735,5737,5741,5743,5747,5748,5752],{"type":10,"tag":2737,"props":5675,"children":5676},{"role":2739},[5677],{"type":15,"value":3755},{"type":15,"value":5679},"\nQuery the length of a payload array. Must only be used with input payload arrays or allocated output payload arrays.",{"type":10,"tag":2737,"props":5681,"children":5682},{},[5683],{"type":15,"value":5412},{"type":15,"value":5685}," will be equal to the ",{"type":10,"tag":2737,"props":5687,"children":5688},{},[5689],{"type":15,"value":5292},{"type":15,"value":5691}," value used to allocate ",{"type":10,"tag":2737,"props":5693,"children":5694},{},[5695],{"type":15,"value":5550},{"type":15,"value":5697},", or to the number of received payloads if the shader is using ",{"type":10,"tag":2737,"props":5699,"children":5700},{"role":2739},[5701],{"type":15,"value":501},{"type":15,"value":5703}," execution mode. Otherwise, ",{"type":10,"tag":2737,"props":5705,"children":5706},{},[5707],{"type":15,"value":5412},{"type":15,"value":5709}," will be 1.",{"type":10,"tag":2737,"props":5711,"children":5712},{},[5713],{"type":15,"value":5217},{"type":15,"value":3449},{"type":10,"tag":2737,"props":5716,"children":5717},{"role":2739},[5718],{"type":15,"value":4510},{"type":15,"value":5720}," with 32-bit ",{"type":10,"tag":2737,"props":5722,"children":5723},{},[5724],{"type":15,"value":4529},{"type":15,"value":4531},{"type":10,"tag":2737,"props":5727,"children":5728},{},[5729],{"type":15,"value":4536},{"type":15,"value":757},{"type":10,"tag":2737,"props":5732,"children":5733},{},[5734],{"type":15,"value":5550},{"type":15,"value":5736}," is a pointer to a payload array previously allocated by ",{"type":10,"tag":2737,"props":5738,"children":5739},{"role":2739},[5740],{"type":15,"value":4374},{"type":15,"value":5742},", or declared via ",{"type":10,"tag":2737,"props":5744,"children":5745},{"role":2739},[5746],{"type":15,"value":2832},{"type":15,"value":2834},{"type":10,"tag":2737,"props":5749,"children":5750},{"role":2739},[5751],{"type":15,"value":1990},{"type":15,"value":5753}," storage class as an input.",{"type":10,"tag":2718,"props":5755,"children":5757},{"className":5756},[2662,2705,2706],[5758],{"type":10,"tag":11,"props":5759,"children":5761},{"className":5760},[2662],[5762,5765,5766],{"type":10,"tag":5040,"props":5763,"children":5764},{"linkend":2701},[],{"type":15,"value":4793},{"type":10,"tag":2737,"props":5767,"children":5768},{"role":2739},[5769],{"type":15,"value":2757},{"type":10,"tag":2689,"props":5771,"children":5772},{},[5773,5782,5792,5808,5820],{"type":10,"tag":2718,"props":5774,"children":5776},{"className":5775},[2662,2705,2706],[5777],{"type":10,"tag":11,"props":5778,"children":5780},{"className":5779},[2662],[5781],{"type":15,"value":5664},{"type":10,"tag":2718,"props":5783,"children":5785},{"className":5784},[2662,2705,2706],[5786],{"type":10,"tag":11,"props":5787,"children":5789},{"className":5788},[2662],[5790],{"type":15,"value":5791},"5090",{"type":10,"tag":2718,"props":5793,"children":5795},{"className":5794},[2662,2705,2706],[5796],{"type":10,"tag":11,"props":5797,"children":5799},{"className":5798},[2662],[5800,5804],{"type":10,"tag":2737,"props":5801,"children":5802},{},[5803],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5805,"children":5806},{},[5807],{"type":15,"value":5217},{"type":10,"tag":2718,"props":5809,"children":5811},{"className":5810},[2662,2705,2706],[5812],{"type":10,"tag":11,"props":5813,"children":5815},{"className":5814},[2662],[5816],{"type":10,"tag":2737,"props":5817,"children":5818},{},[5819],{"type":15,"value":4833},{"type":10,"tag":2718,"props":5821,"children":5823},{"className":5822},[2662,2705,2706],[5824],{"type":10,"tag":11,"props":5825,"children":5827},{"className":5826},[2662],[5828,5832],{"type":10,"tag":2737,"props":5829,"children":5830},{},[5831],{"type":15,"value":3035},{"type":10,"tag":2737,"props":5833,"children":5834},{},[5835],{"type":15,"value":5550},{"type":10,"tag":11,"props":5837,"children":5838},{},[5839],{"type":15,"value":5840},"Before allocating payloads, applications can determine whether allocating payloads is possible for a particular node index:",{"type":10,"tag":726,"props":5842,"children":5843},{},[5844,5855,5865],{"type":10,"tag":57,"props":5845,"children":5846},{},[5847,5849,5853],{"type":15,"value":5848},"If a payload type is decorated with ",{"type":10,"tag":34,"props":5850,"children":5851},{},[5852],{"type":15,"value":4273},{"type":15,"value":5854},", applications can determine whether a node exists at a particular index.",{"type":10,"tag":57,"props":5856,"children":5857},{},[5858,5859,5863],{"type":15,"value":5848},{"type":10,"tag":34,"props":5860,"children":5861},{},[5862],{"type":15,"value":4110},{"type":15,"value":5864}," that matches the current node, applications can determine whether a node at a particular index has reached its max recursion depth.",{"type":10,"tag":57,"props":5866,"children":5867},{},[5868],{"type":15,"value":5869},"In all other cases, the payload can be allocated.",{"type":10,"tag":2659,"props":5871,"children":5873},{"className":5872},[2662,2663,2664,2665],[5874,5898],{"type":10,"tag":2668,"props":5875,"children":5876},{},[5877,5881,5885,5888,5891,5894],{"type":10,"tag":2672,"props":5878,"children":5880},{"style":5879},"width: 9.0909%;",[],{"type":10,"tag":2672,"props":5882,"children":5884},{"style":5883},"width: 18.1818%;",[],{"type":10,"tag":2672,"props":5886,"children":5887},{"style":5883},[],{"type":10,"tag":2672,"props":5889,"children":5890},{"style":5883},[],{"type":10,"tag":2672,"props":5892,"children":5893},{"style":5883},[],{"type":10,"tag":2672,"props":5895,"children":5897},{"style":5896},"width: 18.1819%;",[],{"type":10,"tag":2711,"props":5899,"children":5900},{},[5901,6014],{"type":10,"tag":2689,"props":5902,"children":5903},{},[5904,6001],{"type":10,"tag":2718,"props":5905,"children":5908},{"className":5906,"colSpan":5907},[2662,2705,2706],"5",[5909],{"type":10,"tag":11,"props":5910,"children":5912},{"className":5911},[2662],[5913],{"type":10,"tag":4758,"props":5914,"children":5917},{"xml:id":5915,"xreflabel":5916},"OpIsNodePayloadValidAMDX","[OpIsNodePayloadValidAMDX]",[5918,5922,5924,5928,5929,5933,5935,5939,5940,5944,5946,5950,5952,5957,5959,5964,5966,5970,5972,5977,5978,5982,5983,5987,5988,5993,5995,5999],{"type":10,"tag":2737,"props":5919,"children":5920},{"role":2739},[5921],{"type":15,"value":5915},{"type":15,"value":5923},"\nCheck if the node payload identified by the ",{"type":10,"tag":2737,"props":5925,"children":5926},{},[5927],{"type":15,"value":3436},{"type":15,"value":2834},{"type":10,"tag":2737,"props":5930,"children":5931},{"role":2739},[5932],{"type":15,"value":4110},{"type":15,"value":5934}," decoration,\nwith an index equal to the sum of its ",{"type":10,"tag":2737,"props":5936,"children":5937},{"role":2739},[5938],{"type":15,"value":4198},{"type":15,"value":5261},{"type":10,"tag":2737,"props":5941,"children":5942},{},[5943],{"type":15,"value":4210},{"type":15,"value":5945},"\ncan be allocated.",{"type":10,"tag":2737,"props":5947,"children":5948},{},[5949],{"type":15,"value":5412},{"type":15,"value":5951}," is equal to ",{"type":10,"tag":2737,"props":5953,"children":5954},{"role":2739},[5955],{"type":15,"value":5956},"OpConstantTrue",{"type":15,"value":5958}," if the payload is valid and can be allocated, ",{"type":10,"tag":2737,"props":5960,"children":5961},{"role":2739},[5962],{"type":15,"value":5963},"OpConstantFalse",{"type":15,"value":5965}," otherwise.",{"type":10,"tag":2737,"props":5967,"children":5968},{},[5969],{"type":15,"value":5217},{"type":15,"value":5971}," must be ",{"type":10,"tag":2737,"props":5973,"children":5974},{"role":2739},[5975],{"type":15,"value":5976},"OpTypeBool",{"type":15,"value":757},{"type":10,"tag":2737,"props":5979,"children":5980},{},[5981],{"type":15,"value":4002},{"type":15,"value":3449},{"type":10,"tag":2737,"props":5984,"children":5985},{"role":2739},[5986],{"type":15,"value":3730},{"type":15,"value":4129},{"type":10,"tag":2737,"props":5989,"children":5990},{},[5991],{"type":15,"value":5992},"NodeIndex",{"type":15,"value":5994}," must be less than the value specified by the ",{"type":10,"tag":2737,"props":5996,"children":5997},{"role":2739},[5998],{"type":15,"value":4287},{"type":15,"value":6000}," decoration if specified.",{"type":10,"tag":2718,"props":6002,"children":6004},{"className":6003},[2662,2705,2706],[6005],{"type":10,"tag":11,"props":6006,"children":6008},{"className":6007},[2662],[6009,6010],{"type":15,"value":4793},{"type":10,"tag":2737,"props":6011,"children":6012},{"role":2739},[6013],{"type":15,"value":2742},{"type":10,"tag":2689,"props":6015,"children":6016},{},[6017,6026,6036,6052,6069,6085],{"type":10,"tag":2718,"props":6018,"children":6020},{"className":6019},[2662,2705,2706],[6021],{"type":10,"tag":11,"props":6022,"children":6024},{"className":6023},[2662],[6025],{"type":15,"value":5907},{"type":10,"tag":2718,"props":6027,"children":6029},{"className":6028},[2662,2705,2706],[6030],{"type":10,"tag":11,"props":6031,"children":6033},{"className":6032},[2662],[6034],{"type":15,"value":6035},"5101",{"type":10,"tag":2718,"props":6037,"children":6039},{"className":6038},[2662,2705,2706],[6040],{"type":10,"tag":11,"props":6041,"children":6043},{"className":6042},[2662],[6044,6048],{"type":10,"tag":2737,"props":6045,"children":6046},{},[6047],{"type":15,"value":3035},{"type":10,"tag":2737,"props":6049,"children":6050},{},[6051],{"type":15,"value":5217},{"type":10,"tag":2718,"props":6053,"children":6055},{"className":6054},[2662,2705,2706],[6056],{"type":10,"tag":11,"props":6057,"children":6059},{"className":6058},[2662],[6060,6064,6065],{"type":10,"tag":2737,"props":6061,"children":6062},{},[6063],{"type":15,"value":5412},{"type":15,"value":807},{"type":10,"tag":2737,"props":6066,"children":6067},{},[6068],{"type":15,"value":3035},{"type":10,"tag":2718,"props":6070,"children":6072},{"className":6071},[2662,2705,2706],[6073],{"type":10,"tag":11,"props":6074,"children":6076},{"className":6075},[2662],[6077,6081],{"type":10,"tag":2737,"props":6078,"children":6079},{},[6080],{"type":15,"value":3035},{"type":10,"tag":2737,"props":6082,"children":6083},{},[6084],{"type":15,"value":4002},{"type":10,"tag":2718,"props":6086,"children":6088},{"className":6087},[2662,2705,2706],[6089],{"type":10,"tag":11,"props":6090,"children":6092},{"className":6091},[2662],[6093,6097],{"type":10,"tag":2737,"props":6094,"children":6095},{},[6096],{"type":15,"value":3035},{"type":10,"tag":2737,"props":6098,"children":6099},{},[6100],{"type":15,"value":4210},{"type":10,"tag":11,"props":6102,"children":6103},{},[6104,6106,6110],{"type":15,"value":6105},"Payloads enqueued in this way will be provided to the node through the ",{"type":10,"tag":34,"props":6107,"children":6108},{},[6109],{"type":15,"value":1990},{"type":15,"value":6111}," storage class in the shader.\nThese payloads can be read by the receiving node, but also can be written for a limited amount of communication between multiple workgroups enqueued for the same node.\nIt is a data race if one workgroup writes to a particular element of the payload and another workgroup accesses it in any way, with one exception; once all nodes have finished writing, it is safe for the last node to read those values.\nWorkgroups can indicate that they have finished writing to the payload by calling:",{"type":10,"tag":2659,"props":6113,"children":6115},{"className":6114},[2662,2663,2664,2665],[6116,6137],{"type":10,"tag":2668,"props":6117,"children":6118},{},[6119,6123,6127,6130,6133],{"type":10,"tag":2672,"props":6120,"children":6122},{"style":6121},"width: 42.8571%;",[],{"type":10,"tag":2672,"props":6124,"children":6126},{"style":6125},"width: 14.2857%;",[],{"type":10,"tag":2672,"props":6128,"children":6129},{"style":6125},[],{"type":10,"tag":2672,"props":6131,"children":6132},{"style":6125},[],{"type":10,"tag":2672,"props":6134,"children":6136},{"style":6135},"width: 14.2858%;",[],{"type":10,"tag":2711,"props":6138,"children":6139},{},[6140,6234],{"type":10,"tag":2689,"props":6141,"children":6142},{},[6143,6221],{"type":10,"tag":2718,"props":6144,"children":6146},{"className":6145,"colSpan":5664},[2662,2705,2706],[6147],{"type":10,"tag":11,"props":6148,"children":6150},{"className":6149},[2662],[6151],{"type":10,"tag":4758,"props":6152,"children":6154},{"xml:id":4438,"xreflabel":6153},"[OpFinishWritingNodePayloadAMDX]",[6155,6159,6161,6165,6166,6170,6172,6174,6178,6180,6185,6187,6189,6193,6194,6198,6199,6203,6204,6209,6211,6215,6216,6220],{"type":10,"tag":2737,"props":6156,"children":6157},{"role":2739},[6158],{"type":15,"value":4438},{"type":15,"value":6160},"\nOptionally indicates that all writes to the input payload by the current workgroup have completed.",{"type":10,"tag":2737,"props":6162,"children":6163},{},[6164],{"type":15,"value":5412},{"type":15,"value":5951},{"type":10,"tag":2737,"props":6167,"children":6168},{"role":2739},[6169],{"type":15,"value":5956},{"type":15,"value":6171}," if all workgroups that can access this payload have called this function.",{"type":15,"value":6173},"\nMust not be called if the shader is using ",{"type":10,"tag":2737,"props":6175,"children":6176},{"role":2739},[6177],{"type":15,"value":501},{"type":15,"value":6179}," execution mode,\nor if the shader was dispatched with a ",{"type":10,"tag":6181,"props":6182,"children":6183},"literal",{},[6184],{"type":15,"value":3575},{"type":15,"value":6186}," client API command,\nrather than enqueued from another shader.",{"type":15,"value":6188},"\nMust not be called if the input payload is not decorated with ",{"type":10,"tag":2737,"props":6190,"children":6191},{"role":2739},[6192],{"type":15,"value":4431},{"type":15,"value":757},{"type":10,"tag":2737,"props":6195,"children":6196},{},[6197],{"type":15,"value":5217},{"type":15,"value":5971},{"type":10,"tag":2737,"props":6200,"children":6201},{"role":2739},[6202],{"type":15,"value":5976},{"type":15,"value":757},{"type":10,"tag":2737,"props":6205,"children":6206},{},[6207],{"type":15,"value":6208},"Payload",{"type":15,"value":6210}," must be the result of an ",{"type":10,"tag":2737,"props":6212,"children":6213},{"role":2739},[6214],{"type":15,"value":2832},{"type":15,"value":2834},{"type":10,"tag":2737,"props":6217,"children":6218},{"role":2739},[6219],{"type":15,"value":1990},{"type":15,"value":5236},{"type":10,"tag":2718,"props":6222,"children":6224},{"className":6223},[2662,2705,2706],[6225],{"type":10,"tag":11,"props":6226,"children":6228},{"className":6227},[2662],[6229,6230],{"type":15,"value":4793},{"type":10,"tag":2737,"props":6231,"children":6232},{"role":2739},[6233],{"type":15,"value":2742},{"type":10,"tag":2689,"props":6235,"children":6236},{},[6237,6246,6255,6271,6288],{"type":10,"tag":2718,"props":6238,"children":6240},{"className":6239},[2662,2705,2706],[6241],{"type":10,"tag":11,"props":6242,"children":6244},{"className":6243},[2662],[6245],{"type":15,"value":5664},{"type":10,"tag":2718,"props":6247,"children":6249},{"className":6248},[2662,2705,2706],[6250],{"type":10,"tag":11,"props":6251,"children":6253},{"className":6252},[2662],[6254],{"type":15,"value":4418},{"type":10,"tag":2718,"props":6256,"children":6258},{"className":6257},[2662,2705,2706],[6259],{"type":10,"tag":11,"props":6260,"children":6262},{"className":6261},[2662],[6263,6267],{"type":10,"tag":2737,"props":6264,"children":6265},{},[6266],{"type":15,"value":3035},{"type":10,"tag":2737,"props":6268,"children":6269},{},[6270],{"type":15,"value":5217},{"type":10,"tag":2718,"props":6272,"children":6274},{"className":6273},[2662,2705,2706],[6275],{"type":10,"tag":11,"props":6276,"children":6278},{"className":6277},[2662],[6279,6283,6284],{"type":10,"tag":2737,"props":6280,"children":6281},{},[6282],{"type":15,"value":5412},{"type":15,"value":807},{"type":10,"tag":2737,"props":6285,"children":6286},{},[6287],{"type":15,"value":3035},{"type":10,"tag":2718,"props":6289,"children":6291},{"className":6290},[2662,2705,2706],[6292],{"type":10,"tag":11,"props":6293,"children":6295},{"className":6294},[2662],[6296,6300],{"type":10,"tag":2737,"props":6297,"children":6298},{},[6299],{"type":15,"value":3035},{"type":10,"tag":2737,"props":6301,"children":6302},{},[6303],{"type":15,"value":6208},{"type":10,"tag":11,"props":6305,"children":6306},{},[6307],{"type":15,"value":6308},"Once this has been called for a given payload, writing values into that payload by the current invocation/workgroup is undefined behavior.",{"type":10,"tag":17,"props":6310,"children":6312},{"id":6311},"_issues",[6313],{"type":15,"value":6314},"Issues",{"type":10,"tag":99,"props":6316,"children":6318},{"id":6317},"_how_does_this_extension_interact_with_device_groups",[6319],{"type":15,"value":6320},"How does this extension interact with device groups?",{"type":10,"tag":11,"props":6322,"children":6323},{},[6324],{"type":15,"value":6325},"It works the same as any other dispatch commands - work is replicated to all devices unless applications split the work themselves.\nThere is no automatic scheduling between devices.",{"type":10,"tag":99,"props":6327,"children":6329},{"id":6328},"_what_dynamic_state_should_be_allowed",[6330],{"type":15,"value":6331},"What dynamic state should be allowed?",{"type":10,"tag":11,"props":6333,"children":6334},{},[6335],{"type":15,"value":6336},"Proposed: Support a subset of dynamic state.",{"type":10,"tag":11,"props":6338,"children":6339},{},[6340],{"type":15,"value":6341},"For now, this specification exposes basic \"value\" state - primarily things where there is only a value to modify rather than a mode switch or state enable.",{"type":10,"tag":6343,"props":6344,"children":6345},"style",{},[6346],{"type":15,"value":6347},"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":130,"searchDepth":161,"depth":161,"links":6349},[6350,6351,6352,6356],{"id":19,"depth":161,"text":22},{"id":43,"depth":161,"text":46},{"id":94,"depth":161,"text":97,"children":6353},[6354,6355],{"id":101,"depth":181,"text":104},{"id":2649,"depth":181,"text":2652},{"id":6311,"depth":161,"text":6314,"children":6357},[6358,6359],{"id":6317,"depth":181,"text":6320},{"id":6328,"depth":181,"text":6331},"markdown",[6362,6367,6370,6373,6376,6379,6382,6385,6388,6391,6394,6397,6400,6403,6406,6409,6412,6415,6418,6421,6424,6427,6430,6433,6436,6439,6442,6445,6448,6451,6454,6457,6461,6465,6469,6473,6477,6481,6485,6489,6493,6497,6501,6505,6509,6513,6517,6520,6524,6528,6532,6536,6539,6542,6545,6548,6551,6554,6557,6560],{"index":6363,"title":6364,"id":6365,"appendix":6366},0,"Preamble","preamble",false,{"index":140,"title":6368,"id":6369,"appendix":6366},"Introduction","introduction",{"index":161,"title":6371,"id":6372,"appendix":6366},"Fundamentals","fundamentals",{"index":181,"title":6374,"id":6375,"appendix":6366},"Initialization","initialization",{"index":199,"title":6377,"id":6378,"appendix":6366},"Devices and Queues","devsandqueues",{"index":218,"title":6380,"id":6381,"appendix":6366},"Command Buffers","commandbuffers",{"index":246,"title":6383,"id":6384,"appendix":6366},"Synchronization and Cache Control","synchronization",{"index":272,"title":6386,"id":6387,"appendix":6366},"Render Pass","renderpass",{"index":295,"title":6389,"id":6390,"appendix":6366},"Shaders","shaders",{"index":305,"title":6392,"id":6393,"appendix":6366},"Pipelines","pipelines",{"index":324,"title":6395,"id":6396,"appendix":6366},"Memory Allocation","memory",{"index":333,"title":6398,"id":6399,"appendix":6366},"Resource Creation","resources",{"index":351,"title":6401,"id":6402,"appendix":6366},"Samplers","samplers",{"index":360,"title":6404,"id":6405,"appendix":6366},"Resource Descriptors","descriptorsets",{"index":373,"title":6407,"id":6408,"appendix":6366},"Shader Interfaces","interfaces",{"index":395,"title":6410,"id":6411,"appendix":6366},"Image Operations","textures",{"index":417,"title":6413,"id":6414,"appendix":6366},"Fragment Density Map Operations","fragmentdensitymapops",{"index":426,"title":6416,"id":6417,"appendix":6366},"Queries","queries",{"index":435,"title":6419,"id":6420,"appendix":6366},"Clear Commands","clears",{"index":449,"title":6422,"id":6423,"appendix":6366},"Copy Commands","copies",{"index":1630,"title":6425,"id":6426,"appendix":6366},"Drawing Commands","drawing",{"index":1647,"title":6428,"id":6429,"appendix":6366},"Fixed-Function Vertex Processing","fxvertex",{"index":1663,"title":6431,"id":6432,"appendix":6366},"Tessellation","tessellation",{"index":1679,"title":6434,"id":6435,"appendix":6366},"Geometry Shading","geometry",{"index":1695,"title":6437,"id":6438,"appendix":6366},"Mesh Shading","mesh",{"index":1719,"title":6440,"id":6441,"appendix":6366},"Cluster Culling Shading","cluster-culling",{"index":1727,"title":6443,"id":6444,"appendix":6366},"Fixed-Function Vertex Post-Processing","vertexpostproc",{"index":1744,"title":6446,"id":6447,"appendix":6366},"Rasterization","primsrast",{"index":1760,"title":6449,"id":6450,"appendix":6366},"Fragment Operations","fragops",{"index":1776,"title":6452,"id":6453,"appendix":6366},"The Framebuffer","framebuffer",{"index":1792,"title":6455,"id":6456,"appendix":6366},"Dispatching Commands","dispatch",{"index":6458,"title":6459,"id":6460,"appendix":6366},31,"Device-Generated Commands","device-generated-commands",{"index":6462,"title":6463,"id":6464,"appendix":6366},32,"Sparse Resources","sparsememory",{"index":6466,"title":6467,"id":6468,"appendix":6366},33,"Window System Integration (WSI)","wsi",{"index":6470,"title":6471,"id":6472,"appendix":6366},34,"Deferred Host Operations","deferred-host-operations",{"index":6474,"title":6475,"id":6476,"appendix":6366},35,"Private Data","private-data",{"index":6478,"title":6479,"id":6480,"appendix":6366},36,"Acceleration Structures","acceleration-structure",{"index":6482,"title":6483,"id":6484,"appendix":6366},37,"Micromap","micromap",{"index":6486,"title":6487,"id":6488,"appendix":6366},38,"Ray Traversal","ray-traversal",{"index":6490,"title":6491,"id":6492,"appendix":6366},39,"Ray Tracing","ray-tracing",{"index":6494,"title":6495,"id":6496,"appendix":6366},40,"Memory Decompression","memory-decompression",{"index":6498,"title":6499,"id":6500,"appendix":6366},41,"Video Coding","video-coding",{"index":6502,"title":6503,"id":6504,"appendix":6366},42,"Optical Flow","opticalflow",{"index":6506,"title":6507,"id":6508,"appendix":6366},43,"Execution Graphs","executiongraphs",{"index":6510,"title":6511,"id":6512,"appendix":6366},44,"External Compute Queues","_external_compute_queues",{"index":6514,"title":6515,"id":6516,"appendix":6366},45,"Extending Vulkan","extendingvulkan",{"index":6518,"title":2560,"id":6519,"appendix":6366},46,"features",{"index":6521,"title":6522,"id":6523,"appendix":6366},47,"Limits","limits",{"index":6525,"title":6526,"id":6527,"appendix":6366},48,"Formats","formats",{"index":6529,"title":6530,"id":6531,"appendix":6366},49,"Additional Capabilities","capabilities",{"index":6533,"title":6534,"id":6535,"appendix":6366},50,"Debugging","debugging",{"index":6363,"title":6537,"id":6538,"appendix":299},"Vulkan Environment for SPIR-V","spirvenv",{"index":140,"title":6540,"id":6541,"appendix":299},"Memory Model","memory-model",{"index":161,"title":6543,"id":6544,"appendix":299},"Compressed Image Formats","compressed_image_formats",{"index":181,"title":6546,"id":6547,"appendix":299},"Core Revisions (Informative)","versions",{"index":199,"title":6549,"id":6550,"appendix":299},"Layers & Extensions (Informative)","extensions",{"index":218,"title":6552,"id":6553,"appendix":299},"API Boilerplate","boilerplate",{"index":246,"title":6555,"id":6556,"appendix":299},"Invariance","invariance",{"index":272,"title":6558,"id":6559,"appendix":299},"Lexicon","lexicon",{"index":295,"title":6561,"id":6562,"appendix":299},"Credits (Informative)","credits",[6564,6571,6575,6580,6584,6589,6592,6595,6598,6602,6606,6609,6612,6615,6617,6619,6622,6625,6629,6631,6635,6637,6640,6642,6645,6653,6657,6663,6668,6672,6677,6679,6683,6689,6695,6702,6704,6708,6714,6717,6721,6726,6730,6734,6738,6742,6745,6748,6754,6757,6760,6764,6768,6773,6777,6780,6782,6786,6791,6797,6800,6804,6808,6811,6817,6820,6824,6827,6831,6834,6838,6841,6846,6850,6853,6858,6863,6866,6869,6874,6877,6881,6886,6891,6895,6898,6902,6906,6911,6915,6919,6922,6925,6929,6932,6935,6938,6942,6947,6951,6954,6958,6963,6967,6972,6975,6978,6983,6987,6991,6994,6998,7003,7006,7011,7015,7018,7021,7025,7029,7033,7038,7042,7045,7050,7054,7058,7061,7065,7069,7073,7076,7078,7082,7085,7088,7091,7094,7097,7100,7103,7106,7109,7113,7117,7120,7123,7126,7129,7132,7135,7139,7143,7147,7150,7154,7157,7160,7163,7165,7169,7174,7178,7182,7185,7187,7191,7194,7201,7205,7209,7213,7219,7221,7225,7229,7232,7235,7239,7244,7249,7255,7259,7261,7266,7269,7274,7278,7283,7287,7291,7293,7296,7299,7301,7305,7308,7311,7316,7320,7324,7326,7331,7335,7339,7341,7343,7346,7348,7351,7354,7358,7362,7364,7368,7371,7375,7378,7380,7383,7387,7389,7393,7396,7399,7402,7406,7409,7412,7415,7418,7420,7423,7427,7430,7432,7434,7436,7438,7442,7445,7448,7453,7457,7460,7463,7466,7469,7471,7475,7479,7482,7485,7489,7492,7497,7501,7504,7508,7511,7514,7518,7522,7524,7529,7532,7536,7539,7542,7545,7548,7550,7553,7557,7560,7564,7567,7571,7575,7578,7581,7584,7587,7591,7594,7597,7599,7604,7605,7609,7612,7615,7618,7621,7623,7627,7630,7633,7636,7640,7643,7645,7649,7651,7655,7658,7660,7663,7667,7671,7673,7677,7680,7683,7686,7689,7693,7698,7703,7707,7713,7717,7720,7724,7728,7731,7734,7738,7742,7745,7748,7751,7755,7758,7763,7767,7769,7775,7778,7781,7784,7787,7790,7794,7799,7802,7806,7810,7812,7815,7817,7820,7822,7824,7827,7830,7833,7836,7839,7842,7844,7848,7852,7856,7860,7863,7866,7870,7873,7877,7881,7885,7887,7891,7895,7898,7901,7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934,7937,7940,7944,7947,7951,7955,7958,7961,7964,7967,7970,7973,7977,7980,7984,7987,7993,7997,8001,8005],{"number":6565,"type":173,"author":6566,"provisional":299,"depends":6567,"platform":6568,"contact":6569,"extension":6570,"proposal":299},135,"AMD","((VK_KHR_synchronization2+VK_KHR_spirv_1_4+VK_EXT_extended_dynamic_state),VK_VERSION_1_3)+VK_KHR_maintenance5+VK_KHR_pipeline_library","provisional","Tobias Hector @tobski","VK_AMDX_shader_enqueue",{"number":6572,"type":173,"author":6566,"provisional":6366,"contact":6573,"extension":6574,"proposal":299},477,"Stu Smith","VK_AMD_anti_lag",{"number":6576,"type":173,"author":6566,"provisional":6366,"specialuse":6577,"contact":6578,"extension":6579,"proposal":6366},180,"devtools","Daniel Rakos @drakos-amd","VK_AMD_buffer_marker",{"number":6581,"type":173,"author":6566,"provisional":6366,"depends":6582,"contact":6569,"extension":6583,"proposal":6366},230,"VK_KHR_get_physical_device_properties2,VK_VERSION_1_1","VK_AMD_device_coherent_memory",{"number":6585,"type":173,"author":6566,"provisional":6366,"depends":6586,"contact":6587,"extension":6588,"proposal":6366},214,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_get_surface_capabilities2+VK_KHR_swapchain","Matthaeus G. Chajdas @anteru","VK_AMD_display_native_hdr",{"number":6470,"type":173,"author":6566,"promotedto":6590,"provisional":6366,"contact":6578,"extension":6591,"proposal":6366},"VK_KHR_draw_indirect_count","VK_AMD_draw_indirect_count",{"number":1727,"type":173,"author":6566,"provisional":6366,"contact":6593,"extension":6594,"proposal":6366},"Dominik Witczak @dominikwitczakamd","VK_AMD_gcn_shader",{"number":6482,"type":173,"author":6566,"deprecatedby":6596,"provisional":6366,"contact":6593,"extension":6597,"proposal":6366},"VK_KHR_shader_float16_int8","VK_AMD_gpu_shader_half_float",{"number":6599,"type":173,"author":6566,"deprecatedby":6596,"provisional":6366,"contact":6600,"extension":6601,"proposal":6366},133,"Qun Lin @linqun","VK_AMD_gpu_shader_int16",{"number":6603,"type":173,"author":6566,"provisional":6366,"contact":6604,"extension":6605,"proposal":6366},190,"Martin Dinkov @mdinkov","VK_AMD_memory_overallocation_behavior",{"number":6607,"type":173,"author":6566,"provisional":6366,"contact":6587,"extension":6608,"proposal":6366},137,"VK_AMD_mixed_attachment_samples",{"number":6478,"type":173,"author":6566,"obsoletedby":6610,"provisional":6366,"contact":6587,"extension":6611,"proposal":6366},"VK_KHR_maintenance1","VK_AMD_negative_viewport_height",{"number":6613,"type":173,"author":6566,"provisional":6366,"contact":6587,"extension":6614,"proposal":6366},184,"VK_AMD_pipeline_compiler_control",{"number":449,"type":173,"author":6566,"provisional":6366,"contact":6578,"extension":6616,"proposal":6366},"VK_AMD_rasterization_order",{"number":6486,"type":173,"author":6566,"provisional":6366,"contact":6593,"extension":6618,"proposal":6366},"VK_AMD_shader_ballot",{"number":6620,"type":173,"author":6566,"provisional":6366,"depends":6582,"contact":6604,"extension":6621,"proposal":6366},186,"VK_AMD_shader_core_properties",{"number":6623,"type":173,"author":6566,"provisional":6366,"depends":6621,"contact":6587,"extension":6624,"proposal":6366},228,"VK_AMD_shader_core_properties2",{"number":6626,"type":173,"author":6627,"provisional":6366,"depends":6582,"contact":6569,"extension":6628,"proposal":299},322,"EXT","VK_AMD_shader_early_and_late_fragment_tests",{"number":1663,"type":173,"author":6566,"provisional":6366,"contact":6600,"extension":6630,"proposal":6366},"VK_AMD_shader_explicit_vertex_parameter",{"number":6632,"type":173,"author":6566,"provisional":6366,"contact":6633,"extension":6634,"proposal":6366},138,"Aaron Hagan @AaronHaganAMD","VK_AMD_shader_fragment_mask",{"number":6521,"type":173,"author":6566,"provisional":6366,"contact":6593,"extension":6636,"proposal":6366},"VK_AMD_shader_image_load_store_lod",{"number":6506,"type":173,"author":6566,"provisional":6366,"specialuse":6577,"contact":6638,"extension":6639,"proposal":6366},"Jaakko Konttinen @jaakkoamd","VK_AMD_shader_info",{"number":1647,"type":173,"author":6566,"provisional":6366,"contact":6600,"extension":6641,"proposal":6366},"VK_AMD_shader_trinary_minmax",{"number":6502,"type":173,"author":6566,"provisional":6366,"depends":6582,"contact":6643,"extension":6644,"proposal":6366},"Rex Xu @amdrexu","VK_AMD_texture_gather_bias_lod",{"number":6646,"type":173,"author":6647,"provisional":6366,"depends":6648,"platform":6649,"specialuse":6650,"contact":6651,"extension":6652,"proposal":299},469,"ANDROID","VK_ANDROID_external_memory_android_hardware_buffer","android","glemulation","Chris Forbes @chrisforbes","VK_ANDROID_external_format_resolve",{"number":6654,"type":173,"author":6647,"provisional":6366,"depends":6655,"platform":6649,"contact":6656,"extension":6648,"proposal":6366},130,"((VK_KHR_sampler_ycbcr_conversion+VK_KHR_external_memory+VK_KHR_dedicated_allocation),VK_VERSION_1_1)+VK_EXT_queue_family_foreign","Jesse Hall @critsec",{"number":6658,"type":173,"author":6659,"provisional":6366,"depends":6660,"contact":6661,"extension":6662,"proposal":299},597,"ARM","VK_EXT_opacity_micromap","Mathieu Robart @mathieurobart-arm","VK_ARM_pipeline_opacity_micromap",{"number":6664,"type":173,"author":6659,"promotedto":6665,"provisional":6366,"depends":6582,"contact":6666,"extension":6667,"proposal":6366},343,"VK_EXT_rasterization_order_attachment_access","Jan-Harald Fredriksen @janharaldfredriksen-arm","VK_ARM_rasterization_order_attachment_access",{"number":6669,"type":173,"author":6659,"provisional":6366,"depends":6670,"contact":6666,"extension":6671,"proposal":299},425,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_synchronization2),VK_VERSION_1_3","VK_ARM_render_pass_striped",{"number":6673,"type":173,"author":6659,"provisional":6366,"depends":6674,"contact":6675,"extension":6676,"proposal":6366},418,"VK_ARM_shader_core_builtins","Kevin Petit @kpet","VK_ARM_scheduling_controls",{"number":6678,"type":173,"author":6659,"provisional":6366,"depends":6582,"contact":6675,"extension":6674,"proposal":6366},498,{"number":6680,"type":173,"author":6659,"provisional":6366,"depends":6681,"contact":6666,"extension":6682,"proposal":6366},416,"VK_VERSION_1_1","VK_ARM_shader_core_properties",{"number":6684,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6687,"extension":6688,"proposal":6366},341,"VK_VERSION_1_3","vulkansc","Joshua Ashton @Joshua-Ashton","VK_EXT_4444_formats",{"number":6690,"type":6691,"author":6627,"provisional":6366,"depends":6692,"contact":6693,"extension":6694,"proposal":6366},286,"instance","VK_EXT_direct_mode_display","Drew DeVault sir@cmpwn.com","VK_EXT_acquire_drm_display",{"number":6696,"type":6691,"author":6697,"provisional":6366,"depends":6692,"platform":6698,"ratified":6699,"contact":6700,"extension":6701,"proposal":6366},90,"NV","xlib_xrandr","vulkan","James Jones @cubanismo","VK_EXT_acquire_xlib_display",{"extension":6703,"proposal":6366},"VK_EXT_application_parameters",{"number":6705,"type":173,"author":6659,"provisional":6366,"depends":6582,"ratified":6706,"contact":6666,"extension":6707,"proposal":6366},68,"vulkan,vulkansc","VK_EXT_astc_decode_mode",{"number":6709,"type":173,"author":6627,"provisional":6366,"depends":6710,"ratified":6699,"specialuse":6711,"contact":6712,"extension":6713,"proposal":299},525,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_attachment_feedback_loop_layout","glemulation,d3demulation","Mike Blumenkrantz @zmike","VK_EXT_attachment_feedback_loop_dynamic_state",{"number":6715,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6711,"contact":6687,"extension":6716,"proposal":299},340,"VK_EXT_attachment_feedback_loop_layout",{"number":6718,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6706,"contact":6719,"extension":6720,"proposal":6366},149,"Jeff Bolz @jeffbolznv","VK_EXT_blend_operation_advanced",{"number":6722,"type":173,"author":6627,"provisional":6366,"depends":6723,"ratified":6699,"specialuse":6711,"contact":6724,"extension":6725,"proposal":6366},412,"VK_EXT_custom_border_color","Piers Daniell @pdaniell-nv","VK_EXT_border_color_swizzle",{"number":6727,"type":173,"author":6697,"deprecatedby":6728,"provisional":6366,"depends":6582,"contact":6719,"extension":6729,"proposal":6366},245,"VK_KHR_buffer_device_address","VK_EXT_buffer_device_address",{"number":6731,"type":173,"author":6627,"promotedto":6732,"provisional":6366,"depends":6582,"contact":6578,"extension":6733,"proposal":299},185,"VK_KHR_calibrated_timestamps","VK_EXT_calibrated_timestamps",{"number":6735,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6736,"extension":6737,"proposal":6366},382,"Sharif Elcott @selcott","VK_EXT_color_write_enable",{"number":6739,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":6740,"extension":6741,"proposal":6366},82,"Vikram Kushwaha @vkushwaha","VK_EXT_conditional_rendering",{"number":6743,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6744,"proposal":6366},102,"VK_EXT_conservative_rasterization",{"number":6746,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"specialuse":6711,"contact":6747,"extension":6723,"proposal":6366},288,"Liam Middlebrook @liam-middlebrook",{"number":1679,"type":173,"author":6749,"promotedto":6750,"provisional":6366,"depends":6751,"specialuse":6535,"contact":6752,"extension":6753,"proposal":6366},"Baldur Karlsson","VK_EXT_debug_utils","VK_EXT_debug_report","Baldur Karlsson @baldurk","VK_EXT_debug_marker",{"number":351,"type":6691,"author":6755,"deprecatedby":6750,"provisional":6366,"specialuse":6535,"contact":6756,"extension":6751,"proposal":6366},"GOOGLE","Courtney Goeltzenleuchter @courtney-g",{"number":6758,"type":6691,"author":6627,"provisional":6366,"ratified":6706,"specialuse":6535,"contact":6759,"extension":6750,"proposal":6366},129,"Mark Young @marky-lunarg",{"number":6761,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6762,"contact":6687,"extension":6763,"proposal":299},284,"d3demulation","VK_EXT_depth_bias_control",{"number":6765,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6766,"extension":6767,"proposal":299},583,"Jules Blok @jules","VK_EXT_depth_clamp_control",{"number":6769,"type":173,"author":6627,"promotedto":6770,"provisional":6366,"depends":6582,"ratified":6699,"contact":6771,"extension":6772,"proposal":6366},422,"VK_KHR_depth_clamp_zero_one","Graeme Leese @gnl21","VK_EXT_depth_clamp_zero_one",{"number":6774,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6650,"contact":6775,"extension":6776,"proposal":6366},356,"Shahbaz Youssefi @syoussefi","VK_EXT_depth_clip_control",{"number":6778,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"specialuse":6762,"contact":6724,"extension":6779,"proposal":6366},103,"VK_EXT_depth_clip_enable",{"number":373,"type":173,"author":6697,"provisional":6366,"ratified":6706,"contact":6724,"extension":6781,"proposal":6366},"VK_EXT_depth_range_unrestricted",{"number":6783,"type":173,"author":6627,"provisional":6366,"depends":6784,"ratified":6699,"contact":6569,"extension":6785,"proposal":299},317,"((((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_buffer_device_address+VK_EXT_descriptor_indexing),VK_VERSION_1_2)+VK_KHR_synchronization2),VK_VERSION_1_3","VK_EXT_descriptor_buffer",{"number":6787,"type":173,"author":6697,"promotedto":6788,"provisional":6366,"depends":6789,"ratified":6699,"contact":6719,"extension":6790,"proposal":6366},162,"VK_VERSION_1_2","(VK_KHR_get_physical_device_properties2+VK_KHR_maintenance3),VK_VERSION_1_1","VK_EXT_descriptor_indexing",{"number":6792,"type":173,"author":6627,"provisional":6366,"depends":6793,"specialuse":6794,"contact":6795,"extension":6796,"proposal":6366},355,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_debug_utils","debugging,devtools","Ralph Potter gitlab:@r_potter","VK_EXT_device_address_binding_report",{"number":6798,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6795,"extension":6799,"proposal":299},342,"VK_EXT_device_fault",{"number":6801,"type":173,"author":6627,"provisional":6366,"depends":6802,"ratified":6699,"contact":6712,"extension":6803,"proposal":299},573,"((VK_KHR_buffer_device_address,VK_VERSION_1_2)+VK_KHR_maintenance5),VK_VERSION_1_3","VK_EXT_device_generated_commands",{"number":6805,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6577,"contact":6806,"extension":6807,"proposal":6366},285,"Yiwei Zhang @zhangyiwei","VK_EXT_device_memory_report",{"number":6809,"type":6691,"author":6697,"provisional":6366,"depends":6810,"ratified":6706,"contact":6700,"extension":6692,"proposal":6366},89,"VK_KHR_display",{"number":6812,"type":6691,"author":6627,"provisional":6366,"depends":6813,"platform":6814,"ratified":6699,"contact":6815,"extension":6816,"proposal":6366},347,"VK_KHR_surface","directfb","Nicolas Caramelli @caramelli","VK_EXT_directfb_surface",{"number":6818,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6819,"proposal":6366},100,"VK_EXT_discard_rectangles",{"number":6821,"type":173,"author":6697,"provisional":6366,"depends":6822,"ratified":6706,"contact":6700,"extension":6823,"proposal":6366},92,"VK_EXT_display_surface_counter+VK_KHR_swapchain","VK_EXT_display_control",{"number":6825,"type":6691,"author":6697,"provisional":6366,"depends":6810,"ratified":6706,"contact":6700,"extension":6826,"proposal":6366},91,"VK_EXT_display_surface_counter",{"number":6828,"type":173,"author":6627,"provisional":6366,"depends":6829,"ratified":6699,"contact":6724,"extension":6830,"proposal":299},500,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_dynamic_rendering),VK_VERSION_1_3","VK_EXT_dynamic_rendering_unused_attachments",{"number":6832,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6724,"extension":6833,"proposal":6366},268,"VK_EXT_extended_dynamic_state",{"number":6835,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6836,"extension":6837,"proposal":6366},378,"Vikram Kushwaha @vkushwaha-nv","VK_EXT_extended_dynamic_state2",{"number":6839,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6699,"contact":6724,"extension":6840,"proposal":299},456,"VK_EXT_extended_dynamic_state3",{"number":6842,"type":173,"author":6627,"provisional":6366,"depends":6843,"ratified":6699,"contact":6844,"extension":6845,"proposal":299},454,"VK_KHR_external_memory,VK_VERSION_1_1","Lina Versace @linyaa-kiwi","VK_EXT_external_memory_acquire_unmodified",{"number":6847,"type":173,"author":6627,"provisional":6366,"depends":6848,"ratified":6706,"contact":6844,"extension":6849,"proposal":6366},126,"VK_KHR_external_memory_fd","VK_EXT_external_memory_dma_buf",{"number":6851,"type":173,"author":6627,"provisional":6366,"depends":6843,"ratified":6706,"contact":6578,"extension":6852,"proposal":6366},179,"VK_EXT_external_memory_host",{"number":6854,"type":173,"author":6627,"provisional":6366,"depends":6843,"platform":6855,"ratified":6699,"contact":6856,"extension":6857,"proposal":299},603,"metal","Aitor Camacho Larrondo @aitor-lunarg","VK_EXT_external_memory_metal",{"number":6859,"type":173,"author":6860,"provisional":6366,"ratified":6706,"contact":6861,"extension":6862,"proposal":6366},171,"QCOM","Matthew Netsch @mnetsch","VK_EXT_filter_cubic",{"number":6864,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6861,"extension":6865,"proposal":6366},219,"VK_EXT_fragment_density_map",{"number":6867,"type":173,"author":6627,"provisional":6366,"depends":6865,"ratified":6699,"contact":6861,"extension":6868,"proposal":6366},333,"VK_EXT_fragment_density_map2",{"number":6870,"type":173,"author":6627,"provisional":6366,"depends":6871,"contact":6872,"extension":6873,"proposal":299},620,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_fragment_density_map+(VK_KHR_create_renderpass2,VK_VERSION_1_2)+(VK_VERSION_1_3,VK_KHR_dynamic_rendering)","Connor Abbott @cwabbott0","VK_EXT_fragment_density_map_offset",{"number":6875,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6876,"proposal":6366},252,"VK_EXT_fragment_shader_interlock",{"number":6878,"type":173,"author":6627,"provisional":6366,"ratified":6699,"contact":6879,"extension":6880,"proposal":299},376,"James Fitzpatrick @jamesfitzpatrick","VK_EXT_frame_boundary",{"number":6882,"type":173,"author":6627,"provisional":6366,"depends":6883,"platform":6884,"ratified":6699,"contact":6700,"extension":6885,"proposal":6366},256,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_surface+VK_KHR_get_surface_capabilities2+VK_KHR_swapchain","win32","VK_EXT_full_screen_exclusive",{"number":6887,"type":173,"author":6627,"promotedto":6888,"provisional":6366,"contact":6889,"extension":6890,"proposal":6366},175,"VK_KHR_global_priority","Andres Rodriguez @lostgoat","VK_EXT_global_priority",{"number":6892,"type":173,"author":6627,"promotedto":6888,"provisional":6366,"depends":6893,"contact":6806,"extension":6894,"proposal":6366},389,"VK_EXT_global_priority+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","VK_EXT_global_priority_query",{"number":6896,"type":173,"author":6566,"provisional":6366,"depends":6897,"ratified":6699,"contact":6569,"extension":898,"proposal":299},321,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_pipeline_library",{"number":6899,"type":173,"author":6755,"provisional":6366,"depends":6900,"ratified":6706,"contact":6756,"extension":6901,"proposal":6366},106,"VK_KHR_swapchain","VK_EXT_hdr_metadata",{"number":6903,"type":6691,"author":6627,"provisional":6366,"depends":6813,"ratified":6706,"contact":6904,"extension":6905,"proposal":6366},257,"Lisa Wu @chengtianww","VK_EXT_headless_surface",{"number":6907,"type":173,"author":6627,"promotedto":6908,"provisional":6366,"depends":6909,"ratified":6699,"contact":6775,"extension":6910,"proposal":299},271,"VK_VERSION_1_4","((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_copy_commands2+VK_KHR_format_feature_flags2),VK_VERSION_1_3","VK_EXT_host_image_copy",{"number":6912,"type":173,"author":6627,"promotedto":6788,"provisional":6366,"depends":6582,"contact":6913,"extension":6914,"proposal":6366},262,"Bas Nieuwenhuizen @BNieuwenhuizen","VK_EXT_host_query_reset",{"number":6916,"type":173,"author":6627,"provisional":6366,"depends":6917,"ratified":6699,"specialuse":6650,"contact":6712,"extension":6918,"proposal":6366},394,"(VK_KHR_maintenance1+VK_KHR_get_physical_device_properties2),VK_VERSION_1_1","VK_EXT_image_2d_view_of_3d",{"number":6920,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6666,"extension":6921,"proposal":299},339,"VK_EXT_image_compression_control",{"number":6923,"type":173,"author":6627,"provisional":6366,"depends":6921,"ratified":6699,"contact":6666,"extension":6924,"proposal":6366},438,"VK_EXT_image_compression_control_swapchain",{"number":6926,"type":173,"author":6627,"provisional":6366,"depends":6927,"ratified":6706,"contact":6844,"extension":6928,"proposal":6366},159,"(((VK_KHR_bind_memory2+VK_KHR_get_physical_device_properties2+VK_KHR_sampler_ycbcr_conversion),VK_VERSION_1_1)+VK_KHR_image_format_list),VK_VERSION_1_2","VK_EXT_image_drm_format_modifier",{"number":6930,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6771,"extension":6931,"proposal":6366},336,"VK_EXT_image_robustness",{"number":6933,"type":173,"author":6627,"provisional":6366,"depends":6917,"specialuse":6762,"contact":6712,"extension":6934,"proposal":299},419,"VK_EXT_image_sliced_view_of_3d",{"number":6936,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6687,"extension":6937,"proposal":6366},392,"VK_EXT_image_view_min_lod",{"number":6939,"type":173,"author":6627,"promotedto":6940,"provisional":6366,"depends":6582,"contact":6724,"extension":6941,"proposal":6366},266,"VK_KHR_index_type_uint8","VK_EXT_index_type_uint8",{"number":6943,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6944,"contact":6945,"extension":6946,"proposal":6366},139,"(VK_KHR_get_physical_device_properties2+VK_KHR_maintenance1),VK_VERSION_1_1","Daniel Rakos @aqnuep","VK_EXT_inline_uniform_block",{"number":6948,"type":6691,"author":6627,"provisional":6366,"ratified":6706,"contact":6949,"extension":6950,"proposal":299},497,"Christophe Riccio @christophe","VK_EXT_layer_settings",{"number":6952,"type":173,"author":6627,"provisional":6366,"depends":6582,"specialuse":6650,"contact":6775,"extension":6953,"proposal":299},466,"VK_EXT_legacy_dithering",{"number":6955,"type":173,"author":6627,"provisional":6366,"depends":6956,"ratified":6699,"specialuse":6650,"contact":6712,"extension":6957,"proposal":299},496,"VK_EXT_vertex_input_dynamic_state","VK_EXT_legacy_vertex_attributes",{"number":6959,"type":173,"author":6627,"promotedto":6960,"provisional":6366,"depends":6582,"specialuse":6961,"contact":6719,"extension":6962,"proposal":6366},260,"VK_KHR_line_rasterization","cadsupport","VK_EXT_line_rasterization",{"number":6964,"type":173,"author":6627,"promotedto":6965,"provisional":6366,"ratified":6699,"contact":6775,"extension":6966,"proposal":6366},401,"VK_KHR_load_store_op_none","VK_EXT_load_store_op_none",{"number":6968,"type":173,"author":6627,"provisional":6366,"depends":6969,"ratified":6699,"contact":6970,"extension":6971,"proposal":299},273,"VK_KHR_map_memory2,VK_VERSION_1_4","Faith Ekstrand @gfxstrand","VK_EXT_map_memory_placed",{"number":6973,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6719,"extension":6974,"proposal":6366},238,"VK_EXT_memory_budget",{"number":6976,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6719,"extension":6977,"proposal":6366},239,"VK_EXT_memory_priority",{"number":6979,"type":173,"author":6627,"provisional":6366,"depends":6980,"contact":6981,"extension":6982,"proposal":299},329,"VK_KHR_spirv_1_4,VK_VERSION_1_2","Christoph Kubisch @pixeljetstream","VK_EXT_mesh_shader",{"number":6984,"type":173,"author":6627,"provisional":6366,"platform":6855,"ratified":6699,"contact":6985,"extension":6986,"proposal":299},312,"Bill Hollings @billhollings","VK_EXT_metal_objects",{"number":6988,"type":6691,"author":6627,"provisional":6366,"depends":6813,"platform":6855,"ratified":6699,"contact":6989,"extension":6990,"proposal":6366},218,"Dzmitry Malyshau @kvark","VK_EXT_metal_surface",{"number":6992,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6712,"extension":6993,"proposal":6366},393,"VK_EXT_multi_draw",{"number":6995,"type":173,"author":6627,"provisional":6366,"depends":6996,"ratified":6699,"contact":6775,"extension":6997,"proposal":299},377,"(VK_KHR_create_renderpass2+VK_KHR_depth_stencil_resolve),VK_VERSION_1_2","VK_EXT_multisampled_render_to_single_sampled",{"number":6999,"type":173,"author":6627,"provisional":6366,"depends":7000,"ratified":6699,"specialuse":6762,"contact":7001,"extension":7002,"proposal":299},495,"VK_KHR_maintenance3,VK_VERSION_1_1","Joshua Ashton @Joshua-Ashton,Hans-Kristian Arntzen @HansKristian-Work","VK_EXT_mutable_descriptor_type",{"number":7004,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":6724,"extension":7005,"proposal":6366},452,"VK_EXT_nested_command_buffer",{"number":7007,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":7008,"contact":7009,"extension":7010,"proposal":299},423,"d3demulation,glemulation","Georg Lehmann @DadSchoorse","VK_EXT_non_seamless_cube_map",{"number":7012,"type":173,"author":6627,"provisional":6366,"depends":7013,"ratified":6699,"contact":7014,"extension":6660,"proposal":299},397,"VK_KHR_acceleration_structure+(VK_KHR_synchronization2,VK_VERSION_1_3)","Christoph Kubisch @pixeljetstream, Eric Werness",{"number":7016,"type":173,"author":6627,"provisional":6366,"depends":6977,"contact":6724,"extension":7017,"proposal":6366},413,"VK_EXT_pageable_device_local_memory",{"number":7019,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6587,"extension":7020,"proposal":6366},213,"VK_EXT_pci_bus_info",{"number":7022,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":7023,"extension":7024,"proposal":6366},354,"Simon Ser @emersion","VK_EXT_physical_device_drm",{"number":7026,"type":173,"author":6566,"promotedto":6685,"provisional":6366,"depends":6582,"contact":7027,"extension":7028,"proposal":6366},298,"Gregory Grebe @grgrebe_amd","VK_EXT_pipeline_creation_cache_control",{"number":7030,"type":173,"author":6755,"promotedto":6685,"provisional":6366,"specialuse":6577,"contact":7031,"extension":7032,"proposal":6366},193,"Jean-Francois Roy @jfroy","VK_EXT_pipeline_creation_feedback",{"number":7034,"type":173,"author":6627,"provisional":6366,"depends":7035,"contact":7036,"extension":7037,"proposal":299},499,"VK_KHR_ray_tracing_pipeline+VK_KHR_pipeline_library","Hans-Kristian Arntzen @HansKristian-Work","VK_EXT_pipeline_library_group_handles",{"number":7039,"type":173,"author":6627,"provisional":6366,"depends":6582,"contact":7040,"extension":7041,"proposal":6366},373,"Mukund Keshava @mkeshavanv","VK_EXT_pipeline_properties",{"number":7043,"type":173,"author":6627,"promotedto":6908,"provisional":6366,"depends":6582,"contact":6775,"extension":7044,"proposal":299},467,"VK_EXT_pipeline_protected_access",{"number":7046,"type":173,"author":7047,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6699,"contact":7048,"extension":7049,"proposal":6366},69,"IMG","Jarred Davies","VK_EXT_pipeline_robustness",{"number":7051,"type":173,"author":6697,"provisional":6366,"ratified":6706,"contact":7052,"extension":7053,"proposal":6366},156,"Daniel Koch @dgkoch","VK_EXT_post_depth_coverage",{"number":7055,"type":173,"author":6627,"provisional":6366,"depends":6900,"ratified":6699,"contact":7056,"extension":7057,"proposal":299},362,"Lionel Duc @nvlduc","VK_EXT_present_mode_fifo_latest_ready",{"number":7059,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6650,"contact":6775,"extension":7060,"proposal":6366},357,"VK_EXT_primitive_topology_list_restart",{"number":7062,"type":173,"author":6627,"provisional":6366,"depends":7063,"ratified":6699,"specialuse":6650,"contact":6775,"extension":7064,"proposal":299},383,"VK_EXT_transform_feedback","VK_EXT_primitives_generated_query",{"number":7066,"type":173,"author":6697,"promotedto":6685,"provisional":6366,"depends":6582,"contact":7067,"extension":7068,"proposal":6366},296,"Matthew Rusch @mattruschnv","VK_EXT_private_data",{"number":7070,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6650,"contact":7071,"extension":7072,"proposal":6366},255,"Jesse Hall @jessehall","VK_EXT_provoking_vertex",{"number":7074,"type":173,"author":6627,"provisional":6366,"depends":6843,"ratified":6706,"contact":6844,"extension":7075,"proposal":6366},127,"VK_EXT_queue_family_foreign",{"number":7077,"type":173,"author":6659,"provisional":6366,"depends":6582,"ratified":6699,"contact":6666,"extension":6665,"proposal":299},464,{"number":7079,"type":173,"author":6627,"provisional":6366,"depends":7080,"ratified":6699,"contact":6666,"extension":7081,"proposal":6366},345,"VK_KHR_sampler_ycbcr_conversion,VK_VERSION_1_1","VK_EXT_rgba10x6_formats",{"number":7083,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6747,"extension":7084,"proposal":6366},287,"VK_EXT_robustness2",{"number":7086,"type":173,"author":6566,"provisional":6366,"depends":6582,"ratified":6706,"contact":6578,"extension":7087,"proposal":6366},144,"VK_EXT_sample_locations",{"number":7089,"type":173,"author":6697,"promotedto":6788,"provisional":6366,"depends":6582,"contact":6719,"extension":7090,"proposal":6366},131,"VK_EXT_sampler_filter_minmax",{"number":7092,"type":173,"author":6627,"promotedto":6788,"provisional":6366,"depends":6582,"contact":6569,"extension":7093,"proposal":6366},222,"VK_EXT_scalar_block_layout",{"number":7095,"type":173,"author":6627,"promotedto":6788,"provisional":6366,"contact":6578,"extension":7096,"proposal":6366},247,"VK_EXT_separate_stencil_usage",{"number":7098,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6706,"contact":6836,"extension":7099,"proposal":6366},261,"VK_EXT_shader_atomic_float",{"number":7101,"type":173,"author":6627,"provisional":6366,"depends":7099,"ratified":6699,"contact":6970,"extension":7102,"proposal":6366},274,"VK_EXT_shader_atomic_float2",{"number":7104,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6719,"extension":7105,"proposal":6366},277,"VK_EXT_shader_demote_to_helper_invocation",{"number":7107,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6569,"extension":7108,"proposal":6366},235,"VK_EXT_shader_image_atomic_int64",{"number":7110,"type":173,"author":6627,"provisional":6366,"depends":7111,"ratified":6699,"contact":7036,"extension":7112,"proposal":299},463,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_pipeline_creation_cache_control),VK_VERSION_1_3","VK_EXT_shader_module_identifier",{"number":7114,"type":173,"author":6627,"provisional":6366,"depends":6829,"ratified":6699,"contact":7115,"extension":7116,"proposal":299},483,"Daniel Story @daniel-story","VK_EXT_shader_object",{"number":7118,"type":173,"author":6627,"provisional":6366,"ratified":6699,"contact":6675,"extension":7119,"proposal":299},565,"VK_EXT_shader_replicated_composites",{"number":7121,"type":173,"author":6627,"provisional":6366,"ratified":6706,"contact":6593,"extension":7122,"proposal":6366},141,"VK_EXT_shader_stencil_export",{"number":7124,"type":173,"author":6697,"deprecatedby":6788,"provisional":6366,"contact":7052,"extension":7125,"proposal":6366},65,"VK_EXT_shader_subgroup_ballot",{"number":7127,"type":173,"author":6697,"deprecatedby":6681,"provisional":6366,"contact":7052,"extension":7128,"proposal":6366},66,"VK_EXT_shader_subgroup_vote",{"number":7130,"type":173,"author":6627,"provisional":6366,"depends":6685,"ratified":6699,"contact":6666,"extension":7131,"proposal":299},396,"VK_EXT_shader_tile_image",{"number":7133,"type":173,"author":6697,"promotedto":6788,"provisional":6366,"contact":7052,"extension":7134,"proposal":6366},163,"VK_EXT_shader_viewport_index_layer",{"number":7136,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6681,"ratified":6686,"contact":7137,"extension":7138,"proposal":6366},226,"Neil Henning @sheredom","VK_EXT_subgroup_size_control",{"number":7140,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6699,"contact":7141,"extension":7142,"proposal":299},459,"Ting Wei @catweiting","VK_EXT_subpass_merge_feedback",{"number":7144,"type":6691,"author":6627,"provisional":6366,"depends":7145,"ratified":6699,"contact":6775,"extension":7146,"proposal":299},275,"VK_KHR_surface+VK_KHR_get_surface_capabilities2","VK_EXT_surface_maintenance1",{"number":7148,"type":6691,"author":6755,"provisional":6366,"depends":6813,"ratified":6706,"contact":6756,"extension":7149,"proposal":6366},105,"VK_EXT_swapchain_colorspace",{"number":7151,"type":173,"author":6627,"provisional":6366,"depends":7152,"ratified":6699,"contact":6775,"extension":7153,"proposal":299},276,"VK_KHR_swapchain+VK_EXT_surface_maintenance1+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","VK_EXT_swapchain_maintenance1",{"number":7155,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6719,"extension":7156,"proposal":6366},282,"VK_EXT_texel_buffer_alignment",{"number":7158,"type":173,"author":6659,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6686,"contact":6666,"extension":7159,"proposal":6366},67,"VK_EXT_texture_compression_astc_hdr",{"number":7161,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"contact":6569,"extension":7162,"proposal":6366},246,"VK_EXT_tooling_info",{"number":1776,"type":173,"author":6697,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":7164,"contact":6724,"extension":7063,"proposal":6366},"glemulation,d3demulation,devtools",{"number":7166,"type":173,"author":6755,"provisional":6366,"ratified":6699,"contact":7167,"extension":7168,"proposal":6366},161,"Cort Stratton @cdwfs","VK_EXT_validation_cache",{"number":7170,"type":6691,"author":7171,"deprecatedby":6950,"provisional":6366,"ratified":6699,"specialuse":6535,"contact":7172,"extension":7173,"proposal":6366},248,"LUNARG","Karl Schultz @karl-lunarg","VK_EXT_validation_features",{"number":7175,"type":6691,"author":6755,"deprecatedby":6950,"provisional":6366,"specialuse":6535,"contact":7176,"extension":7177,"proposal":6366},62,"Tobin Ehlis @tobine","VK_EXT_validation_flags",{"number":7179,"type":173,"author":6697,"promotedto":7180,"provisional":6366,"depends":6582,"contact":6740,"extension":7181,"proposal":6366},191,"VK_KHR_vertex_attribute_divisor","VK_EXT_vertex_attribute_divisor",{"number":7183,"type":173,"author":6627,"provisional":6366,"depends":6582,"contact":6724,"extension":7184,"proposal":6366},609,"VK_EXT_vertex_attribute_robustness",{"number":7186,"type":173,"author":6627,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6956,"proposal":6366},353,{"number":7188,"type":173,"author":6627,"promotedto":6685,"provisional":6366,"depends":7080,"ratified":6686,"contact":7189,"extension":7190,"proposal":6366},331,"Tony Zlatinski @tzlatinski","VK_EXT_ycbcr_2plane_444_formats",{"number":7192,"type":173,"author":6627,"provisional":6366,"depends":7080,"ratified":6706,"contact":6724,"extension":7193,"proposal":6366},253,"VK_EXT_ycbcr_image_arrays",{"number":7195,"type":173,"author":7196,"provisional":6366,"depends":7197,"platform":7198,"contact":7199,"extension":7200,"proposal":6366},367,"FUCHSIA","VK_FUCHSIA_external_memory+(VK_KHR_sampler_ycbcr_conversion,VK_VERSION_1_1)","fuchsia","John Rosasco @rosasco","VK_FUCHSIA_buffer_collection",{"number":7202,"type":173,"author":7196,"provisional":6366,"depends":7203,"platform":7198,"contact":7199,"extension":7204,"proposal":6366},365,"(VK_KHR_external_memory_capabilities+VK_KHR_external_memory),VK_VERSION_1_1","VK_FUCHSIA_external_memory",{"number":7206,"type":173,"author":7196,"provisional":6366,"depends":7207,"platform":7198,"contact":7199,"extension":7208,"proposal":6366},366,"VK_KHR_external_semaphore_capabilities+VK_KHR_external_semaphore","VK_FUCHSIA_external_semaphore",{"number":7210,"type":6691,"author":7196,"provisional":6366,"depends":6813,"platform":7198,"contact":7211,"extension":7212,"proposal":6366},215,"Craig Stout @cdotstout","VK_FUCHSIA_imagepipe_surface",{"number":7214,"type":173,"author":7215,"provisional":6366,"depends":7216,"platform":7217,"contact":7031,"extension":7218,"proposal":6366},192,"GGP","VK_KHR_swapchain+VK_GGP_stream_descriptor_surface","ggp","VK_GGP_frame_token",{"number":6533,"type":6691,"author":7215,"provisional":6366,"depends":6813,"platform":7217,"contact":7031,"extension":7220,"proposal":6366},"VK_GGP_stream_descriptor_surface",{"number":7222,"type":173,"author":6755,"provisional":6366,"contact":7223,"extension":7224,"proposal":6366},225,"Hai Nguyen @chaoticbob","VK_GOOGLE_decorate_string",{"number":7226,"type":173,"author":6755,"provisional":6366,"depends":6900,"contact":7227,"extension":7228,"proposal":6366},93,"Ian Elliott @ianelliottus","VK_GOOGLE_display_timing",{"number":7230,"type":173,"author":6755,"provisional":6366,"contact":7223,"extension":7231,"proposal":6366},224,"VK_GOOGLE_hlsl_functionality1",{"number":7233,"type":6691,"author":6755,"provisional":6366,"depends":6813,"specialuse":6650,"contact":6775,"extension":7234,"proposal":299},434,"VK_GOOGLE_surfaceless_query",{"number":7236,"type":173,"author":6755,"provisional":6366,"contact":7237,"extension":7238,"proposal":6366},290,"Kaye Mason @chaleur","VK_GOOGLE_user_type",{"number":7240,"type":173,"author":7241,"provisional":6366,"depends":6582,"contact":7242,"extension":7243,"proposal":299},405,"HUAWEI","Yuchang Wang @richard_Wang2","VK_HUAWEI_cluster_culling_shader",{"number":7245,"type":173,"author":7241,"provisional":6366,"depends":7246,"contact":7247,"extension":7248,"proposal":6366},591,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_swapchain+VK_EXT_hdr_metadata","Zehui Lin @bactlink","VK_HUAWEI_hdr_vivid",{"number":7250,"type":173,"author":7251,"provisional":6366,"depends":7252,"contact":7253,"extension":7254,"proposal":299},371,"Huawei","VK_KHR_ray_tracing_pipeline+(VK_KHR_synchronization2,VK_VERSION_1_3)","Pan Gao @PanGao-h","VK_HUAWEI_invocation_mask",{"number":7256,"type":173,"author":7241,"provisional":6366,"depends":7257,"contact":7253,"extension":7258,"proposal":6366},370,"((VK_KHR_create_renderpass2,VK_VERSION_1_2)+VK_KHR_synchronization2),VK_VERSION_1_3","VK_HUAWEI_subpass_shading",{"number":417,"type":173,"author":7047,"provisional":6366,"contact":6569,"extension":7260,"proposal":6366},"VK_IMG_filter_cubic",{"number":7262,"type":173,"author":7047,"deprecatedby":7263,"provisional":6366,"contact":7264,"extension":7265,"proposal":6366},55,null,"Stuart Smith","VK_IMG_format_pvrtc",{"number":7267,"type":173,"author":7047,"provisional":6366,"depends":6582,"specialuse":6650,"contact":6879,"extension":7268,"proposal":6366},111,"VK_IMG_relaxed_line_rasterization",{"number":7270,"type":173,"author":7271,"provisional":6366,"specialuse":6577,"contact":7272,"extension":7273,"proposal":6366},211,"INTEL","Lionel Landwerlin @llandwerlin","VK_INTEL_performance_query",{"number":7275,"type":173,"author":7271,"provisional":6366,"depends":6582,"contact":7276,"extension":7277,"proposal":6366},210,"Ian Romanick @ianromanick","VK_INTEL_shader_integer_functions2",{"number":7279,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7281,"ratified":6699,"contact":6666,"extension":7282,"proposal":6366},84,"KHR","(VK_KHR_get_physical_device_properties2+VK_KHR_storage_buffer_storage_class),VK_VERSION_1_1","VK_KHR_16bit_storage",{"number":7284,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7281,"ratified":6699,"contact":7285,"extension":7286,"proposal":6366},178,"Alexander Galazin @alegal-arm","VK_KHR_8bit_storage",{"number":7288,"type":173,"author":7280,"provisional":6366,"depends":7289,"ratified":6699,"contact":7052,"extension":7290,"proposal":6366},151,"((VK_VERSION_1_1+VK_EXT_descriptor_indexing+VK_KHR_buffer_device_address),VK_VERSION_1_2)+VK_KHR_deferred_host_operations","VK_KHR_acceleration_structure",{"number":305,"type":6691,"author":7280,"provisional":6366,"depends":6813,"platform":6649,"ratified":6699,"contact":6656,"extension":7292,"proposal":6366},"VK_KHR_android_surface",{"number":7294,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":6569,"extension":7295,"proposal":6366},158,"VK_KHR_bind_memory2",{"number":7297,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7298,"ratified":6699,"contact":6719,"extension":6728,"proposal":6366},258,"(VK_KHR_get_physical_device_properties2+VK_KHR_device_group),VK_VERSION_1_1",{"number":7300,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6706,"contact":6945,"extension":6732,"proposal":6366},544,{"number":7302,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":7303,"extension":7304,"proposal":299},512,"Jean-Noe Morissette @MagicPoncho","VK_KHR_compute_shader_derivatives",{"number":7306,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":6675,"extension":7307,"proposal":299},507,"VK_KHR_cooperative_matrix",{"number":7309,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6706,"contact":6861,"extension":7310,"proposal":6366},338,"VK_KHR_copy_commands2",{"number":7312,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7313,"ratified":6699,"contact":7314,"extension":7315,"proposal":6366},110,"(VK_KHR_multiview+VK_KHR_maintenance2),VK_VERSION_1_1","Tobias Hector @tobias","VK_KHR_create_renderpass2",{"number":7317,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7318,"ratified":6699,"contact":6700,"extension":7319,"proposal":6366},128,"VK_KHR_get_memory_requirements2,VK_VERSION_1_1","VK_KHR_dedicated_allocation",{"number":7321,"type":173,"author":7280,"provisional":6366,"ratified":6699,"contact":7322,"extension":7323,"proposal":6366},269,"Josh Barczak @jbarczak","VK_KHR_deferred_host_operations",{"number":7325,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":6771,"extension":6770,"proposal":6366},605,{"number":7327,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7328,"ratified":6699,"contact":7329,"extension":7330,"proposal":6366},200,"VK_KHR_create_renderpass2,VK_VERSION_1_2","Jan-Harald Fredriksen @janharald","VK_KHR_depth_stencil_resolve",{"number":7332,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":7333,"extension":7334,"proposal":6366},86,"Markus Tavenrath @mtavenrath","VK_KHR_descriptor_update_template",{"number":7336,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7337,"ratified":6699,"contact":6719,"extension":7338,"proposal":6366},61,"VK_KHR_device_group_creation","VK_KHR_device_group",{"number":7340,"type":6691,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":6719,"extension":7337,"proposal":6366},71,{"number":181,"type":6691,"author":7280,"provisional":6366,"depends":6813,"ratified":6706,"contact":7342,"extension":6810,"proposal":6366},"James Jones @cubanismo,Norbert Nopper @FslNopper",{"number":199,"type":173,"author":7280,"provisional":6366,"depends":7344,"ratified":6706,"contact":6700,"extension":7345,"proposal":6366},"VK_KHR_swapchain+VK_KHR_display","VK_KHR_display_swapchain",{"number":7347,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"ratified":6699,"contact":6724,"extension":6590,"proposal":6366},170,{"number":7349,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":6578,"extension":7350,"proposal":6366},197,"VK_KHR_driver_properties",{"number":6514,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":7352,"ratified":6699,"contact":6569,"extension":7353,"proposal":299},"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_depth_stencil_resolve),VK_VERSION_1_2","VK_KHR_dynamic_rendering",{"number":7355,"type":173,"author":6566,"promotedto":6908,"provisional":6366,"depends":7356,"ratified":6699,"contact":6569,"extension":7357,"proposal":299},233,"VK_KHR_dynamic_rendering,VK_VERSION_1_3","VK_KHR_dynamic_rendering_local_read",{"number":7359,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7360,"ratified":6699,"contact":6656,"extension":7361,"proposal":6366},114,"VK_KHR_external_fence_capabilities","VK_KHR_external_fence",{"number":7363,"type":6691,"author":7280,"promotedto":6681,"provisional":6366,"depends":6582,"ratified":6699,"contact":6656,"extension":7360,"proposal":6366},113,{"number":7365,"type":173,"author":7280,"provisional":6366,"depends":7366,"ratified":6706,"contact":6656,"extension":7367,"proposal":6366},116,"VK_KHR_external_fence,VK_VERSION_1_1","VK_KHR_external_fence_fd",{"number":7369,"type":173,"author":7280,"provisional":6366,"depends":7361,"platform":6884,"ratified":6699,"contact":6656,"extension":7370,"proposal":6366},115,"VK_KHR_external_fence_win32",{"number":7372,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7373,"ratified":6699,"contact":6700,"extension":7374,"proposal":6366},73,"VK_KHR_external_memory_capabilities,VK_VERSION_1_1","VK_KHR_external_memory",{"number":7376,"type":6691,"author":7280,"promotedto":6681,"provisional":6366,"depends":6582,"ratified":6699,"contact":6700,"extension":7377,"proposal":6366},72,"VK_KHR_external_memory_capabilities",{"number":7379,"type":173,"author":7280,"provisional":6366,"depends":6843,"ratified":6706,"contact":6700,"extension":6848,"proposal":6366},75,{"number":7381,"type":173,"author":7280,"provisional":6366,"depends":6843,"platform":6884,"ratified":6699,"contact":6700,"extension":7382,"proposal":6366},74,"VK_KHR_external_memory_win32",{"number":7384,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7385,"ratified":6699,"contact":6700,"extension":7386,"proposal":6366},78,"VK_KHR_external_semaphore_capabilities","VK_KHR_external_semaphore",{"number":7388,"type":6691,"author":7280,"promotedto":6681,"provisional":6366,"depends":6582,"ratified":6699,"contact":6700,"extension":7385,"proposal":6366},77,{"number":7390,"type":173,"author":7280,"provisional":6366,"depends":7391,"ratified":6706,"contact":6700,"extension":7392,"proposal":6366},80,"VK_KHR_external_semaphore,VK_VERSION_1_1","VK_KHR_external_semaphore_fd",{"number":7394,"type":173,"author":7280,"provisional":6366,"depends":7386,"platform":6884,"ratified":6699,"contact":6700,"extension":7395,"proposal":6366},79,"VK_KHR_external_semaphore_win32",{"number":7397,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6699,"contact":7272,"extension":7398,"proposal":6366},361,"VK_KHR_format_feature_flags2",{"number":7400,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":6573,"extension":7401,"proposal":299},323,"VK_KHR_fragment_shader_barycentric",{"number":7403,"type":173,"author":7280,"provisional":6366,"depends":7404,"ratified":6706,"contact":6569,"extension":7405,"proposal":299},227,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_create_renderpass2),VK_VERSION_1_2","VK_KHR_fragment_shading_rate",{"number":7407,"type":6691,"author":7280,"provisional":6366,"depends":6810,"ratified":6706,"contact":6700,"extension":7408,"proposal":6366},122,"VK_KHR_get_display_properties2",{"number":7410,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":6970,"extension":7411,"proposal":6366},147,"VK_KHR_get_memory_requirements2",{"number":7413,"type":6691,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":6719,"extension":7414,"proposal":6366},60,"VK_KHR_get_physical_device_properties2",{"number":7416,"type":6691,"author":7280,"provisional":6366,"depends":6813,"ratified":6706,"contact":6700,"extension":7417,"proposal":6366},120,"VK_KHR_get_surface_capabilities2",{"number":7419,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6706,"contact":6569,"extension":6888,"proposal":6366},189,{"number":7421,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"ratified":6699,"contact":6970,"extension":7422,"proposal":6366},148,"VK_KHR_image_format_list",{"number":7424,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7425,"ratified":6699,"contact":7314,"extension":7426,"proposal":6366},109,"(((VK_KHR_get_physical_device_properties2+VK_KHR_maintenance2),VK_VERSION_1_1)+VK_KHR_image_format_list),VK_VERSION_1_2","VK_KHR_imageless_framebuffer",{"number":7428,"type":173,"author":7280,"provisional":6366,"depends":6900,"ratified":6706,"contact":7227,"extension":7429,"proposal":6366},85,"VK_KHR_incremental_present",{"number":7431,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6940,"proposal":6366},534,{"number":7433,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6706,"contact":6724,"extension":6960,"proposal":6366},535,{"number":7435,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"ratified":6699,"contact":6775,"extension":6965,"proposal":299},527,{"number":7437,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":6724,"extension":6610,"proposal":6366},70,{"number":7439,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":7440,"extension":7441,"proposal":6366},118,"Michael Worcester @michaelworcester","VK_KHR_maintenance2",{"number":7443,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":6582,"ratified":6699,"contact":6719,"extension":7444,"proposal":6366},169,"VK_KHR_maintenance3",{"number":7446,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6681,"ratified":6699,"contact":6724,"extension":7447,"proposal":6366},414,"VK_KHR_maintenance4",{"number":7449,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":7450,"ratified":6699,"contact":7451,"extension":7452,"proposal":299},471,"(VK_VERSION_1_1+VK_KHR_dynamic_rendering),VK_VERSION_1_3","Stu Smith @stu-s","VK_KHR_maintenance5",{"number":7454,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6681,"ratified":6699,"contact":7455,"extension":7456,"proposal":299},546,"Jon Leech @oddhack","VK_KHR_maintenance6",{"number":7458,"type":173,"author":7280,"provisional":6366,"depends":6681,"ratified":6699,"contact":6712,"extension":7459,"proposal":299},563,"VK_KHR_maintenance7",{"number":7461,"type":173,"author":7280,"provisional":6366,"depends":6681,"ratified":6699,"contact":6712,"extension":7462,"proposal":299},575,"VK_KHR_maintenance8",{"number":7464,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"ratified":6699,"contact":6970,"extension":7465,"proposal":299},272,"VK_KHR_map_memory2",{"number":7467,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":6582,"ratified":6699,"contact":6719,"extension":7468,"proposal":6366},54,"VK_KHR_multiview",{"extension":7470,"proposal":6366},"VK_KHR_object_refresh",{"number":7472,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6706,"specialuse":6577,"contact":7473,"extension":7474,"proposal":6366},117,"Alon Or-bach @alonorbach","VK_KHR_performance_query",{"number":7476,"type":173,"author":7280,"provisional":6366,"depends":7477,"ratified":6699,"contact":7451,"extension":7478,"proposal":299},484,"VK_KHR_maintenance5,VK_VERSION_1_4","VK_KHR_pipeline_binary",{"number":7480,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"specialuse":6577,"contact":6970,"extension":7481,"proposal":6366},270,"VK_KHR_pipeline_executable_properties",{"number":7483,"type":173,"author":7280,"provisional":6366,"ratified":6699,"contact":6981,"extension":7484,"proposal":6366},291,"VK_KHR_pipeline_library",{"number":7486,"type":6691,"author":7280,"provisional":6366,"ratified":6699,"contact":7487,"extension":7488,"proposal":6366},395,"Charles Giessen @charles-lunarg","VK_KHR_portability_enumeration",{"number":7490,"type":173,"author":7280,"provisional":299,"depends":6582,"platform":6568,"ratified":6699,"contact":6985,"extension":7491,"proposal":6366},164,"VK_KHR_portability_subset",{"number":7493,"type":173,"author":7280,"provisional":6366,"depends":7494,"ratified":6699,"contact":7495,"extension":7496,"proposal":6366},295,"VK_KHR_swapchain+VK_KHR_get_physical_device_properties2,VK_VERSION_1_1","Keith Packard @keithp","VK_KHR_present_id",{"number":7498,"type":173,"author":7280,"provisional":6366,"depends":7499,"ratified":6699,"contact":7495,"extension":7500,"proposal":6366},249,"VK_KHR_swapchain+VK_KHR_present_id","VK_KHR_present_wait",{"number":7502,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6699,"contact":6719,"extension":7503,"proposal":6366},81,"VK_KHR_push_descriptor",{"number":7505,"type":173,"author":7280,"provisional":6366,"depends":7506,"ratified":6699,"contact":7052,"extension":7507,"proposal":6366},349,"(VK_KHR_spirv_1_4,VK_VERSION_1_2)+VK_KHR_acceleration_structure","VK_KHR_ray_query",{"number":7509,"type":173,"author":7280,"provisional":6366,"depends":7290,"ratified":6699,"contact":7052,"extension":7510,"proposal":6366},387,"VK_KHR_ray_tracing_maintenance1",{"number":7512,"type":173,"author":7280,"provisional":6366,"depends":7506,"ratified":6699,"contact":7052,"extension":7513,"proposal":6366},348,"VK_KHR_ray_tracing_pipeline",{"number":7515,"type":173,"author":7280,"provisional":6366,"depends":7290,"ratified":6699,"contact":7516,"extension":7517,"proposal":299},482,"Eric Werness","VK_KHR_ray_tracing_position_fetch",{"number":7519,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":7520,"extension":7521,"proposal":6366},145,"John Kessenich @johnkslang","VK_KHR_relaxed_block_layout",{"number":395,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"ratified":6699,"contact":6569,"extension":7523,"proposal":6366},"VK_KHR_sampler_mirror_clamp_to_edge",{"number":7525,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7526,"ratified":6699,"contact":7527,"extension":7528,"proposal":6366},157,"(VK_KHR_maintenance1+VK_KHR_bind_memory2+VK_KHR_get_memory_requirements2+VK_KHR_get_physical_device_properties2),VK_VERSION_1_1","Andrew Garrard @fluppeteer","VK_KHR_sampler_ycbcr_conversion",{"number":7530,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7404,"ratified":6699,"contact":6724,"extension":7531,"proposal":6366},242,"VK_KHR_separate_depth_stencil_layouts",{"number":7533,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":7534,"extension":7535,"proposal":6366},181,"Aaron Hagan @ahagan","VK_KHR_shader_atomic_int64",{"number":7537,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":6569,"extension":7538,"proposal":299},142,"VK_KHR_shader_bfloat16",{"number":7540,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6706,"contact":7534,"extension":7541,"proposal":6366},182,"VK_KHR_shader_clock",{"number":7543,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":7052,"extension":7544,"proposal":6366},64,"VK_KHR_shader_draw_parameters",{"number":7546,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6699,"contact":6675,"extension":7547,"proposal":299},545,"VK_KHR_shader_expect_assume",{"number":7549,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":7285,"extension":6596,"proposal":6366},83,{"number":7551,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":7285,"extension":7552,"proposal":6366},198,"VK_KHR_shader_float_controls",{"number":7554,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":7555,"ratified":6699,"contact":6771,"extension":7556,"proposal":299},529,"VK_VERSION_1_1+VK_KHR_shader_float_controls","VK_KHR_shader_float_controls2",{"number":7558,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6699,"contact":6675,"extension":7559,"proposal":299},281,"VK_KHR_shader_integer_dot_product",{"number":7561,"type":173,"author":7280,"provisional":6366,"depends":6681,"ratified":6699,"contact":7562,"extension":7563,"proposal":299},435,"Alan Baker @alan-baker","VK_KHR_shader_maximal_reconvergence",{"number":7565,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"ratified":6699,"contact":6752,"extension":7566,"proposal":6366},294,"VK_KHR_shader_non_semantic_info",{"number":7568,"type":173,"author":7280,"provisional":6366,"depends":7569,"ratified":6699,"contact":6569,"extension":7570,"proposal":299},236,"((VK_VERSION_1_1+VK_KHR_vulkan_memory_model),VK_VERSION_1_2)+VK_KHR_shader_maximal_reconvergence","VK_KHR_shader_quad_control",{"number":7572,"type":173,"author":7280,"provisional":6366,"ratified":6699,"contact":7573,"extension":7574,"proposal":299},559,"Nathan Gauër @Keenuts","VK_KHR_shader_relaxed_extended_instruction",{"number":7576,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6681,"ratified":6699,"contact":7137,"extension":7577,"proposal":6366},176,"VK_KHR_shader_subgroup_extended_types",{"number":7579,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"ratified":6699,"contact":6675,"extension":7580,"proposal":299},417,"VK_KHR_shader_subgroup_rotate",{"number":7582,"type":173,"author":7280,"provisional":6366,"depends":6681,"ratified":6699,"contact":7562,"extension":7583,"proposal":6366},324,"VK_KHR_shader_subgroup_uniform_control_flow",{"number":7585,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6706,"contact":6656,"extension":7586,"proposal":6366},216,"VK_KHR_shader_terminate_invocation",{"number":7588,"type":173,"author":7280,"provisional":6366,"depends":7589,"ratified":6706,"contact":7473,"extension":7590,"proposal":6366},112,"VK_KHR_swapchain+VK_KHR_get_surface_capabilities2+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","VK_KHR_shared_presentable_image",{"number":7592,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":7555,"ratified":6699,"contact":6656,"extension":7593,"proposal":6366},237,"VK_KHR_spirv_1_4",{"number":7595,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"ratified":6699,"contact":7285,"extension":7596,"proposal":6366},132,"VK_KHR_storage_buffer_storage_class",{"number":140,"type":6691,"author":7280,"provisional":6366,"ratified":6706,"contact":7598,"extension":6813,"proposal":6366},"James Jones @cubanismo,Ian Elliott @ianelliottus",{"number":7600,"type":6691,"author":7280,"provisional":6366,"depends":7601,"ratified":6699,"contact":7602,"extension":7603,"proposal":6366},240,"VK_VERSION_1_1+VK_KHR_get_surface_capabilities2","Sandeep Shinde @sashinde","VK_KHR_surface_protected_capabilities",{"number":161,"type":173,"author":7280,"provisional":6366,"depends":6813,"ratified":6706,"contact":7598,"extension":6900,"proposal":6366},{"number":7606,"type":173,"author":7280,"provisional":6366,"depends":7607,"ratified":6706,"contact":6578,"extension":7608,"proposal":6366},201,"VK_KHR_swapchain+(VK_KHR_maintenance2,VK_VERSION_1_1)+(VK_KHR_image_format_list,VK_VERSION_1_2)","VK_KHR_swapchain_mutable_format",{"number":7610,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6706,"contact":6569,"extension":7611,"proposal":6366},315,"VK_KHR_synchronization2",{"number":7613,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":6970,"extension":7614,"proposal":6366},208,"VK_KHR_timeline_semaphore",{"number":7616,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":6771,"extension":7617,"proposal":6366},254,"VK_KHR_uniform_buffer_standard_layout",{"number":7619,"type":173,"author":7280,"promotedto":6681,"provisional":6366,"depends":7281,"ratified":6699,"contact":6656,"extension":7620,"proposal":6366},121,"VK_KHR_variable_pointers",{"number":7622,"type":173,"author":7280,"promotedto":6908,"provisional":6366,"depends":6582,"ratified":6706,"contact":6775,"extension":7180,"proposal":299},526,{"number":7624,"type":173,"author":7280,"provisional":6366,"depends":7625,"ratified":6699,"contact":6945,"extension":7626,"proposal":299},513,"VK_KHR_video_decode_queue","VK_KHR_video_decode_av1",{"number":6498,"type":173,"author":7280,"provisional":6366,"depends":7625,"ratified":6699,"contact":7628,"extension":7629,"proposal":299},"peter.fang@amd.com","VK_KHR_video_decode_h264",{"number":7631,"type":173,"author":7280,"provisional":6366,"depends":7625,"ratified":6699,"contact":7628,"extension":7632,"proposal":299},188,"VK_KHR_video_decode_h265",{"number":1719,"type":173,"author":7280,"provisional":6366,"depends":7634,"ratified":6699,"contact":7635,"extension":7625,"proposal":299},"VK_KHR_video_queue+(VK_KHR_synchronization2,VK_VERSION_1_3)","jake.beju@amd.com",{"number":7637,"type":173,"author":7280,"provisional":6366,"depends":7638,"ratified":6699,"contact":6945,"extension":7639,"proposal":299},514,"VK_KHR_video_encode_queue","VK_KHR_video_encode_av1",{"number":6490,"type":173,"author":7280,"provisional":6366,"depends":7638,"ratified":6699,"contact":7641,"extension":7642,"proposal":299},"Ahmed Abdelkhalek @aabdelkh","VK_KHR_video_encode_h264",{"number":6494,"type":173,"author":7280,"provisional":6366,"depends":7638,"ratified":6699,"contact":7641,"extension":7644,"proposal":299},"VK_KHR_video_encode_h265",{"number":7646,"type":173,"author":7280,"provisional":6366,"depends":7647,"ratified":6699,"contact":7641,"extension":7648,"proposal":299},554,"VK_KHR_video_encode_queue+(VK_KHR_format_feature_flags2,VK_VERSION_1_3)","VK_KHR_video_encode_quantization_map",{"number":7650,"type":173,"author":7280,"provisional":6366,"depends":7634,"ratified":6699,"contact":7641,"extension":7638,"proposal":299},300,{"number":7652,"type":173,"author":7280,"provisional":6366,"depends":7653,"ratified":6699,"contact":6945,"extension":7654,"proposal":299},516,"VK_KHR_video_queue","VK_KHR_video_maintenance1",{"number":7656,"type":173,"author":7280,"provisional":6366,"depends":7653,"ratified":6699,"contact":6945,"extension":7657,"proposal":299},587,"VK_KHR_video_maintenance2",{"number":1695,"type":173,"author":7280,"provisional":6366,"depends":7659,"ratified":6699,"contact":7189,"extension":7653,"proposal":299},"(VK_VERSION_1_1+VK_KHR_synchronization2),VK_VERSION_1_3",{"number":7661,"type":173,"author":7280,"promotedto":6788,"provisional":6366,"depends":6582,"ratified":6699,"contact":6719,"extension":7662,"proposal":6366},212,"VK_KHR_vulkan_memory_model",{"number":272,"type":6691,"author":7280,"provisional":6366,"depends":6813,"platform":7664,"ratified":6699,"contact":7665,"extension":7666,"proposal":6366},"wayland","Jesse Hall @critsec,Ian Elliott @ianelliottus","VK_KHR_wayland_surface",{"number":7668,"type":173,"author":7280,"provisional":6366,"depends":7382,"platform":6884,"ratified":6699,"contact":7669,"extension":7670,"proposal":6366},76,"Carsten Rohde @crohde","VK_KHR_win32_keyed_mutex",{"number":324,"type":6691,"author":7280,"provisional":6366,"depends":6813,"platform":6884,"ratified":6699,"contact":7665,"extension":7672,"proposal":6366},"VK_KHR_win32_surface",{"number":7674,"type":173,"author":7280,"provisional":6366,"depends":6582,"ratified":6699,"contact":7675,"extension":7676,"proposal":6366},337,"Caio Marcelo de Oliveira Filho @cmarcelo","VK_KHR_workgroup_memory_explicit_layout",{"number":246,"type":6691,"author":7280,"provisional":6366,"depends":6813,"platform":7678,"ratified":6699,"contact":7665,"extension":7679,"proposal":6366},"xcb","VK_KHR_xcb_surface",{"number":218,"type":6691,"author":7280,"provisional":6366,"depends":6813,"platform":7681,"ratified":6699,"contact":7665,"extension":7682,"proposal":6366},"xlib","VK_KHR_xlib_surface",{"number":7684,"type":173,"author":7280,"promotedto":6685,"provisional":6366,"depends":6582,"ratified":6699,"contact":7562,"extension":7685,"proposal":6366},326,"VK_KHR_zero_initialize_workgroup_memory",{"number":7687,"type":6691,"author":7171,"provisional":6366,"contact":7487,"extension":7688,"proposal":299},460,"VK_LUNARG_direct_driver_loading",{"number":7690,"type":173,"author":7691,"provisional":6366,"depends":6582,"specialuse":6762,"contact":7036,"extension":7692,"proposal":6366},576,"MESA","VK_MESA_image_alignment_control",{"number":7694,"type":173,"author":7695,"provisional":6366,"depends":6582,"contact":7696,"extension":7697,"proposal":299},531,"MSFT","Jesse Natalie @jenatali","VK_MSFT_layered_driver",{"number":7699,"type":6691,"author":7700,"deprecatedby":6990,"provisional":6366,"depends":6813,"platform":7701,"contact":6985,"extension":7702,"proposal":6366},123,"MVK","ios","VK_MVK_ios_surface",{"number":7704,"type":6691,"author":7700,"deprecatedby":6990,"provisional":6366,"depends":6813,"platform":7705,"contact":6985,"extension":7706,"proposal":6366},124,"macos","VK_MVK_macos_surface",{"number":7708,"type":6691,"author":7709,"provisional":6366,"depends":6813,"platform":7710,"contact":7711,"extension":7712,"proposal":6366},63,"NN","vi","Mathias Heyer gitlab:@mheyer","VK_NN_vi_surface",{"number":1792,"type":173,"author":7714,"provisional":6366,"contact":7715,"extension":7716,"proposal":6366},"NVX","Eric Werness @ewerness-nv,Liam Middlebrook @liam-middlebrook","VK_NVX_binary_import",{"number":6458,"type":173,"author":7714,"provisional":6366,"contact":7718,"extension":7719,"proposal":6366},"Eric Werness @ewerness-nv","VK_NVX_image_view_handle",{"number":7721,"type":173,"author":7714,"provisional":6366,"depends":7722,"contact":6719,"extension":7723,"proposal":6366},98,"VK_KHR_multiview,VK_VERSION_1_1","VK_NVX_multiview_per_view_attributes",{"number":7725,"type":173,"author":6697,"provisional":6366,"depends":6692,"platform":6884,"contact":7726,"extension":7727,"proposal":6366},346,"Jeff Juliano @jjuliano","VK_NV_acquire_winrt_display",{"number":7729,"type":173,"author":6697,"provisional":6366,"contact":7718,"extension":7730,"proposal":6366},88,"VK_NV_clip_space_w_scaling",{"number":7732,"type":173,"author":6697,"provisional":6366,"depends":7290,"contact":6740,"extension":7733,"proposal":299},570,"VK_NV_cluster_acceleration_structure",{"number":7735,"type":173,"author":6697,"provisional":6366,"contact":7736,"extension":7737,"proposal":6366},560,"Lujin Wang @lujinwangnv","VK_NV_command_buffer_inheritance",{"number":7739,"type":173,"author":6697,"promotedto":7304,"provisional":6366,"depends":6582,"contact":7740,"extension":7741,"proposal":6366},202,"Pat Brown @nvpbrown","VK_NV_compute_shader_derivatives",{"number":7743,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":6719,"extension":7744,"proposal":6366},250,"VK_NV_cooperative_matrix",{"number":7746,"type":173,"author":6697,"provisional":6366,"depends":7307,"contact":6719,"extension":7747,"proposal":299},594,"VK_NV_cooperative_matrix2",{"number":7749,"type":173,"author":6697,"provisional":6366,"contact":6719,"extension":7750,"proposal":299},492,"VK_NV_cooperative_vector",{"number":7752,"type":173,"author":6697,"provisional":6366,"depends":7753,"contact":6836,"extension":7754,"proposal":6366},427,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_buffer_device_address),VK_VERSION_1_2","VK_NV_copy_memory_indirect",{"number":7756,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7052,"extension":7757,"proposal":6366},51,"VK_NV_corner_sampled_image",{"number":7759,"type":173,"author":6697,"provisional":6366,"depends":7760,"contact":7761,"extension":7762,"proposal":6366},251,"VK_NV_framebuffer_mixed_samples+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","Kedarnath Thangudu @kthangudu","VK_NV_coverage_reduction_mode",{"number":7764,"type":173,"author":6697,"provisional":299,"platform":6568,"contact":7765,"extension":7766,"proposal":6366},308,"Tristan Lorach @tlorach","VK_NV_cuda_kernel_launch",{"number":1744,"type":173,"author":6697,"deprecatedby":7319,"provisional":6366,"contact":6719,"extension":7768,"proposal":6366},"VK_NV_dedicated_allocation",{"number":7770,"type":173,"author":7771,"provisional":6366,"depends":7772,"contact":7773,"extension":7774,"proposal":6366},241,"NVIDIA","(VK_KHR_dedicated_allocation+VK_KHR_get_physical_device_properties2),VK_VERSION_1_1","Nuno Subtil @nsubtil","VK_NV_dedicated_allocation_image_aliasing",{"number":7776,"type":173,"author":6697,"provisional":6366,"depends":6681,"contact":6724,"extension":7777,"proposal":6366},547,"VK_NV_descriptor_pool_overallocation",{"number":7779,"type":173,"author":7771,"provisional":6366,"depends":6582,"contact":7773,"extension":7780,"proposal":6366},207,"VK_NV_device_diagnostic_checkpoints",{"number":7782,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7761,"extension":7783,"proposal":6366},301,"VK_NV_device_diagnostics_config",{"number":7785,"type":173,"author":6697,"provisional":6366,"depends":7786,"contact":6981,"extension":66,"proposal":6366},278,"(VK_VERSION_1_1+VK_KHR_buffer_device_address),VK_VERSION_1_2",{"number":7788,"type":173,"author":6697,"provisional":6366,"depends":66,"contact":6836,"extension":7789,"proposal":6366},429,"VK_NV_device_generated_commands_compute",{"number":7791,"type":173,"author":6697,"provisional":299,"depends":6660,"platform":6568,"contact":7792,"extension":7793,"proposal":6366},398,"Christoph Kubisch @pixeljetstream, Eric Werness @ewerness-nv","VK_NV_displacement_micromap",{"number":7795,"type":6691,"author":6697,"provisional":6366,"depends":7796,"contact":7797,"extension":7798,"proposal":299},552,"VK_KHR_display+VK_KHR_get_display_properties2","Russell Chou @russellcnv","VK_NV_display_stereo",{"number":7800,"type":173,"author":6697,"provisional":6366,"contact":7797,"extension":7801,"proposal":6366},493,"VK_NV_extended_sparse_address_space",{"number":7803,"type":173,"author":6697,"provisional":6366,"contact":7804,"extension":7805,"proposal":299},557,"Chris Lentini @clentini","VK_NV_external_compute_queue",{"number":7807,"type":173,"author":6697,"deprecatedby":7374,"provisional":6366,"depends":7808,"contact":6700,"extension":7809,"proposal":6366},57,"VK_NV_external_memory_capabilities","VK_NV_external_memory",{"number":7811,"type":6691,"author":6697,"deprecatedby":7377,"provisional":6366,"contact":6700,"extension":7808,"proposal":6366},56,{"number":7813,"type":173,"author":6697,"provisional":6366,"depends":6843,"contact":7669,"extension":7814,"proposal":6366},372,"VK_NV_external_memory_rdma",{"extension":7816,"proposal":6366},"VK_NV_external_memory_sci_buf",{"number":7818,"type":173,"author":6697,"deprecatedby":7382,"provisional":6366,"depends":7809,"platform":6884,"contact":6700,"extension":7819,"proposal":6366},58,"VK_NV_external_memory_win32",{"extension":7821,"proposal":6366},"VK_NV_external_sci_sync",{"extension":7823,"proposal":6366},"VK_NV_external_sci_sync2",{"number":7825,"type":173,"author":6697,"provisional":6366,"contact":6719,"extension":7826,"proposal":6366},154,"VK_NV_fill_rectangle",{"number":7828,"type":173,"author":6697,"provisional":6366,"contact":6719,"extension":7829,"proposal":6366},150,"VK_NV_fragment_coverage_to_color",{"number":7831,"type":173,"author":6697,"promotedto":7401,"provisional":6366,"depends":6582,"contact":7740,"extension":7832,"proposal":6366},204,"VK_NV_fragment_shader_barycentric",{"number":7834,"type":173,"author":6697,"provisional":6366,"depends":7405,"contact":7740,"extension":7835,"proposal":6366},327,"VK_NV_fragment_shading_rate_enums",{"number":7837,"type":173,"author":6697,"provisional":6366,"contact":6719,"extension":7838,"proposal":6366},153,"VK_NV_framebuffer_mixed_samples",{"number":7840,"type":173,"author":6697,"provisional":6366,"contact":7052,"extension":7841,"proposal":6366},96,"VK_NV_geometry_shader_passthrough",{"number":360,"type":173,"author":6697,"deprecatedby":7263,"provisional":6366,"contact":6724,"extension":7843,"proposal":6366},"VK_NV_glsl_shader",{"number":7845,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7846,"extension":7847,"proposal":6366},279,"David Zhao Akeley @akeley98","VK_NV_inherited_viewport_scissor",{"number":7849,"type":173,"author":7771,"provisional":6366,"depends":6582,"contact":7850,"extension":7851,"proposal":6366},431,"sourav parmar @souravpNV","VK_NV_linear_color_attachment",{"number":7853,"type":173,"author":6697,"provisional":6366,"contact":7854,"extension":7855,"proposal":6366},311,"Charles Hansen @cshansen","VK_NV_low_latency",{"number":7857,"type":173,"author":6697,"provisional":6366,"depends":7858,"contact":7854,"extension":7859,"proposal":6366},506,"VK_VERSION_1_2,VK_KHR_timeline_semaphore","VK_NV_low_latency2",{"number":7861,"type":173,"author":6697,"provisional":6366,"depends":7753,"contact":6836,"extension":7862,"proposal":6366},428,"VK_NV_memory_decompression",{"number":7864,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":6981,"extension":7865,"proposal":6366},203,"VK_NV_mesh_shader",{"number":7867,"type":173,"author":6697,"provisional":6366,"depends":7868,"contact":7669,"extension":7869,"proposal":6366},465,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_format_feature_flags2+VK_KHR_synchronization2),VK_VERSION_1_3","VK_NV_optical_flow",{"number":7871,"type":173,"author":6697,"provisional":6366,"depends":7290,"contact":6740,"extension":7872,"proposal":299},571,"VK_NV_partitioned_acceleration_structure",{"number":7874,"type":173,"author":6697,"provisional":6366,"depends":7875,"contact":6724,"extension":7876,"proposal":6366},517,"VK_KHR_maintenance6,VK_VERSION_1_4","VK_NV_per_stage_descriptor_set",{"number":7878,"type":173,"author":6697,"provisional":6366,"depends":6883,"contact":7879,"extension":7880,"proposal":6366},293,"Liya Li @liyli","VK_NV_present_barrier",{"number":7882,"type":173,"author":6697,"provisional":299,"platform":6568,"contact":7883,"extension":7884,"proposal":6366},614,"Charles Hansen @chansen","VK_NV_present_metering",{"extension":7886,"proposal":6366},"VK_NV_private_vendor_info",{"number":7888,"type":173,"author":6697,"provisional":6366,"contact":7889,"extension":7890,"proposal":6366},556,"Rodrigo Locatti @rlocatti","VK_NV_raw_access_chains",{"number":7892,"type":173,"author":6697,"deprecatedby":7513,"provisional":6366,"depends":7893,"contact":7718,"extension":7894,"proposal":6366},166,"(VK_KHR_get_physical_device_properties2+VK_KHR_get_memory_requirements2),VK_VERSION_1_1","VK_NV_ray_tracing",{"number":7896,"type":173,"author":6697,"provisional":6366,"depends":7513,"contact":7718,"extension":7897,"proposal":6366},491,"VK_NV_ray_tracing_invocation_reorder",{"number":7899,"type":173,"author":6697,"provisional":6366,"depends":7513,"contact":6740,"extension":7900,"proposal":299},430,"VK_NV_ray_tracing_linear_swept_spheres",{"number":7902,"type":173,"author":6697,"provisional":6366,"depends":7513,"contact":7516,"extension":7903,"proposal":6366},328,"VK_NV_ray_tracing_motion_blur",{"number":7905,"type":173,"author":6697,"provisional":6366,"contact":6836,"extension":7906,"proposal":299},569,"VK_NV_ray_tracing_validation",{"number":7908,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7761,"extension":7909,"proposal":6366},167,"VK_NV_representative_fragment_test",{"number":7911,"type":173,"author":6697,"provisional":6366,"contact":6724,"extension":7912,"proposal":6366},95,"VK_NV_sample_mask_override_coverage",{"number":7914,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7740,"extension":7915,"proposal":6366},206,"VK_NV_scissor_exclusive",{"number":7917,"type":173,"author":6697,"provisional":6366,"contact":6719,"extension":7918,"proposal":6366},564,"VK_NV_shader_atomic_float16_vector",{"number":7920,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7740,"extension":7921,"proposal":6366},205,"VK_NV_shader_image_footprint",{"number":7923,"type":173,"author":6697,"provisional":6366,"depends":6681,"contact":7052,"extension":7924,"proposal":6366},155,"VK_NV_shader_sm_builtins",{"number":7926,"type":173,"author":6697,"provisional":6366,"depends":6681,"contact":6719,"extension":7927,"proposal":6366},199,"VK_NV_shader_subgroup_partitioned",{"number":7929,"type":173,"author":6697,"provisional":6366,"depends":6582,"contact":7740,"extension":7930,"proposal":6366},165,"VK_NV_shading_rate_image",{"number":7932,"type":173,"author":6697,"provisional":6366,"contact":7052,"extension":7933,"proposal":6366},97,"VK_NV_viewport_array2",{"number":7935,"type":173,"author":6697,"provisional":6366,"contact":6724,"extension":7936,"proposal":6366},99,"VK_NV_viewport_swizzle",{"number":7938,"type":173,"author":6697,"promotedto":7670,"provisional":6366,"depends":7819,"platform":6884,"contact":7669,"extension":7939,"proposal":6366},59,"VK_NV_win32_keyed_mutex",{"number":7941,"type":173,"author":6860,"provisional":6366,"depends":7942,"contact":6861,"extension":7943,"proposal":6366},522,"(VK_EXT_filter_cubic)+(VK_VERSION_1_2,VK_EXT_sampler_filter_minmax)","VK_QCOM_filter_cubic_clamp",{"number":7945,"type":173,"author":6860,"provisional":6366,"depends":6862,"contact":6861,"extension":7946,"proposal":6366},520,"VK_QCOM_filter_cubic_weights",{"number":7948,"type":173,"author":6860,"promotedto":6873,"provisional":6366,"depends":7949,"contact":6861,"extension":7950,"proposal":6366},426,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_fragment_density_map","VK_QCOM_fragment_density_map_offset",{"number":7952,"type":173,"author":6860,"provisional":6366,"depends":7953,"contact":6861,"extension":7954,"proposal":299},441,"VK_KHR_format_feature_flags2,VK_VERSION_1_3","VK_QCOM_image_processing",{"number":7956,"type":173,"author":6860,"provisional":6366,"depends":7954,"contact":6861,"extension":7957,"proposal":6366},519,"VK_QCOM_image_processing2",{"number":7959,"type":173,"author":6860,"provisional":6366,"contact":6861,"extension":7960,"proposal":6366},511,"VK_QCOM_multiview_per_view_render_areas",{"number":7962,"type":173,"author":6860,"provisional":6366,"depends":6582,"contact":6861,"extension":7963,"proposal":6366},489,"VK_QCOM_multiview_per_view_viewports",{"number":7965,"type":173,"author":6860,"provisional":6366,"contact":6861,"extension":7966,"proposal":6366},172,"VK_QCOM_render_pass_shader_resolve",{"number":7968,"type":173,"author":6860,"provisional":6366,"contact":6861,"extension":7969,"proposal":6366},302,"VK_QCOM_render_pass_store_ops",{"number":7971,"type":173,"author":6860,"provisional":6366,"contact":6861,"extension":7972,"proposal":6366},283,"VK_QCOM_render_pass_transform",{"number":7974,"type":173,"author":6860,"provisional":6366,"depends":7975,"contact":6861,"extension":7976,"proposal":6366},334,"VK_KHR_copy_commands2,VK_VERSION_1_3","VK_QCOM_rotated_copy_commands",{"number":7978,"type":173,"author":6860,"provisional":6366,"depends":6582,"contact":6861,"extension":7979,"proposal":299},485,"VK_QCOM_tile_properties",{"number":7981,"type":173,"author":6860,"provisional":6366,"depends":7982,"contact":6861,"extension":7983,"proposal":299},310,"VK_QCOM_tile_properties,VK_KHR_get_physical_device_properties2","VK_QCOM_tile_shading",{"number":7985,"type":173,"author":6860,"provisional":6366,"contact":6861,"extension":7986,"proposal":6366},521,"VK_QCOM_ycbcr_degamma",{"number":7988,"type":173,"author":7989,"provisional":6366,"depends":6655,"platform":7990,"contact":7991,"extension":7992,"proposal":6366},530,"QNX","screen","Mike Gorchak @mgorchak-blackberry, Aaron Ruby @aruby-blackberry","VK_QNX_external_memory_screen_buffer",{"number":7994,"type":6691,"author":7989,"provisional":6366,"depends":6813,"platform":7990,"contact":7995,"extension":7996,"proposal":6366},379,"Mike Gorchak @mgorchak-blackberry","VK_QNX_screen_surface",{"number":7998,"type":173,"author":7999,"provisional":6366,"depends":6582,"contact":6795,"extension":8000,"proposal":6366},486,"SEC","VK_SEC_amigo_profiling",{"number":8002,"type":173,"author":8003,"provisional":6366,"depends":6582,"specialuse":6762,"contact":7036,"extension":8004,"proposal":6366},421,"VALVE","VK_VALVE_descriptor_set_host_mapping",{"number":8006,"type":173,"author":8003,"promotedto":7002,"provisional":6366,"depends":7444,"specialuse":6762,"contact":7001,"extension":8007,"proposal":6366},352,"VK_VALVE_mutable_descriptor_type",1744876614810]