[{"data":1,"prerenderedAt":2905},["ShallowReactive",2],{"mkvwudeth5":3,"VyF3Mmj32r":1321,"N9m89Rcq0G":1545},{"title":4,"description":5,"body":6,"_type":1320,"_id":4},"VK_AMD_shader_early_and_late_fragment_tests.proposal","This document describes a proposal for a new SPIR-V execution mode that allows fragment shaders to be discarded by early fragment operations, even if they contain writes to storage resources or other side effects.",{"type":7,"children":8,"toc":1307},"root",[9,16,23,44,68,74,79,84,104,109,131,136,141,147,154,229,234,240,245,881,886,892,897,902,907,920,925,930,978,983,989,1003,1242,1284,1290,1296,1301],{"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,28,35,37,42],{"type":15,"value":27},"Most graphics devices are able to take advantage of early fragment operations when a fragment shader avoids certain operations - e.g. writing to depth or stencil, or to storage resources, providing significant performance advantages in most cases.\nThis is implicitly enabled wherever possible, and can be explicitly enabled by specifying the ",{"type":10,"tag":29,"props":30,"children":32},"code",{"className":31},[],[33],{"type":15,"value":34},"EarlyFragmentTests",{"type":15,"value":36}," execution mode in SPIR-V.\nHowever the ",{"type":10,"tag":29,"props":38,"children":40},{"className":39},[],[41],{"type":15,"value":34},{"type":15,"value":43}," execution mode makes it invalid to write fragment depth from a shader.",{"type":10,"tag":11,"props":45,"children":46},{},[47,49,55,57,66],{"type":15,"value":48},"Some implementations can perform depth testing both before ",{"type":10,"tag":50,"props":51,"children":52},"em",{},[53],{"type":15,"value":54},"and",{"type":15,"value":56}," after fragment shading, allowing a conservative early test to discard most fragments and a late test to discard with more precision.\n",{"type":10,"tag":58,"props":59,"children":63},"a",{"href":60,"rel":61},"https://registry.khronos.org/OpenGL/extensions/ARB/ARB_conservative_depth.txt",[62],"nofollow",[64],{"type":15,"value":65},"GL_ARB_conservative_depth",{"type":15,"value":67}," added a way to enable this optimization even when depth was written by the fragment shader, allowing further optimizations to be achieved in certain conditions.\nHowever, if the shader also writes to storage resources, no such optimization is possible due to the predictability requirements of the specification.\nIn cases where an application does not care whether storage writes are performed by a fragment shader when discarded, it is possible to use this capability for a significant performance improvement on some console platforms, but so far Vulkan has no mechanism to do this.\nFor some applications, this can mean an unnecessary performance hit that should be relatively straightforward to solve.",{"type":10,"tag":17,"props":69,"children":71},{"id":70},"_solution_space",[72],{"type":15,"value":73},"Solution Space",{"type":10,"tag":11,"props":75,"children":76},{},[77],{"type":15,"value":78},"There is only really one solution to this problem, which is to expose this capability to applications in some way.\nThe main question is how to expose this, at what granularity, and whether we should provide any guarantees.\nUltimately this should be relatively easy to turn on/off, and ideally should be set per-fragment shader in some form.",{"type":10,"tag":11,"props":80,"children":81},{},[82],{"type":15,"value":83},"The main options for signifying the switch are:",{"type":10,"tag":85,"props":86,"children":87},"ol",{},[88,94,99],{"type":10,"tag":89,"props":90,"children":91},"li",{},[92],{"type":15,"value":93},"Pipeline creation flag",{"type":10,"tag":89,"props":95,"children":96},{},[97],{"type":15,"value":98},"SPIR-V execution mode",{"type":10,"tag":89,"props":100,"children":101},{},[102],{"type":15,"value":103},"Non-semantic instruction",{"type":10,"tag":11,"props":105,"children":106},{},[107],{"type":15,"value":108},"If it becomes a pipeline creation flag, it is easy to turn on/off on a per-pipeline basis.\nHowever, the knowledge of whether the writes can be discarded is usually a property of whatever algorithm has been written in the fragment shader code itself, meaning this property has to be specified in two places.\nFrom that perspective, it makes sense to have something in the shader code itself.",{"type":10,"tag":11,"props":110,"children":111},{},[112,114,120,122,129],{"type":15,"value":113},"A SPIR-V execution mode is a straightforward way to express this, and it is consistent with the way that conservative depth is expressed in SPIR-V (e.g. ",{"type":10,"tag":29,"props":115,"children":117},{"className":116},[],[118],{"type":15,"value":119},"DepthGreater",{"type":15,"value":121}," ",{"type":10,"tag":58,"props":123,"children":126},{"href":124,"rel":125},"https://registry.khronos.org/spir-v/specs/unified1/SPIRV.html#Execution_Mode",[62],[127],{"type":15,"value":128},"Execution Mode",{"type":15,"value":130},").\nThe downside of using an execution mode which is essentially an optimization hint is that drivers have to implement the extension for the SPIR-V to be valid; when in fact it can be safely ignored in all cases.",{"type":10,"tag":11,"props":132,"children":133},{},[134],{"type":15,"value":135},"Non-Semantic instructions seem like they could offer a way to specify the behavior without need for drivers to implement anything new.\nUnfortunately, as the induced behavior violates the current Vulkan specification, it is not suitable for this use case, as it cannot be safely added to all shaders.",{"type":10,"tag":11,"props":137,"children":138},{},[139],{"type":15,"value":140},"Without a wider \"this can be ignored but can change behavior\" extension along the lines of the non-semantic extension, a SPIR-V execution mode is likely the most suitable option.\nApplications, an application-facing library, or a Vulkan software layer could be used to automatically remove the execution mode when not supported.\nImplementations should also eventually be able to support the execution mode as a no-op if they do not have the required capabilities.",{"type":10,"tag":17,"props":142,"children":144},{"id":143},"_proposal",[145],{"type":15,"value":146},"Proposal",{"type":10,"tag":148,"props":149,"children":151},"h3",{"id":150},"_new_vulkan_feature",[152],{"type":15,"value":153},"New Vulkan feature",{"type":10,"tag":155,"props":156,"children":161},"pre",{"className":157,"code":158,"language":159,"meta":160,"style":160},"language-c shiki shiki-themes github-light-default github-dark-default","typedef struct VkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD {\n VkStructureType sType;\n void* pNext;\n VkBool32 shaderEarlyAndLateFragmentTests;\n} VkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD;\n","c","",[162],{"type":10,"tag":29,"props":163,"children":164},{"__ignoreMap":160},[165,188,197,211,220],{"type":10,"tag":166,"props":167,"children":170},"span",{"class":168,"line":169},"line",1,[171,177,182],{"type":10,"tag":166,"props":172,"children":174},{"style":173},"--shiki-default:#CF222E;--shiki-dark:#FF7B72",[175],{"type":15,"value":176},"typedef",{"type":10,"tag":166,"props":178,"children":179},{"style":173},[180],{"type":15,"value":181}," struct",{"type":10,"tag":166,"props":183,"children":185},{"style":184},"--shiki-default:#1F2328;--shiki-dark:#E6EDF3",[186],{"type":15,"value":187}," VkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD {\n",{"type":10,"tag":166,"props":189,"children":191},{"class":168,"line":190},2,[192],{"type":10,"tag":166,"props":193,"children":194},{"style":184},[195],{"type":15,"value":196}," VkStructureType sType;\n",{"type":10,"tag":166,"props":198,"children":200},{"class":168,"line":199},3,[201,206],{"type":10,"tag":166,"props":202,"children":203},{"style":173},[204],{"type":15,"value":205}," void*",{"type":10,"tag":166,"props":207,"children":208},{"style":184},[209],{"type":15,"value":210}," pNext;\n",{"type":10,"tag":166,"props":212,"children":214},{"class":168,"line":213},4,[215],{"type":10,"tag":166,"props":216,"children":217},{"style":184},[218],{"type":15,"value":219}," VkBool32 shaderEarlyAndLateFragmentTests;\n",{"type":10,"tag":166,"props":221,"children":223},{"class":168,"line":222},5,[224],{"type":10,"tag":166,"props":225,"children":226},{"style":184},[227],{"type":15,"value":228},"} VkPhysicalDeviceShaderEarlyAndLateFragmentTestsFeaturesAMD;\n",{"type":10,"tag":11,"props":230,"children":231},{},[232],{"type":15,"value":233},"This feature allows the new execution mode in SPIR-V shaders consumed by the implementation.",{"type":10,"tag":148,"props":235,"children":237},{"id":236},"_new_spir_v_execution_modes",[238],{"type":15,"value":239},"New SPIR-V Execution Modes",{"type":10,"tag":11,"props":241,"children":242},{},[243],{"type":15,"value":244},"A new execution mode is introduced which allows for early depth and stencil tests to be performed both early and late when depth and stencil writes are performed, in combination with the depth optimizations.\nIn order to allow for stencil reference writes with this new execution mode, similar stencil reference write optimizations are provided.",{"type":10,"tag":246,"props":247,"children":253},"table",{"className":248},[249,250,251,252],"tableblock","frame-all","grid-all","stretch",[254,274,304],{"type":10,"tag":255,"props":256,"children":257},"colgroup",{},[258,263,267,271],{"type":10,"tag":259,"props":260,"children":262},"col",{"style":261},"width: 10%;",[],{"type":10,"tag":259,"props":264,"children":266},{"style":265},"width: 60%;",[],{"type":10,"tag":259,"props":268,"children":270},{"style":269},"width: 20%;",[],{"type":10,"tag":259,"props":272,"children":273},{"style":261},[],{"type":10,"tag":275,"props":276,"children":277},"thead",{},[278],{"type":10,"tag":279,"props":280,"children":281},"tr",{},[282,292,298],{"type":10,"tag":283,"props":284,"children":289},"th",{"className":285,"colSpan":288},[249,286,287],"halign-center","valign-top","2",[290],{"type":15,"value":291},"Execution mode",{"type":10,"tag":283,"props":293,"children":295},{"className":294},[249,286,287],[296],{"type":15,"value":297},"Extra Operands",{"type":10,"tag":283,"props":299,"children":301},{"className":300},[249,286,287],[302],{"type":15,"value":303},"Enabling Capabilities",{"type":10,"tag":305,"props":306,"children":307},"tbody",{},[308,456,531,601,671,741,811],{"type":10,"tag":279,"props":309,"children":310},{},[311,323,439,443],{"type":10,"tag":312,"props":313,"children":316},"td",{"className":314},[249,315,287],"halign-left",[317],{"type":10,"tag":11,"props":318,"children":320},{"className":319},[249],[321],{"type":15,"value":322},"5017",{"type":10,"tag":312,"props":324,"children":326},{"className":325},[249,315,287],[327],{"type":10,"tag":11,"props":328,"children":330},{"className":329},[249],[331,338,340,345,347,352,354,356,361,363,368,370,374,376,378,382,384,389,391,396,398,403,405,406,410,411,415,416,421,422,427,428,430,435,437],{"type":10,"tag":332,"props":333,"children":335},"emphasis",{"role":334},"strong",[336],{"type":15,"value":337},"EarlyAndLateFragmentTestsAMD",{"type":15,"value":339},"\nFragment tests can be performed both before and after fragment shader execution, with latter tests taking values written to ",{"type":10,"tag":332,"props":341,"children":342},{},[343],{"type":15,"value":344},"FragDepth",{"type":15,"value":346}," and ",{"type":10,"tag":332,"props":348,"children":349},{},[350],{"type":15,"value":351},"FragStencilRefEXT",{"type":15,"value":353}," into account. Early tests are not guaranteed, late tests are.+\n",{"type":15,"value":355},"\nIf neither of ",{"type":10,"tag":332,"props":357,"children":358},{"role":334},[359],{"type":15,"value":360},"ExecutionModeDepthReplacing",{"type":15,"value":362}," or ",{"type":10,"tag":332,"props":364,"children":365},{"role":334},[366],{"type":15,"value":367},"ExecutionModeStencilRefReplacingEXT",{"type":15,"value":369}," are specified, functions identically to ",{"type":10,"tag":332,"props":371,"children":372},{"role":334},[373],{"type":15,"value":34},{"type":15,"value":375},".",{"type":15,"value":377},"\nIf this and ",{"type":10,"tag":332,"props":379,"children":380},{"role":334},[381],{"type":15,"value":367},{"type":15,"value":383}," are both specified, one of ",{"type":10,"tag":332,"props":385,"children":386},{"role":334},[387],{"type":15,"value":388},"StencilRefGreaterAMD",{"type":15,"value":390},", ",{"type":10,"tag":332,"props":392,"children":393},{"role":334},[394],{"type":15,"value":395},"StencilRefLessAMD",{"type":15,"value":397},", or ",{"type":10,"tag":332,"props":399,"children":400},{"role":334},[401],{"type":15,"value":402},"StencilRefUnchangedAMD",{"type":15,"value":404}," must also be specified.",{"type":15,"value":377},{"type":10,"tag":332,"props":407,"children":408},{"role":334},[409],{"type":15,"value":360},{"type":15,"value":383},{"type":10,"tag":332,"props":412,"children":413},{"role":334},[414],{"type":15,"value":119},{"type":15,"value":390},{"type":10,"tag":332,"props":417,"children":418},{"role":334},[419],{"type":15,"value":420},"DepthLess",{"type":15,"value":397},{"type":10,"tag":332,"props":423,"children":424},{"role":334},[425],{"type":15,"value":426},"DepthUnchanged",{"type":15,"value":404},{"type":15,"value":429},"\nOnly valid with the Fragment ",{"type":10,"tag":431,"props":432,"children":434},"link",{"xl:href":433},"https://registry.khronos.org/spir-v/specs/unified1/SPIRV.html#Execution_Model",[],{"type":15,"value":436},"Execution Model.",{"type":15,"value":438},"\nSee client API for detail on fragment operations.",{"type":10,"tag":312,"props":440,"children":442},{"className":441},[249,315,287],[],{"type":10,"tag":312,"props":444,"children":446},{"className":445},[249,315,287],[447],{"type":10,"tag":11,"props":448,"children":450},{"className":449},[249],[451],{"type":10,"tag":332,"props":452,"children":453},{"role":334},[454],{"type":15,"value":455},"Shader",{"type":10,"tag":279,"props":457,"children":458},{},[459,469,514,518],{"type":10,"tag":312,"props":460,"children":462},{"className":461},[249,315,287],[463],{"type":10,"tag":11,"props":464,"children":466},{"className":465},[249],[467],{"type":15,"value":468},"5079",{"type":10,"tag":312,"props":470,"children":472},{"className":471},[249,315,287],[473],{"type":10,"tag":11,"props":474,"children":476},{"className":475},[249],[477,482,484,488,490,491,494,495,497,501,502,506,508,512],{"type":10,"tag":332,"props":478,"children":479},{"role":334},[480],{"type":15,"value":481},"StencilRefUnchangedFrontAMD",{"type":15,"value":483},"\nIndicates that early per-fragment tests may assume that any ",{"type":10,"tag":332,"props":485,"children":486},{},[487],{"type":15,"value":351},{"type":15,"value":489}," built in-decorated value written by the shader is equal to the stencil reference value set for the front face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":492,"children":493},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},"\nAt most one of ",{"type":10,"tag":332,"props":498,"children":499},{"role":334},[500],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":503,"children":504},{"role":334},[505],{"type":15,"value":395},{"type":15,"value":507},", and ",{"type":10,"tag":332,"props":509,"children":510},{"role":334},[511],{"type":15,"value":402},{"type":15,"value":513}," can be specified.",{"type":10,"tag":312,"props":515,"children":517},{"className":516},[249,315,287],[],{"type":10,"tag":312,"props":519,"children":521},{"className":520},[249,315,287],[522],{"type":10,"tag":11,"props":523,"children":525},{"className":524},[249],[526],{"type":10,"tag":332,"props":527,"children":528},{"role":334},[529],{"type":15,"value":530},"StencilExportEXT",{"type":10,"tag":279,"props":532,"children":533},{},[534,544,585,589],{"type":10,"tag":312,"props":535,"children":537},{"className":536},[249,315,287],[538],{"type":10,"tag":11,"props":539,"children":541},{"className":540},[249],[542],{"type":15,"value":543},"5080",{"type":10,"tag":312,"props":545,"children":547},{"className":546},[249,315,287],[548],{"type":10,"tag":11,"props":549,"children":551},{"className":550},[249],[552,557,558,562,564,565,568,569,570,574,575,579,580,584],{"type":10,"tag":332,"props":553,"children":554},{"role":334},[555],{"type":15,"value":556},"StencilRefGreaterFrontAMD",{"type":15,"value":483},{"type":10,"tag":332,"props":559,"children":560},{},[561],{"type":15,"value":351},{"type":15,"value":563}," built in-decorated value written by the shader is greater than or equal to the stencil reference value set for the front face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":566,"children":567},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},{"type":10,"tag":332,"props":571,"children":572},{"role":334},[573],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":576,"children":577},{"role":334},[578],{"type":15,"value":395},{"type":15,"value":507},{"type":10,"tag":332,"props":581,"children":582},{"role":334},[583],{"type":15,"value":402},{"type":15,"value":513},{"type":10,"tag":312,"props":586,"children":588},{"className":587},[249,315,287],[],{"type":10,"tag":312,"props":590,"children":592},{"className":591},[249,315,287],[593],{"type":10,"tag":11,"props":594,"children":596},{"className":595},[249],[597],{"type":10,"tag":332,"props":598,"children":599},{"role":334},[600],{"type":15,"value":530},{"type":10,"tag":279,"props":602,"children":603},{},[604,614,655,659],{"type":10,"tag":312,"props":605,"children":607},{"className":606},[249,315,287],[608],{"type":10,"tag":11,"props":609,"children":611},{"className":610},[249],[612],{"type":15,"value":613},"5081",{"type":10,"tag":312,"props":615,"children":617},{"className":616},[249,315,287],[618],{"type":10,"tag":11,"props":619,"children":621},{"className":620},[249],[622,627,628,632,634,635,638,639,640,644,645,649,650,654],{"type":10,"tag":332,"props":623,"children":624},{"role":334},[625],{"type":15,"value":626},"StencilRefLessFrontAMD",{"type":15,"value":483},{"type":10,"tag":332,"props":629,"children":630},{},[631],{"type":15,"value":351},{"type":15,"value":633}," built in-decorated value written by the shader is less than or equal to the stencil reference value set for the front face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":636,"children":637},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},{"type":10,"tag":332,"props":641,"children":642},{"role":334},[643],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":646,"children":647},{"role":334},[648],{"type":15,"value":395},{"type":15,"value":507},{"type":10,"tag":332,"props":651,"children":652},{"role":334},[653],{"type":15,"value":402},{"type":15,"value":513},{"type":10,"tag":312,"props":656,"children":658},{"className":657},[249,315,287],[],{"type":10,"tag":312,"props":660,"children":662},{"className":661},[249,315,287],[663],{"type":10,"tag":11,"props":664,"children":666},{"className":665},[249],[667],{"type":10,"tag":332,"props":668,"children":669},{"role":334},[670],{"type":15,"value":530},{"type":10,"tag":279,"props":672,"children":673},{},[674,684,725,729],{"type":10,"tag":312,"props":675,"children":677},{"className":676},[249,315,287],[678],{"type":10,"tag":11,"props":679,"children":681},{"className":680},[249],[682],{"type":15,"value":683},"5082",{"type":10,"tag":312,"props":685,"children":687},{"className":686},[249,315,287],[688],{"type":10,"tag":11,"props":689,"children":691},{"className":690},[249],[692,697,698,702,704,705,708,709,710,714,715,719,720,724],{"type":10,"tag":332,"props":693,"children":694},{"role":334},[695],{"type":15,"value":696},"StencilRefUnchangedBackAMD",{"type":15,"value":483},{"type":10,"tag":332,"props":699,"children":700},{},[701],{"type":15,"value":351},{"type":15,"value":703}," built in-decorated value written by the shader is equal to the stencil reference value set for the back face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":706,"children":707},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},{"type":10,"tag":332,"props":711,"children":712},{"role":334},[713],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":716,"children":717},{"role":334},[718],{"type":15,"value":395},{"type":15,"value":507},{"type":10,"tag":332,"props":721,"children":722},{"role":334},[723],{"type":15,"value":402},{"type":15,"value":513},{"type":10,"tag":312,"props":726,"children":728},{"className":727},[249,315,287],[],{"type":10,"tag":312,"props":730,"children":732},{"className":731},[249,315,287],[733],{"type":10,"tag":11,"props":734,"children":736},{"className":735},[249],[737],{"type":10,"tag":332,"props":738,"children":739},{"role":334},[740],{"type":15,"value":530},{"type":10,"tag":279,"props":742,"children":743},{},[744,754,795,799],{"type":10,"tag":312,"props":745,"children":747},{"className":746},[249,315,287],[748],{"type":10,"tag":11,"props":749,"children":751},{"className":750},[249],[752],{"type":15,"value":753},"5083",{"type":10,"tag":312,"props":755,"children":757},{"className":756},[249,315,287],[758],{"type":10,"tag":11,"props":759,"children":761},{"className":760},[249],[762,767,768,772,774,775,778,779,780,784,785,789,790,794],{"type":10,"tag":332,"props":763,"children":764},{"role":334},[765],{"type":15,"value":766},"StencilRefGreaterBackAMD",{"type":15,"value":483},{"type":10,"tag":332,"props":769,"children":770},{},[771],{"type":15,"value":351},{"type":15,"value":773}," built in-decorated value written by the shader is greater than or equal to the stencil reference value set for the back face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":776,"children":777},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},{"type":10,"tag":332,"props":781,"children":782},{"role":334},[783],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":786,"children":787},{"role":334},[788],{"type":15,"value":395},{"type":15,"value":507},{"type":10,"tag":332,"props":791,"children":792},{"role":334},[793],{"type":15,"value":402},{"type":15,"value":513},{"type":10,"tag":312,"props":796,"children":798},{"className":797},[249,315,287],[],{"type":10,"tag":312,"props":800,"children":802},{"className":801},[249,315,287],[803],{"type":10,"tag":11,"props":804,"children":806},{"className":805},[249],[807],{"type":10,"tag":332,"props":808,"children":809},{"role":334},[810],{"type":15,"value":530},{"type":10,"tag":279,"props":812,"children":813},{},[814,824,865,869],{"type":10,"tag":312,"props":815,"children":817},{"className":816},[249,315,287],[818],{"type":10,"tag":11,"props":819,"children":821},{"className":820},[249],[822],{"type":15,"value":823},"5084",{"type":10,"tag":312,"props":825,"children":827},{"className":826},[249,315,287],[828],{"type":10,"tag":11,"props":829,"children":831},{"className":830},[249],[832,837,838,842,844,845,848,849,850,854,855,859,860,864],{"type":10,"tag":332,"props":833,"children":834},{"role":334},[835],{"type":15,"value":836},"StencilRefLessBackAMD",{"type":15,"value":483},{"type":10,"tag":332,"props":839,"children":840},{},[841],{"type":15,"value":351},{"type":15,"value":843}," built in-decorated value written by the shader is less than or equal to the stencil reference value set for the back face in the client API after masking.\nLate per-fragment tests will use the written value as normal.",{"type":15,"value":429},{"type":10,"tag":431,"props":846,"children":847},{"xl:href":433},[],{"type":15,"value":436},{"type":15,"value":496},{"type":10,"tag":332,"props":851,"children":852},{"role":334},[853],{"type":15,"value":388},{"type":15,"value":390},{"type":10,"tag":332,"props":856,"children":857},{"role":334},[858],{"type":15,"value":395},{"type":15,"value":507},{"type":10,"tag":332,"props":861,"children":862},{"role":334},[863],{"type":15,"value":402},{"type":15,"value":513},{"type":10,"tag":312,"props":866,"children":868},{"className":867},[249,315,287],[],{"type":10,"tag":312,"props":870,"children":872},{"className":871},[249,315,287],[873],{"type":10,"tag":11,"props":874,"children":876},{"className":875},[249],[877],{"type":10,"tag":332,"props":878,"children":879},{"role":334},[880],{"type":15,"value":530},{"type":10,"tag":11,"props":882,"children":883},{},[884],{"type":15,"value":885},"This allows implementations to perform both early and late tests explicitly.",{"type":10,"tag":148,"props":887,"children":889},{"id":888},"_new_glsl_layout_qualifiers",[890],{"type":15,"value":891},"New GLSL Layout Qualifiers",{"type":10,"tag":11,"props":893,"children":894},{},[895],{"type":15,"value":896},"The following new layout qualifiers are added to GLSL:",{"type":10,"tag":11,"props":898,"children":899},{},[900],{"type":15,"value":901},"Fragment shaders allow the following stand-alone declaration:",{"type":10,"tag":11,"props":903,"children":904},{},[905],{"type":15,"value":906},"__early_and_late_fragment_testsAMD",{"type":10,"tag":11,"props":908,"children":909},{},[910,912,918],{"type":15,"value":911},"to request that certain fragment tests be performed before and after fragment shader execution, as described in\nthe ",{"type":10,"tag":29,"props":913,"children":915},{"className":914},[],[916],{"type":15,"value":917},"Fragment Operations",{"type":15,"value":919}," chapter of the Vulkan 1.2 Specification.\nThis declaration must appear in a line on its own.",{"type":10,"tag":11,"props":921,"children":922},{},[923],{"type":15,"value":924},"The following additional standalone declarations may be specified:",{"type":10,"tag":11,"props":926,"children":927},{},[928],{"type":15,"value":929},"layout-qualifier-id:\n__stencil_ref_unchanged_frontAMD\n__stencil_ref_less_frontAMD\n__stencil_ref_greater_frontAMD\n__stencil_ref_unchanged_backAMD\n__stencil_ref_less_backAMD\n__stencil_ref_greater_backAMD",{"type":10,"tag":11,"props":931,"children":932},{},[933,935,940,942,947,949,955,957,962,964,969,971,976],{"type":15,"value":934},"These declarations must each appear in a line on their own.\nOnly one ",{"type":10,"tag":50,"props":936,"children":937},{},[938],{"type":15,"value":939},"stencil_ref_*",{"type":15,"value":941},"frontAMD and one ",{"type":10,"tag":50,"props":943,"children":944},{},[945],{"type":15,"value":946},"stencil_ref",{"type":15,"value":948},"*_backAMD declaration may be specified.\nEach declaration constrains the intentions of the final value of ",{"type":10,"tag":29,"props":950,"children":952},{"className":951},[],[953],{"type":15,"value":954},"gl_FragStencilRefARB",{"type":15,"value":956}," written by any shader invocation.\nImplementations are allowed to perform optimizations assuming that the stencil test fails (or passes) for a given fragment if all values of ",{"type":10,"tag":29,"props":958,"children":960},{"className":959},[],[961],{"type":15,"value":954},{"type":15,"value":963}," consistent with the declaration would fail (or pass).\nThis potentially includes skipping shader execution if the fragment is discarded because it is occluded and the shader has no side effects.\nIf the final value of ",{"type":10,"tag":29,"props":965,"children":967},{"className":966},[],[968],{"type":15,"value":954},{"type":15,"value":970}," is inconsistent with the declaration for the facing of the shaded polygon, the result of the stencil test for the corresponding fragment is undefined.\nIf the stencil test passes and stencil writes are enabled, the value written to the stencil buffer is always the value of ",{"type":10,"tag":29,"props":972,"children":974},{"className":973},[],[975],{"type":15,"value":954},{"type":15,"value":977},", whether or not it is consistent with the layout qualifier.",{"type":10,"tag":11,"props":979,"children":980},{},[981],{"type":15,"value":982},"Each of the above qualifiers maps directly to the equivalently named spir-v execution mode.",{"type":10,"tag":148,"props":984,"children":986},{"id":985},"_new_hlsl_attributes",[987],{"type":15,"value":988},"New HLSL Attributes",{"type":10,"tag":11,"props":990,"children":991},{},[992,994,1001],{"type":15,"value":993},"The following new ",{"type":10,"tag":58,"props":995,"children":998},{"href":996,"rel":997},"https://github.com/microsoft/DirectXShaderCompiler/blob/main/docs/SPIR-V.rst#vulkan-specific-attributes",[62],[999],{"type":15,"value":1000},"Vulkan Specific Attribute",{"type":15,"value":1002}," is added:",{"type":10,"tag":1004,"props":1005,"children":1006},"ul",{},[1007,1085,1109,1132,1154,1176,1198,1220],{"type":10,"tag":89,"props":1008,"children":1009},{},[1010,1016,1018,1024,1025,1031,1033,1039,1041,1047,1048,1054,1055,1061,1063,1069,1070,1076,1077,1083],{"type":10,"tag":29,"props":1011,"children":1013},{"className":1012},[],[1014],{"type":15,"value":1015},"early_and_late_tests",{"type":15,"value":1017},": Marks an entry point as enabling early and late depth tests.\nIf depth is written via ",{"type":10,"tag":29,"props":1019,"children":1021},{"className":1020},[],[1022],{"type":15,"value":1023},"SV_Depth",{"type":15,"value":390},{"type":10,"tag":29,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":15,"value":1030},"depth_unchanged",{"type":15,"value":1032}," must also be specified (SV_DepthLess and SV_DepthGreater can be written freely).\nIf a stencil reference value is written via ",{"type":10,"tag":29,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":15,"value":1038},"SV_StencilRef",{"type":15,"value":1040},", one of ",{"type":10,"tag":29,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":15,"value":1046},"stencil_ref_unchanged_front",{"type":15,"value":390},{"type":10,"tag":29,"props":1049,"children":1051},{"className":1050},[],[1052],{"type":15,"value":1053},"stencil_ref_greater_equal_front",{"type":15,"value":397},{"type":10,"tag":29,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":15,"value":1060},"stencil_ref_less_equal_front",{"type":15,"value":1062}," and one of ",{"type":10,"tag":29,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":15,"value":1068},"stencil_ref_unchanged_back",{"type":15,"value":390},{"type":10,"tag":29,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":15,"value":1075},"stencil_ref_greater_equal_back",{"type":15,"value":397},{"type":10,"tag":29,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":15,"value":1082},"stencil_ref_less_equal_back",{"type":15,"value":1084}," must be specified.",{"type":10,"tag":89,"props":1086,"children":1087},{},[1088,1093,1095,1100,1102,1107],{"type":10,"tag":29,"props":1089,"children":1091},{"className":1090},[],[1092],{"type":15,"value":1030},{"type":15,"value":1094},": Specifies that any depth written to ",{"type":10,"tag":29,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":15,"value":1023},{"type":15,"value":1101}," will not invalidate the result of early depth tests.\nSets the ",{"type":10,"tag":29,"props":1103,"children":1105},{"className":1104},[],[1106],{"type":15,"value":426},{"type":15,"value":1108}," execution mode in SPIR-V.",{"type":10,"tag":89,"props":1110,"children":1111},{},[1112,1117,1119,1124,1126,1131],{"type":10,"tag":29,"props":1113,"children":1115},{"className":1114},[],[1116],{"type":15,"value":1046},{"type":15,"value":1118},": Specifies that any stencil ref written to ",{"type":10,"tag":29,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":15,"value":1038},{"type":15,"value":1125}," will not invalidate the result of early stencil tests when the fragment is front facing.\nSets the ",{"type":10,"tag":29,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":15,"value":481},{"type":15,"value":1108},{"type":10,"tag":89,"props":1133,"children":1134},{},[1135,1140,1141,1146,1148,1153],{"type":10,"tag":29,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":15,"value":1053},{"type":15,"value":1118},{"type":10,"tag":29,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":15,"value":1038},{"type":15,"value":1147}," will be greater than or equal to the stencil reference value set by the API when the fragment is front facing.\nSets the ",{"type":10,"tag":29,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":15,"value":556},{"type":15,"value":1108},{"type":10,"tag":89,"props":1155,"children":1156},{},[1157,1162,1163,1168,1170,1175],{"type":10,"tag":29,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":15,"value":1060},{"type":15,"value":1118},{"type":10,"tag":29,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":15,"value":1038},{"type":15,"value":1169}," will be less than or equal to the stencil reference value set by the API when the fragment is front facing.\nSets the ",{"type":10,"tag":29,"props":1171,"children":1173},{"className":1172},[],[1174],{"type":15,"value":626},{"type":15,"value":1108},{"type":10,"tag":89,"props":1177,"children":1178},{},[1179,1184,1185,1190,1192,1197],{"type":10,"tag":29,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":15,"value":1068},{"type":15,"value":1118},{"type":10,"tag":29,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":15,"value":1038},{"type":15,"value":1191}," will not invalidate the result of early stencil tests when the fragment is back facing.\nSets the ",{"type":10,"tag":29,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":15,"value":696},{"type":15,"value":1108},{"type":10,"tag":89,"props":1199,"children":1200},{},[1201,1206,1207,1212,1214,1219],{"type":10,"tag":29,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":15,"value":1075},{"type":15,"value":1118},{"type":10,"tag":29,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":15,"value":1038},{"type":15,"value":1213}," will be greater than or equal to the stencil reference value set by the API when the fragment is back facing.\nSets the ",{"type":10,"tag":29,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":15,"value":766},{"type":15,"value":1108},{"type":10,"tag":89,"props":1221,"children":1222},{},[1223,1228,1229,1234,1236,1241],{"type":10,"tag":29,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":15,"value":1082},{"type":15,"value":1118},{"type":10,"tag":29,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":15,"value":1038},{"type":15,"value":1235}," will be less than or equal to the stencil reference value set by the API when the fragment is back facing.\nSets the ",{"type":10,"tag":29,"props":1237,"children":1239},{"className":1238},[],[1240],{"type":15,"value":836},{"type":15,"value":1108},{"type":10,"tag":11,"props":1243,"children":1244},{},[1245,1247,1252,1253,1258,1259,1264,1266,1271,1272,1277,1278,1283],{"type":15,"value":1246},"Shaders must not specify more than one of ",{"type":10,"tag":29,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":15,"value":1046},{"type":15,"value":390},{"type":10,"tag":29,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":15,"value":1053},{"type":15,"value":507},{"type":10,"tag":29,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":15,"value":1060},{"type":15,"value":1265},".\nShaders must not specify more than one of ",{"type":10,"tag":29,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":15,"value":1068},{"type":15,"value":390},{"type":10,"tag":29,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":15,"value":1075},{"type":15,"value":507},{"type":10,"tag":29,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":15,"value":1082},{"type":15,"value":375},{"type":10,"tag":17,"props":1285,"children":1287},{"id":1286},"_issues",[1288],{"type":15,"value":1289},"Issues",{"type":10,"tag":148,"props":1291,"children":1293},{"id":1292},"_unresolved_should_we_expose_a_featureproperty_indiciting_if_the_implementation_is_actually_going_to_perform_early_and_late_tests",[1294],{"type":15,"value":1295},"UNRESOLVED: Should we expose a feature/property indiciting if the implementation is actually going to perform early and late tests?",{"type":10,"tag":11,"props":1297,"children":1298},{},[1299],{"type":15,"value":1300},"It would be useful if ultimately all implementations could ship this feature, treating it as a no-op where relevant - but if some implementations cannot gain any advantage from this, it might be reasonable to expose a property indicating this.",{"type":10,"tag":1302,"props":1303,"children":1304},"style",{},[1305],{"type":15,"value":1306},"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":160,"searchDepth":190,"depth":190,"links":1308},[1309,1310,1311,1317],{"id":19,"depth":190,"text":22},{"id":70,"depth":190,"text":73},{"id":143,"depth":190,"text":146,"children":1312},[1313,1314,1315,1316],{"id":150,"depth":199,"text":153},{"id":236,"depth":199,"text":239},{"id":888,"depth":199,"text":891},{"id":985,"depth":199,"text":988},{"id":1286,"depth":190,"text":1289,"children":1318},[1319],{"id":1292,"depth":199,"text":1295},"markdown",[1322,1327,1330,1333,1336,1339,1342,1346,1350,1354,1358,1362,1366,1370,1374,1378,1382,1386,1390,1394,1398,1402,1406,1410,1414,1418,1422,1426,1430,1433,1437,1441,1445,1449,1453,1457,1461,1465,1469,1473,1477,1481,1485,1489,1493,1497,1501,1505,1509,1513,1517,1521,1524,1527,1530,1533,1536,1539,1542],{"index":1323,"title":1324,"id":1325,"appendix":1326},0,"Preamble","preamble",false,{"index":169,"title":1328,"id":1329,"appendix":1326},"Introduction","introduction",{"index":190,"title":1331,"id":1332,"appendix":1326},"Fundamentals","fundamentals",{"index":199,"title":1334,"id":1335,"appendix":1326},"Initialization","initialization",{"index":213,"title":1337,"id":1338,"appendix":1326},"Devices and Queues","devsandqueues",{"index":222,"title":1340,"id":1341,"appendix":1326},"Command Buffers","commandbuffers",{"index":1343,"title":1344,"id":1345,"appendix":1326},6,"Synchronization and Cache Control","synchronization",{"index":1347,"title":1348,"id":1349,"appendix":1326},7,"Render Pass","renderpass",{"index":1351,"title":1352,"id":1353,"appendix":1326},8,"Shaders","shaders",{"index":1355,"title":1356,"id":1357,"appendix":1326},9,"Pipelines","pipelines",{"index":1359,"title":1360,"id":1361,"appendix":1326},10,"Memory Allocation","memory",{"index":1363,"title":1364,"id":1365,"appendix":1326},11,"Resource Creation","resources",{"index":1367,"title":1368,"id":1369,"appendix":1326},12,"Samplers","samplers",{"index":1371,"title":1372,"id":1373,"appendix":1326},13,"Resource Descriptors","descriptorsets",{"index":1375,"title":1376,"id":1377,"appendix":1326},14,"Shader Interfaces","interfaces",{"index":1379,"title":1380,"id":1381,"appendix":1326},15,"Image Operations","textures",{"index":1383,"title":1384,"id":1385,"appendix":1326},16,"Fragment Density Map Operations","fragmentdensitymapops",{"index":1387,"title":1388,"id":1389,"appendix":1326},17,"Queries","queries",{"index":1391,"title":1392,"id":1393,"appendix":1326},18,"Clear Commands","clears",{"index":1395,"title":1396,"id":1397,"appendix":1326},19,"Copy Commands","copies",{"index":1399,"title":1400,"id":1401,"appendix":1326},20,"Drawing Commands","drawing",{"index":1403,"title":1404,"id":1405,"appendix":1326},21,"Fixed-Function Vertex Processing","fxvertex",{"index":1407,"title":1408,"id":1409,"appendix":1326},22,"Tessellation","tessellation",{"index":1411,"title":1412,"id":1413,"appendix":1326},23,"Geometry Shading","geometry",{"index":1415,"title":1416,"id":1417,"appendix":1326},24,"Mesh Shading","mesh",{"index":1419,"title":1420,"id":1421,"appendix":1326},25,"Cluster Culling Shading","cluster-culling",{"index":1423,"title":1424,"id":1425,"appendix":1326},26,"Fixed-Function Vertex Post-Processing","vertexpostproc",{"index":1427,"title":1428,"id":1429,"appendix":1326},27,"Rasterization","primsrast",{"index":1431,"title":917,"id":1432,"appendix":1326},28,"fragops",{"index":1434,"title":1435,"id":1436,"appendix":1326},29,"The Framebuffer","framebuffer",{"index":1438,"title":1439,"id":1440,"appendix":1326},30,"Dispatching Commands","dispatch",{"index":1442,"title":1443,"id":1444,"appendix":1326},31,"Device-Generated Commands","device-generated-commands",{"index":1446,"title":1447,"id":1448,"appendix":1326},32,"Sparse Resources","sparsememory",{"index":1450,"title":1451,"id":1452,"appendix":1326},33,"Window System Integration (WSI)","wsi",{"index":1454,"title":1455,"id":1456,"appendix":1326},34,"Deferred Host Operations","deferred-host-operations",{"index":1458,"title":1459,"id":1460,"appendix":1326},35,"Private Data","private-data",{"index":1462,"title":1463,"id":1464,"appendix":1326},36,"Acceleration Structures","acceleration-structure",{"index":1466,"title":1467,"id":1468,"appendix":1326},37,"Micromap","micromap",{"index":1470,"title":1471,"id":1472,"appendix":1326},38,"Ray Traversal","ray-traversal",{"index":1474,"title":1475,"id":1476,"appendix":1326},39,"Ray Tracing","ray-tracing",{"index":1478,"title":1479,"id":1480,"appendix":1326},40,"Memory Decompression","memory-decompression",{"index":1482,"title":1483,"id":1484,"appendix":1326},41,"Video Coding","video-coding",{"index":1486,"title":1487,"id":1488,"appendix":1326},42,"Optical Flow","opticalflow",{"index":1490,"title":1491,"id":1492,"appendix":1326},43,"Execution Graphs","executiongraphs",{"index":1494,"title":1495,"id":1496,"appendix":1326},44,"Extending Vulkan","extendingvulkan",{"index":1498,"title":1499,"id":1500,"appendix":1326},45,"Features","features",{"index":1502,"title":1503,"id":1504,"appendix":1326},46,"Limits","limits",{"index":1506,"title":1507,"id":1508,"appendix":1326},47,"Formats","formats",{"index":1510,"title":1511,"id":1512,"appendix":1326},48,"Additional Capabilities","capabilities",{"index":1514,"title":1515,"id":1516,"appendix":1326},49,"Debugging","debugging",{"index":1323,"title":1518,"id":1519,"appendix":1520},"Vulkan Environment for SPIR-V","spirvenv",true,{"index":169,"title":1522,"id":1523,"appendix":1520},"Memory Model","memory-model",{"index":190,"title":1525,"id":1526,"appendix":1520},"Compressed Image Formats","compressed_image_formats",{"index":199,"title":1528,"id":1529,"appendix":1520},"Core Revisions (Informative)","versions",{"index":213,"title":1531,"id":1532,"appendix":1520},"Layers & Extensions (Informative)","extensions",{"index":222,"title":1534,"id":1535,"appendix":1520},"API Boilerplate","boilerplate",{"index":1343,"title":1537,"id":1538,"appendix":1520},"Invariance","invariance",{"index":1347,"title":1540,"id":1541,"appendix":1520},"Lexicon","lexicon",{"index":1351,"title":1543,"id":1544,"appendix":1520},"Credits (Informative)","credits",[1546,1554,1558,1563,1567,1572,1575,1578,1581,1585,1589,1592,1595,1598,1600,1602,1605,1608,1612,1614,1618,1620,1623,1625,1628,1636,1640,1646,1650,1655,1657,1661,1667,1673,1679,1681,1684,1690,1693,1697,1703,1707,1711,1716,1720,1723,1726,1732,1735,1738,1742,1746,1750,1753,1755,1759,1764,1770,1773,1777,1780,1786,1789,1793,1796,1800,1803,1807,1810,1815,1819,1822,1827,1830,1833,1836,1840,1845,1850,1854,1858,1862,1866,1870,1874,1878,1881,1884,1888,1891,1894,1897,1901,1906,1910,1913,1917,1922,1926,1931,1934,1937,1942,1947,1951,1954,1958,1963,1966,1971,1976,1979,1982,1986,1990,1994,1999,2003,2006,2011,2015,2018,2022,2026,2030,2033,2035,2039,2042,2045,2048,2051,2054,2057,2060,2063,2066,2070,2074,2077,2080,2083,2086,2089,2092,2096,2100,2104,2107,2111,2114,2117,2120,2122,2126,2131,2135,2139,2141,2145,2148,2155,2159,2163,2167,2173,2176,2180,2184,2187,2190,2194,2199,2205,2209,2211,2216,2219,2224,2228,2233,2237,2241,2243,2246,2249,2251,2256,2259,2262,2267,2271,2275,2280,2284,2288,2290,2292,2295,2297,2300,2303,2307,2311,2313,2317,2320,2324,2327,2329,2332,2336,2338,2342,2345,2348,2351,2355,2358,2361,2363,2366,2368,2371,2375,2378,2380,2382,2384,2386,2390,2392,2395,2400,2404,2407,2409,2412,2414,2418,2421,2424,2427,2431,2434,2439,2443,2446,2450,2453,2456,2460,2464,2466,2471,2474,2478,2481,2484,2487,2489,2492,2496,2499,2503,2506,2510,2514,2517,2520,2523,2526,2530,2532,2535,2537,2542,2543,2547,2550,2553,2556,2559,2561,2565,2568,2571,2574,2578,2580,2582,2586,2588,2591,2595,2599,2601,2605,2608,2611,2614,2617,2621,2626,2631,2635,2641,2645,2648,2652,2656,2659,2663,2667,2670,2674,2677,2682,2686,2688,2694,2697,2700,2703,2707,2710,2714,2718,2722,2724,2727,2729,2732,2734,2736,2739,2742,2745,2748,2751,2754,2756,2760,2764,2768,2772,2775,2778,2782,2785,2789,2791,2795,2799,2802,2805,2808,2811,2814,2817,2820,2823,2826,2829,2832,2835,2838,2841,2845,2848,2852,2856,2859,2862,2865,2868,2871,2874,2878,2881,2884,2890,2894,2898,2902],{"number":1547,"type":1548,"author":1549,"provisional":1520,"depends":1550,"platform":1551,"contact":1552,"extension":1553,"proposal":1520},135,"device","AMD","(((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_synchronization2),VK_VERSION_1_3)+VK_KHR_pipeline_library+VK_KHR_spirv_1_4","provisional","Tobias Hector @tobski","VK_AMDX_shader_enqueue",{"number":1555,"type":1548,"author":1549,"provisional":1326,"contact":1556,"extension":1557,"proposal":1520},477,"Stu Smith","VK_AMD_anti_lag",{"number":1559,"type":1548,"author":1549,"provisional":1326,"specialuse":1560,"contact":1561,"extension":1562,"proposal":1326},180,"devtools","Daniel Rakos @drakos-amd","VK_AMD_buffer_marker",{"number":1564,"type":1548,"author":1549,"provisional":1326,"depends":1565,"contact":1552,"extension":1566,"proposal":1326},230,"VK_KHR_get_physical_device_properties2,VK_VERSION_1_1","VK_AMD_device_coherent_memory",{"number":1568,"type":1548,"author":1549,"provisional":1326,"depends":1569,"contact":1570,"extension":1571,"proposal":1326},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":1454,"type":1548,"author":1549,"promotedto":1573,"provisional":1326,"contact":1561,"extension":1574,"proposal":1326},"VK_KHR_draw_indirect_count","VK_AMD_draw_indirect_count",{"number":1423,"type":1548,"author":1549,"provisional":1326,"contact":1576,"extension":1577,"proposal":1326},"Dominik Witczak @dominikwitczakamd","VK_AMD_gcn_shader",{"number":1466,"type":1548,"author":1549,"deprecatedby":1579,"provisional":1326,"contact":1576,"extension":1580,"proposal":1326},"VK_KHR_shader_float16_int8","VK_AMD_gpu_shader_half_float",{"number":1582,"type":1548,"author":1549,"deprecatedby":1579,"provisional":1326,"contact":1583,"extension":1584,"proposal":1326},133,"Qun Lin @linqun","VK_AMD_gpu_shader_int16",{"number":1586,"type":1548,"author":1549,"provisional":1326,"contact":1587,"extension":1588,"proposal":1326},190,"Martin Dinkov @mdinkov","VK_AMD_memory_overallocation_behavior",{"number":1590,"type":1548,"author":1549,"provisional":1326,"contact":1570,"extension":1591,"proposal":1326},137,"VK_AMD_mixed_attachment_samples",{"number":1462,"type":1548,"author":1549,"obsoletedby":1593,"provisional":1326,"contact":1570,"extension":1594,"proposal":1326},"VK_KHR_maintenance1","VK_AMD_negative_viewport_height",{"number":1596,"type":1548,"author":1549,"provisional":1326,"contact":1570,"extension":1597,"proposal":1326},184,"VK_AMD_pipeline_compiler_control",{"number":1395,"type":1548,"author":1549,"provisional":1326,"contact":1561,"extension":1599,"proposal":1326},"VK_AMD_rasterization_order",{"number":1470,"type":1548,"author":1549,"provisional":1326,"contact":1576,"extension":1601,"proposal":1326},"VK_AMD_shader_ballot",{"number":1603,"type":1548,"author":1549,"provisional":1326,"depends":1565,"contact":1587,"extension":1604,"proposal":1326},186,"VK_AMD_shader_core_properties",{"number":1606,"type":1548,"author":1549,"provisional":1326,"depends":1604,"contact":1570,"extension":1607,"proposal":1326},228,"VK_AMD_shader_core_properties2",{"number":1609,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1552,"extension":1611,"proposal":1520},322,"EXT","VK_AMD_shader_early_and_late_fragment_tests",{"number":1407,"type":1548,"author":1549,"provisional":1326,"contact":1583,"extension":1613,"proposal":1326},"VK_AMD_shader_explicit_vertex_parameter",{"number":1615,"type":1548,"author":1549,"provisional":1326,"contact":1616,"extension":1617,"proposal":1326},138,"Aaron Hagan @AaronHaganAMD","VK_AMD_shader_fragment_mask",{"number":1506,"type":1548,"author":1549,"provisional":1326,"contact":1576,"extension":1619,"proposal":1326},"VK_AMD_shader_image_load_store_lod",{"number":1490,"type":1548,"author":1549,"provisional":1326,"specialuse":1560,"contact":1621,"extension":1622,"proposal":1326},"Jaakko Konttinen @jaakkoamd","VK_AMD_shader_info",{"number":1403,"type":1548,"author":1549,"provisional":1326,"contact":1583,"extension":1624,"proposal":1326},"VK_AMD_shader_trinary_minmax",{"number":1486,"type":1548,"author":1549,"provisional":1326,"depends":1565,"contact":1626,"extension":1627,"proposal":1326},"Rex Xu @amdrexu","VK_AMD_texture_gather_bias_lod",{"number":1629,"type":1548,"author":1630,"provisional":1326,"depends":1631,"platform":1632,"specialuse":1633,"contact":1634,"extension":1635,"proposal":1520},469,"ANDROID","VK_ANDROID_external_memory_android_hardware_buffer","android","glemulation","Chris Forbes @chrisforbes","VK_ANDROID_external_format_resolve",{"number":1637,"type":1548,"author":1630,"provisional":1326,"depends":1638,"platform":1632,"contact":1639,"extension":1631,"proposal":1326},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":1641,"type":1548,"author":1642,"promotedto":1643,"provisional":1326,"depends":1565,"contact":1644,"extension":1645,"proposal":1326},343,"ARM","VK_EXT_rasterization_order_attachment_access","Jan-Harald Fredriksen @janharaldfredriksen-arm","VK_ARM_rasterization_order_attachment_access",{"number":1647,"type":1548,"author":1642,"provisional":1326,"depends":1648,"contact":1644,"extension":1649,"proposal":1520},425,"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_synchronization2),VK_VERSION_1_3","VK_ARM_render_pass_striped",{"number":1651,"type":1548,"author":1642,"provisional":1326,"depends":1652,"contact":1653,"extension":1654,"proposal":1326},418,"VK_ARM_shader_core_builtins","Kevin Petit @kpet","VK_ARM_scheduling_controls",{"number":1656,"type":1548,"author":1642,"provisional":1326,"depends":1565,"contact":1653,"extension":1652,"proposal":1326},498,{"number":1658,"type":1548,"author":1642,"provisional":1326,"depends":1659,"contact":1644,"extension":1660,"proposal":1326},416,"VK_VERSION_1_1","VK_ARM_shader_core_properties",{"number":1662,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1665,"extension":1666,"proposal":1326},341,"VK_VERSION_1_3","vulkansc","Joshua Ashton @Joshua-Ashton","VK_EXT_4444_formats",{"number":1668,"type":1669,"author":1610,"provisional":1326,"depends":1670,"contact":1671,"extension":1672,"proposal":1326},286,"instance","VK_EXT_direct_mode_display","Drew DeVault sir@cmpwn.com","VK_EXT_acquire_drm_display",{"number":1674,"type":1669,"author":1675,"provisional":1326,"depends":1670,"platform":1676,"contact":1677,"extension":1678,"proposal":1326},90,"NV","xlib_xrandr","James Jones @cubanismo","VK_EXT_acquire_xlib_display",{"extension":1680,"proposal":1326},"VK_EXT_application_parameters",{"number":1682,"type":1548,"author":1642,"provisional":1326,"depends":1565,"contact":1644,"extension":1683,"proposal":1326},68,"VK_EXT_astc_decode_mode",{"number":1685,"type":1548,"author":1610,"provisional":1326,"depends":1686,"ratified":1687,"contact":1688,"extension":1689,"proposal":1520},525,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_attachment_feedback_loop_layout","vulkan","Mike Blumenkrantz @zmike","VK_EXT_attachment_feedback_loop_dynamic_state",{"number":1691,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1665,"extension":1692,"proposal":1520},340,"VK_EXT_attachment_feedback_loop_layout",{"number":1694,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":1696,"proposal":1326},149,"Jeff Bolz @jeffbolznv","VK_EXT_blend_operation_advanced",{"number":1698,"type":1548,"author":1610,"provisional":1326,"depends":1699,"specialuse":1700,"contact":1701,"extension":1702,"proposal":1326},412,"VK_EXT_custom_border_color","glemulation,d3demulation","Piers Daniell @pdaniell-nv","VK_EXT_border_color_swizzle",{"number":1704,"type":1548,"author":1675,"deprecatedby":1705,"provisional":1326,"depends":1565,"contact":1695,"extension":1706,"proposal":1326},245,"VK_KHR_buffer_device_address","VK_EXT_buffer_device_address",{"number":1708,"type":1548,"author":1610,"promotedto":1709,"provisional":1326,"depends":1565,"contact":1561,"extension":1710,"proposal":1520},185,"VK_KHR_calibrated_timestamps","VK_EXT_calibrated_timestamps",{"number":1712,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1713,"contact":1714,"extension":1715,"proposal":1326},382,"vulkan,vulkansc","Sharif Elcott @selcott","VK_EXT_color_write_enable",{"number":1717,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":1718,"extension":1719,"proposal":1326},82,"Vikram Kushwaha @vkushwaha","VK_EXT_conditional_rendering",{"number":1721,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1687,"contact":1701,"extension":1722,"proposal":1326},102,"VK_EXT_conservative_rasterization",{"number":1724,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1713,"specialuse":1700,"contact":1725,"extension":1699,"proposal":1326},288,"Liam Middlebrook @liam-middlebrook",{"number":1411,"type":1548,"author":1727,"promotedto":1728,"provisional":1326,"depends":1729,"specialuse":1516,"contact":1730,"extension":1731,"proposal":1326},"Baldur Karlsson","VK_EXT_debug_utils","VK_EXT_debug_report","Baldur Karlsson @baldurk","VK_EXT_debug_marker",{"number":1367,"type":1669,"author":1733,"deprecatedby":1728,"provisional":1326,"specialuse":1516,"contact":1734,"extension":1729,"proposal":1326},"GOOGLE","Courtney Goeltzenleuchter @courtney-g",{"number":1736,"type":1669,"author":1610,"provisional":1326,"specialuse":1516,"contact":1737,"extension":1728,"proposal":1326},129,"Mark Young @marky-lunarg",{"number":1739,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1740,"contact":1665,"extension":1741,"proposal":1520},284,"d3demulation","VK_EXT_depth_bias_control",{"number":1743,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1744,"extension":1745,"proposal":1326},422,"Graeme Leese @gnl21","VK_EXT_depth_clamp_zero_one",{"number":1747,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1633,"contact":1748,"extension":1749,"proposal":1326},356,"Shahbaz Youssefi @syoussefi","VK_EXT_depth_clip_control",{"number":1751,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1713,"specialuse":1740,"contact":1701,"extension":1752,"proposal":1326},103,"VK_EXT_depth_clip_enable",{"number":1375,"type":1548,"author":1675,"provisional":1326,"ratified":1713,"contact":1701,"extension":1754,"proposal":1326},"VK_EXT_depth_range_unrestricted",{"number":1756,"type":1548,"author":1610,"provisional":1326,"depends":1757,"contact":1552,"extension":1758,"proposal":1520},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":1760,"type":1548,"author":1675,"promotedto":1761,"provisional":1326,"depends":1762,"contact":1695,"extension":1763,"proposal":1326},162,"VK_VERSION_1_2","(VK_KHR_get_physical_device_properties2+VK_KHR_maintenance3),VK_VERSION_1_1","VK_EXT_descriptor_indexing",{"number":1765,"type":1548,"author":1610,"provisional":1326,"depends":1766,"specialuse":1767,"contact":1768,"extension":1769,"proposal":1326},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":1771,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1768,"extension":1772,"proposal":1520},342,"VK_EXT_device_fault",{"number":1774,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1560,"contact":1775,"extension":1776,"proposal":1326},285,"Yiwei Zhang @zhangyiwei","VK_EXT_device_memory_report",{"number":1778,"type":1669,"author":1675,"provisional":1326,"depends":1779,"contact":1677,"extension":1670,"proposal":1326},89,"VK_KHR_display",{"number":1781,"type":1669,"author":1610,"provisional":1326,"depends":1782,"platform":1783,"contact":1784,"extension":1785,"proposal":1326},347,"VK_KHR_surface","directfb","Nicolas Caramelli @caramelli","VK_EXT_directfb_surface",{"number":1787,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1713,"contact":1701,"extension":1788,"proposal":1326},100,"VK_EXT_discard_rectangles",{"number":1790,"type":1548,"author":1675,"provisional":1326,"depends":1791,"ratified":1687,"contact":1677,"extension":1792,"proposal":1326},92,"VK_EXT_display_surface_counter+VK_KHR_swapchain","VK_EXT_display_control",{"number":1794,"type":1669,"author":1675,"provisional":1326,"depends":1779,"ratified":1687,"contact":1677,"extension":1795,"proposal":1326},91,"VK_EXT_display_surface_counter",{"number":1797,"type":1548,"author":1610,"provisional":1326,"depends":1798,"ratified":1687,"contact":1701,"extension":1799,"proposal":1520},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":1801,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1701,"extension":1802,"proposal":1326},268,"VK_EXT_extended_dynamic_state",{"number":1804,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1805,"extension":1806,"proposal":1326},378,"Vikram Kushwaha @vkushwaha-nv","VK_EXT_extended_dynamic_state2",{"number":1808,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1687,"contact":1701,"extension":1809,"proposal":1520},456,"VK_EXT_extended_dynamic_state3",{"number":1811,"type":1548,"author":1610,"provisional":1326,"depends":1812,"ratified":1687,"contact":1813,"extension":1814,"proposal":1520},454,"VK_KHR_external_memory,VK_VERSION_1_1","Lina Versace @versalinyaa","VK_EXT_external_memory_acquire_unmodified",{"number":1816,"type":1548,"author":1610,"provisional":1326,"depends":1817,"ratified":1713,"contact":1813,"extension":1818,"proposal":1326},126,"VK_KHR_external_memory_fd","VK_EXT_external_memory_dma_buf",{"number":1820,"type":1548,"author":1610,"provisional":1326,"depends":1812,"ratified":1713,"contact":1561,"extension":1821,"proposal":1326},179,"VK_EXT_external_memory_host",{"number":1823,"type":1548,"author":1824,"provisional":1326,"ratified":1687,"contact":1825,"extension":1826,"proposal":1326},171,"QCOM","Matthew Netsch @mnetsch","VK_EXT_filter_cubic",{"number":1828,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1825,"extension":1829,"proposal":1326},219,"VK_EXT_fragment_density_map",{"number":1831,"type":1548,"author":1610,"provisional":1326,"depends":1829,"contact":1825,"extension":1832,"proposal":1326},333,"VK_EXT_fragment_density_map2",{"number":1834,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1701,"extension":1835,"proposal":1326},252,"VK_EXT_fragment_shader_interlock",{"number":1837,"type":1548,"author":1610,"provisional":1326,"ratified":1687,"contact":1838,"extension":1839,"proposal":1520},376,"James Fitzpatrick @jamesfitzpatrick","VK_EXT_frame_boundary",{"number":1841,"type":1548,"author":1610,"provisional":1326,"depends":1842,"platform":1843,"ratified":1687,"contact":1677,"extension":1844,"proposal":1326},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":1846,"type":1548,"author":1610,"promotedto":1847,"provisional":1326,"contact":1848,"extension":1849,"proposal":1326},175,"VK_KHR_global_priority","Andres Rodriguez @lostgoat","VK_EXT_global_priority",{"number":1851,"type":1548,"author":1610,"promotedto":1847,"provisional":1326,"depends":1852,"contact":1775,"extension":1853,"proposal":1326},389,"VK_EXT_global_priority+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","VK_EXT_global_priority_query",{"number":1855,"type":1548,"author":1549,"provisional":1326,"depends":1856,"contact":1552,"extension":1857,"proposal":1520},321,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_pipeline_library","VK_EXT_graphics_pipeline_library",{"number":1859,"type":1548,"author":1733,"provisional":1326,"depends":1860,"ratified":1713,"contact":1734,"extension":1861,"proposal":1326},106,"VK_KHR_swapchain","VK_EXT_hdr_metadata",{"number":1863,"type":1669,"author":1610,"provisional":1326,"depends":1782,"contact":1864,"extension":1865,"proposal":1326},257,"Lisa Wu @chengtianww","VK_EXT_headless_surface",{"number":1867,"type":1548,"author":1610,"provisional":1326,"depends":1868,"ratified":1687,"contact":1748,"extension":1869,"proposal":1520},271,"((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":1871,"type":1548,"author":1610,"promotedto":1761,"provisional":1326,"depends":1565,"contact":1872,"extension":1873,"proposal":1326},262,"Bas Nieuwenhuizen @BNieuwenhuizen","VK_EXT_host_query_reset",{"number":1875,"type":1548,"author":1610,"provisional":1326,"depends":1876,"specialuse":1633,"contact":1688,"extension":1877,"proposal":1326},394,"(VK_KHR_maintenance1+VK_KHR_get_physical_device_properties2),VK_VERSION_1_1","VK_EXT_image_2d_view_of_3d",{"number":1879,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1644,"extension":1880,"proposal":1520},339,"VK_EXT_image_compression_control",{"number":1882,"type":1548,"author":1610,"provisional":1326,"depends":1880,"contact":1644,"extension":1883,"proposal":1326},438,"VK_EXT_image_compression_control_swapchain",{"number":1885,"type":1548,"author":1610,"provisional":1326,"depends":1886,"ratified":1687,"contact":1813,"extension":1887,"proposal":1326},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":1889,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1744,"extension":1890,"proposal":1326},336,"VK_EXT_image_robustness",{"number":1892,"type":1548,"author":1610,"provisional":1326,"depends":1876,"specialuse":1740,"contact":1688,"extension":1893,"proposal":1520},419,"VK_EXT_image_sliced_view_of_3d",{"number":1895,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1665,"extension":1896,"proposal":1326},392,"VK_EXT_image_view_min_lod",{"number":1898,"type":1548,"author":1610,"promotedto":1899,"provisional":1326,"depends":1565,"contact":1701,"extension":1900,"proposal":1326},266,"VK_KHR_index_type_uint8","VK_EXT_index_type_uint8",{"number":1902,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1903,"contact":1904,"extension":1905,"proposal":1326},139,"(VK_KHR_get_physical_device_properties2+VK_KHR_maintenance1),VK_VERSION_1_1","Daniel Rakos @aqnuep","VK_EXT_inline_uniform_block",{"number":1907,"type":1669,"author":1610,"provisional":1326,"ratified":1687,"contact":1908,"extension":1909,"proposal":1520},497,"Christophe Riccio @christophe","VK_EXT_layer_settings",{"number":1911,"type":1548,"author":1610,"provisional":1326,"depends":1565,"specialuse":1633,"contact":1748,"extension":1912,"proposal":1520},466,"VK_EXT_legacy_dithering",{"number":1914,"type":1548,"author":1610,"provisional":1326,"depends":1915,"ratified":1687,"specialuse":1633,"contact":1688,"extension":1916,"proposal":1520},496,"VK_EXT_vertex_input_dynamic_state","VK_EXT_legacy_vertex_attributes",{"number":1918,"type":1548,"author":1610,"promotedto":1919,"provisional":1326,"depends":1565,"specialuse":1920,"contact":1695,"extension":1921,"proposal":1326},260,"VK_KHR_line_rasterization","cadsupport","VK_EXT_line_rasterization",{"number":1923,"type":1548,"author":1610,"promotedto":1924,"provisional":1326,"ratified":1687,"contact":1748,"extension":1925,"proposal":1326},401,"VK_KHR_load_store_op_none","VK_EXT_load_store_op_none",{"number":1927,"type":1548,"author":1610,"provisional":1326,"depends":1928,"ratified":1687,"contact":1929,"extension":1930,"proposal":1520},273,"VK_KHR_map_memory2","Faith Ekstrand @gfxstrand","VK_EXT_map_memory_placed",{"number":1932,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":1933,"proposal":1326},238,"VK_EXT_memory_budget",{"number":1935,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":1936,"proposal":1326},239,"VK_EXT_memory_priority",{"number":1938,"type":1548,"author":1610,"provisional":1326,"depends":1939,"contact":1940,"extension":1941,"proposal":1520},329,"VK_KHR_spirv_1_4","Christoph Kubisch @pixeljetstream","VK_EXT_mesh_shader",{"number":1943,"type":1548,"author":1610,"provisional":1326,"platform":1944,"contact":1945,"extension":1946,"proposal":1520},312,"metal","Bill Hollings @billhollings","VK_EXT_metal_objects",{"number":1948,"type":1669,"author":1610,"provisional":1326,"depends":1782,"platform":1944,"contact":1949,"extension":1950,"proposal":1326},218,"Dzmitry Malyshau @kvark","VK_EXT_metal_surface",{"number":1952,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1688,"extension":1953,"proposal":1326},393,"VK_EXT_multi_draw",{"number":1955,"type":1548,"author":1610,"provisional":1326,"depends":1956,"contact":1748,"extension":1957,"proposal":1520},377,"(VK_KHR_create_renderpass2+VK_KHR_depth_stencil_resolve),VK_VERSION_1_2","VK_EXT_multisampled_render_to_single_sampled",{"number":1959,"type":1548,"author":1610,"provisional":1326,"depends":1960,"specialuse":1740,"contact":1961,"extension":1962,"proposal":1520},495,"VK_KHR_maintenance3","Joshua Ashton @Joshua-Ashton,Hans-Kristian Arntzen @HansKristian-Work","VK_EXT_mutable_descriptor_type",{"number":1964,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1701,"extension":1965,"proposal":1326},452,"VK_EXT_nested_command_buffer",{"number":1967,"type":1548,"author":1610,"provisional":1326,"depends":1565,"specialuse":1968,"contact":1969,"extension":1970,"proposal":1520},423,"d3demulation,glemulation","Georg Lehmann @DadSchoorse","VK_EXT_non_seamless_cube_map",{"number":1972,"type":1548,"author":1610,"provisional":1326,"depends":1973,"ratified":1687,"contact":1974,"extension":1975,"proposal":1520},397,"VK_KHR_acceleration_structure+(VK_KHR_synchronization2,VK_VERSION_1_3)","Christoph Kubisch @pixeljetstream, Eric Werness","VK_EXT_opacity_micromap",{"number":1977,"type":1548,"author":1610,"provisional":1326,"depends":1936,"contact":1701,"extension":1978,"proposal":1326},413,"VK_EXT_pageable_device_local_memory",{"number":1980,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1713,"contact":1570,"extension":1981,"proposal":1326},213,"VK_EXT_pci_bus_info",{"number":1983,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1984,"extension":1985,"proposal":1326},354,"Simon Ser @emersion","VK_EXT_physical_device_drm",{"number":1987,"type":1548,"author":1549,"promotedto":1663,"provisional":1326,"depends":1565,"contact":1988,"extension":1989,"proposal":1326},298,"Gregory Grebe @grgrebe_amd","VK_EXT_pipeline_creation_cache_control",{"number":1991,"type":1548,"author":1733,"promotedto":1663,"provisional":1326,"specialuse":1560,"contact":1992,"extension":1993,"proposal":1326},193,"Jean-Francois Roy @jfroy","VK_EXT_pipeline_creation_feedback",{"number":1995,"type":1548,"author":1610,"provisional":1326,"depends":1996,"contact":1997,"extension":1998,"proposal":1520},499,"VK_KHR_ray_tracing_pipeline+VK_KHR_pipeline_library","Hans-Kristian Arntzen @HansKristian-Work","VK_EXT_pipeline_library_group_handles",{"number":2000,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":2001,"extension":2002,"proposal":1326},373,"Mukund Keshava @mkeshavanv","VK_EXT_pipeline_properties",{"number":2004,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":1748,"extension":2005,"proposal":1520},467,"VK_EXT_pipeline_protected_access",{"number":2007,"type":1548,"author":2008,"provisional":1326,"depends":1565,"contact":2009,"extension":2010,"proposal":1326},69,"IMG","Jarred Davies","VK_EXT_pipeline_robustness",{"number":2012,"type":1548,"author":1675,"provisional":1326,"ratified":1687,"contact":2013,"extension":2014,"proposal":1326},156,"Daniel Koch @dgkoch","VK_EXT_post_depth_coverage",{"number":2016,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1633,"contact":1748,"extension":2017,"proposal":1326},357,"VK_EXT_primitive_topology_list_restart",{"number":2019,"type":1548,"author":1610,"provisional":1326,"depends":2020,"specialuse":1633,"contact":1748,"extension":2021,"proposal":1520},383,"VK_EXT_transform_feedback","VK_EXT_primitives_generated_query",{"number":2023,"type":1548,"author":1675,"promotedto":1663,"provisional":1326,"depends":1565,"contact":2024,"extension":2025,"proposal":1326},296,"Matthew Rusch @mattruschnv","VK_EXT_private_data",{"number":2027,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1633,"contact":2028,"extension":2029,"proposal":1326},255,"Jesse Hall @jessehall","VK_EXT_provoking_vertex",{"number":2031,"type":1548,"author":1610,"provisional":1326,"depends":1812,"ratified":1713,"contact":1813,"extension":2032,"proposal":1326},127,"VK_EXT_queue_family_foreign",{"number":2034,"type":1548,"author":1642,"provisional":1326,"depends":1565,"contact":1644,"extension":1643,"proposal":1520},464,{"number":2036,"type":1548,"author":1610,"provisional":1326,"depends":2037,"contact":1644,"extension":2038,"proposal":1326},345,"VK_KHR_sampler_ycbcr_conversion,VK_VERSION_1_1","VK_EXT_rgba10x6_formats",{"number":2040,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1713,"contact":1725,"extension":2041,"proposal":1326},287,"VK_EXT_robustness2",{"number":2043,"type":1548,"author":1549,"provisional":1326,"depends":1565,"ratified":1713,"contact":1561,"extension":2044,"proposal":1326},144,"VK_EXT_sample_locations",{"number":2046,"type":1548,"author":1675,"promotedto":1761,"provisional":1326,"depends":1565,"contact":1695,"extension":2047,"proposal":1326},131,"VK_EXT_sampler_filter_minmax",{"number":2049,"type":1548,"author":1610,"promotedto":1761,"provisional":1326,"depends":1565,"contact":1552,"extension":2050,"proposal":1326},222,"VK_EXT_scalar_block_layout",{"number":2052,"type":1548,"author":1610,"promotedto":1761,"provisional":1326,"contact":1561,"extension":2053,"proposal":1326},247,"VK_EXT_separate_stencil_usage",{"number":2055,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1713,"contact":1805,"extension":2056,"proposal":1326},261,"VK_EXT_shader_atomic_float",{"number":2058,"type":1548,"author":1610,"provisional":1326,"depends":2056,"ratified":1687,"contact":1929,"extension":2059,"proposal":1326},274,"VK_EXT_shader_atomic_float2",{"number":2061,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1695,"extension":2062,"proposal":1326},277,"VK_EXT_shader_demote_to_helper_invocation",{"number":2064,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1552,"extension":2065,"proposal":1326},235,"VK_EXT_shader_image_atomic_int64",{"number":2067,"type":1548,"author":1610,"provisional":1326,"depends":2068,"contact":1997,"extension":2069,"proposal":1520},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":2071,"type":1548,"author":1610,"provisional":1326,"depends":1798,"ratified":1687,"contact":2072,"extension":2073,"proposal":1520},483,"Daniel Story @daniel-story","VK_EXT_shader_object",{"number":2075,"type":1548,"author":1610,"provisional":1326,"ratified":1687,"contact":1653,"extension":2076,"proposal":1520},565,"VK_EXT_shader_replicated_composites",{"number":2078,"type":1548,"author":1610,"provisional":1326,"ratified":1713,"contact":1576,"extension":2079,"proposal":1326},141,"VK_EXT_shader_stencil_export",{"number":2081,"type":1548,"author":1675,"deprecatedby":1761,"provisional":1326,"contact":2013,"extension":2082,"proposal":1326},65,"VK_EXT_shader_subgroup_ballot",{"number":2084,"type":1548,"author":1675,"deprecatedby":1659,"provisional":1326,"contact":2013,"extension":2085,"proposal":1326},66,"VK_EXT_shader_subgroup_vote",{"number":2087,"type":1548,"author":1610,"provisional":1326,"depends":1663,"ratified":1687,"contact":1644,"extension":2088,"proposal":1520},396,"VK_EXT_shader_tile_image",{"number":2090,"type":1548,"author":1675,"promotedto":1761,"provisional":1326,"contact":2013,"extension":2091,"proposal":1326},163,"VK_EXT_shader_viewport_index_layer",{"number":2093,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1659,"ratified":1664,"contact":2094,"extension":2095,"proposal":1326},226,"Neil Henning @sheredom","VK_EXT_subgroup_size_control",{"number":2097,"type":1548,"author":1610,"provisional":1326,"depends":1565,"contact":2098,"extension":2099,"proposal":1520},459,"Ting Wei @catweiting","VK_EXT_subpass_merge_feedback",{"number":2101,"type":1669,"author":1610,"provisional":1326,"depends":2102,"contact":1748,"extension":2103,"proposal":1520},275,"VK_KHR_surface+VK_KHR_get_surface_capabilities2","VK_EXT_surface_maintenance1",{"number":2105,"type":1669,"author":1733,"provisional":1326,"depends":1782,"contact":1734,"extension":2106,"proposal":1326},105,"VK_EXT_swapchain_colorspace",{"number":2108,"type":1548,"author":1610,"provisional":1326,"depends":2109,"contact":1748,"extension":2110,"proposal":1520},276,"VK_KHR_swapchain+VK_EXT_surface_maintenance1+(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)","VK_EXT_swapchain_maintenance1",{"number":2112,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1695,"extension":2113,"proposal":1326},282,"VK_EXT_texel_buffer_alignment",{"number":2115,"type":1548,"author":1642,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1664,"contact":1644,"extension":2116,"proposal":1326},67,"VK_EXT_texture_compression_astc_hdr",{"number":2118,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"contact":1552,"extension":2119,"proposal":1326},246,"VK_EXT_tooling_info",{"number":1434,"type":1548,"author":1675,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":2121,"contact":1701,"extension":2020,"proposal":1326},"glemulation,d3demulation,devtools",{"number":2123,"type":1548,"author":1733,"provisional":1326,"contact":2124,"extension":2125,"proposal":1326},161,"Cort Stratton @cdwfs","VK_EXT_validation_cache",{"number":2127,"type":1669,"author":2128,"deprecatedby":1909,"provisional":1326,"specialuse":1516,"contact":2129,"extension":2130,"proposal":1326},248,"LUNARG","Karl Schultz @karl-lunarg","VK_EXT_validation_features",{"number":2132,"type":1669,"author":1733,"deprecatedby":1909,"provisional":1326,"specialuse":1516,"contact":2133,"extension":2134,"proposal":1326},62,"Tobin Ehlis @tobine","VK_EXT_validation_flags",{"number":2136,"type":1548,"author":1675,"promotedto":2137,"provisional":1326,"depends":1565,"contact":1718,"extension":2138,"proposal":1326},191,"VK_KHR_vertex_attribute_divisor","VK_EXT_vertex_attribute_divisor",{"number":2140,"type":1548,"author":1610,"provisional":1326,"depends":1565,"ratified":1687,"contact":1701,"extension":1915,"proposal":1326},353,{"number":2142,"type":1548,"author":1610,"promotedto":1663,"provisional":1326,"depends":2037,"ratified":1664,"contact":2143,"extension":2144,"proposal":1326},331,"Tony Zlatinski @tzlatinski","VK_EXT_ycbcr_2plane_444_formats",{"number":2146,"type":1548,"author":1610,"provisional":1326,"depends":2037,"ratified":1713,"contact":1701,"extension":2147,"proposal":1326},253,"VK_EXT_ycbcr_image_arrays",{"number":2149,"type":1548,"author":2150,"provisional":1326,"depends":2151,"platform":2152,"contact":2153,"extension":2154,"proposal":1326},367,"FUCHSIA","VK_FUCHSIA_external_memory+(VK_KHR_sampler_ycbcr_conversion,VK_VERSION_1_1)","fuchsia","John Rosasco @rosasco","VK_FUCHSIA_buffer_collection",{"number":2156,"type":1548,"author":2150,"provisional":1326,"depends":2157,"platform":2152,"contact":2153,"extension":2158,"proposal":1326},365,"(VK_KHR_external_memory_capabilities+VK_KHR_external_memory),VK_VERSION_1_1","VK_FUCHSIA_external_memory",{"number":2160,"type":1548,"author":2150,"provisional":1326,"depends":2161,"platform":2152,"contact":2153,"extension":2162,"proposal":1326},366,"VK_KHR_external_semaphore_capabilities+VK_KHR_external_semaphore","VK_FUCHSIA_external_semaphore",{"number":2164,"type":1669,"author":2150,"provisional":1326,"depends":1782,"platform":2152,"contact":2165,"extension":2166,"proposal":1326},215,"Craig Stout @cdotstout","VK_FUCHSIA_imagepipe_surface",{"number":2168,"type":1548,"author":2169,"provisional":1326,"depends":2170,"platform":2171,"contact":1992,"extension":2172,"proposal":1326},192,"GGP","VK_KHR_swapchain+VK_GGP_stream_descriptor_surface","ggp","VK_GGP_frame_token",{"number":2174,"type":1669,"author":2169,"provisional":1326,"depends":1782,"platform":2171,"contact":1992,"extension":2175,"proposal":1326},50,"VK_GGP_stream_descriptor_surface",{"number":2177,"type":1548,"author":1733,"provisional":1326,"contact":2178,"extension":2179,"proposal":1326},225,"Hai Nguyen @chaoticbob","VK_GOOGLE_decorate_string",{"number":2181,"type":1548,"author":1733,"provisional":1326,"depends":1860,"contact":2182,"extension":2183,"proposal":1326},93,"Ian Elliott @ianelliottus","VK_GOOGLE_display_timing",{"number":2185,"type":1548,"author":1733,"provisional":1326,"contact":2178,"extension":2186,"proposal":1326},224,"VK_GOOGLE_hlsl_functionality1",{"number":2188,"type":1669,"author":1733,"provisional":1326,"depends":1782,"specialuse":1633,"contact":1748,"extension":2189,"proposal":1520},434,"VK_GOOGLE_surfaceless_query",{"number":2191,"type":1548,"author":1733,"provisional":1326,"contact":2192,"extension":2193,"proposal":1326},290,"Kaye Mason @chaleur","VK_GOOGLE_user_type",{"number":2195,"type":1548,"author":2196,"provisional":1326,"depends":1565,"contact":2197,"extension":2198,"proposal":1520},405,"HUAWEI","Yuchang Wang @richard_Wang2","VK_HUAWEI_cluster_culling_shader",{"number":2200,"type":1548,"author":2201,"provisional":1326,"depends":2202,"contact":2203,"extension":2204,"proposal":1520},371,"Huawei","VK_KHR_ray_tracing_pipeline+(VK_KHR_synchronization2,VK_VERSION_1_3)","Pan Gao @PanGao-h","VK_HUAWEI_invocation_mask",{"number":2206,"type":1548,"author":2196,"provisional":1326,"depends":2207,"contact":2203,"extension":2208,"proposal":1326},370,"((VK_KHR_create_renderpass2,VK_VERSION_1_2)+VK_KHR_synchronization2),VK_VERSION_1_3","VK_HUAWEI_subpass_shading",{"number":1383,"type":1548,"author":2008,"provisional":1326,"contact":1552,"extension":2210,"proposal":1326},"VK_IMG_filter_cubic",{"number":2212,"type":1548,"author":2008,"deprecatedby":2213,"provisional":1326,"contact":2214,"extension":2215,"proposal":1326},55,null,"Stuart Smith","VK_IMG_format_pvrtc",{"number":2217,"type":1548,"author":2008,"provisional":1326,"depends":1565,"specialuse":1633,"contact":1838,"extension":2218,"proposal":1326},111,"VK_IMG_relaxed_line_rasterization",{"number":2220,"type":1548,"author":2221,"provisional":1326,"specialuse":1560,"contact":2222,"extension":2223,"proposal":1326},211,"INTEL","Lionel Landwerlin @llandwerlin","VK_INTEL_performance_query",{"number":2225,"type":1548,"author":2221,"provisional":1326,"depends":1565,"contact":2226,"extension":2227,"proposal":1326},210,"Ian Romanick @ianromanick","VK_INTEL_shader_integer_functions2",{"number":2229,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2231,"ratified":1687,"contact":1644,"extension":2232,"proposal":1326},84,"KHR","(VK_KHR_get_physical_device_properties2+VK_KHR_storage_buffer_storage_class),VK_VERSION_1_1","VK_KHR_16bit_storage",{"number":2234,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2231,"ratified":1687,"contact":2235,"extension":2236,"proposal":1326},178,"Alexander Galazin @alegal-arm","VK_KHR_8bit_storage",{"number":2238,"type":1548,"author":2230,"provisional":1326,"depends":2239,"ratified":1687,"contact":2013,"extension":2240,"proposal":1326},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":1355,"type":1669,"author":2230,"provisional":1326,"depends":1782,"platform":1632,"ratified":1687,"contact":1639,"extension":2242,"proposal":1326},"VK_KHR_android_surface",{"number":2244,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":1552,"extension":2245,"proposal":1326},158,"VK_KHR_bind_memory2",{"number":2247,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2248,"ratified":1687,"contact":1695,"extension":1705,"proposal":1326},258,"(VK_KHR_get_physical_device_properties2+VK_KHR_device_group),VK_VERSION_1_1",{"number":2250,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":1904,"extension":1709,"proposal":1326},544,{"number":2252,"type":1548,"author":2230,"provisional":1326,"depends":2253,"ratified":1687,"contact":2254,"extension":2255,"proposal":1520},512,"VK_KHR_get_physical_device_properties2","Jean-Noe Morissette @MagicPoncho","VK_KHR_compute_shader_derivatives",{"number":2257,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"contact":1653,"extension":2258,"proposal":1520},507,"VK_KHR_cooperative_matrix",{"number":2260,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1713,"contact":1825,"extension":2261,"proposal":1326},338,"VK_KHR_copy_commands2",{"number":2263,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2264,"ratified":1687,"contact":2265,"extension":2266,"proposal":1326},110,"(VK_KHR_multiview+VK_KHR_maintenance2),VK_VERSION_1_1","Tobias Hector @tobias","VK_KHR_create_renderpass2",{"number":2268,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2269,"ratified":1687,"contact":1677,"extension":2270,"proposal":1326},128,"VK_KHR_get_memory_requirements2,VK_VERSION_1_1","VK_KHR_dedicated_allocation",{"number":2272,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":2273,"extension":2274,"proposal":1326},269,"Josh Barczak @jbarczak","VK_KHR_deferred_host_operations",{"number":2276,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2277,"ratified":1687,"contact":2278,"extension":2279,"proposal":1326},200,"VK_KHR_create_renderpass2,VK_VERSION_1_2","Jan-Harald Fredriksen @janharald","VK_KHR_depth_stencil_resolve",{"number":2281,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":2282,"extension":2283,"proposal":1326},86,"Markus Tavenrath @mtavenrath","VK_KHR_descriptor_update_template",{"number":2285,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2286,"ratified":1687,"contact":1695,"extension":2287,"proposal":1326},61,"VK_KHR_device_group_creation","VK_KHR_device_group",{"number":2289,"type":1669,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":1695,"extension":2286,"proposal":1326},71,{"number":199,"type":1669,"author":2230,"provisional":1326,"depends":1782,"ratified":1713,"contact":2291,"extension":1779,"proposal":1326},"James Jones @cubanismo,Norbert Nopper @FslNopper",{"number":213,"type":1548,"author":2230,"provisional":1326,"depends":2293,"ratified":1713,"contact":1677,"extension":2294,"proposal":1326},"VK_KHR_swapchain+VK_KHR_display","VK_KHR_display_swapchain",{"number":2296,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"ratified":1687,"contact":1701,"extension":1573,"proposal":1326},170,{"number":2298,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":1561,"extension":2299,"proposal":1326},197,"VK_KHR_driver_properties",{"number":1498,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":2301,"ratified":1687,"contact":1552,"extension":2302,"proposal":1520},"((VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_KHR_depth_stencil_resolve),VK_VERSION_1_2","VK_KHR_dynamic_rendering",{"number":2304,"type":1548,"author":1549,"provisional":1326,"depends":2305,"ratified":1687,"contact":1552,"extension":2306,"proposal":1520},233,"VK_KHR_dynamic_rendering,VK_VERSION_1_3","VK_KHR_dynamic_rendering_local_read",{"number":2308,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2309,"ratified":1687,"contact":1639,"extension":2310,"proposal":1326},114,"VK_KHR_external_fence_capabilities","VK_KHR_external_fence",{"number":2312,"type":1669,"author":2230,"promotedto":1659,"provisional":1326,"depends":1565,"ratified":1687,"contact":1639,"extension":2309,"proposal":1326},113,{"number":2314,"type":1548,"author":2230,"provisional":1326,"depends":2315,"ratified":1713,"contact":1639,"extension":2316,"proposal":1326},116,"VK_KHR_external_fence,VK_VERSION_1_1","VK_KHR_external_fence_fd",{"number":2318,"type":1548,"author":2230,"provisional":1326,"depends":2310,"platform":1843,"ratified":1687,"contact":1639,"extension":2319,"proposal":1326},115,"VK_KHR_external_fence_win32",{"number":2321,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2322,"ratified":1687,"contact":1677,"extension":2323,"proposal":1326},73,"VK_KHR_external_memory_capabilities,VK_VERSION_1_1","VK_KHR_external_memory",{"number":2325,"type":1669,"author":2230,"promotedto":1659,"provisional":1326,"depends":1565,"ratified":1687,"contact":1677,"extension":2326,"proposal":1326},72,"VK_KHR_external_memory_capabilities",{"number":2328,"type":1548,"author":2230,"provisional":1326,"depends":1812,"ratified":1713,"contact":1677,"extension":1817,"proposal":1326},75,{"number":2330,"type":1548,"author":2230,"provisional":1326,"depends":1812,"platform":1843,"ratified":1687,"contact":1677,"extension":2331,"proposal":1326},74,"VK_KHR_external_memory_win32",{"number":2333,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2334,"ratified":1687,"contact":1677,"extension":2335,"proposal":1326},78,"VK_KHR_external_semaphore_capabilities","VK_KHR_external_semaphore",{"number":2337,"type":1669,"author":2230,"promotedto":1659,"provisional":1326,"depends":1565,"ratified":1687,"contact":1677,"extension":2334,"proposal":1326},77,{"number":2339,"type":1548,"author":2230,"provisional":1326,"depends":2340,"ratified":1713,"contact":1677,"extension":2341,"proposal":1326},80,"VK_KHR_external_semaphore,VK_VERSION_1_1","VK_KHR_external_semaphore_fd",{"number":2343,"type":1548,"author":2230,"provisional":1326,"depends":2335,"platform":1843,"ratified":1687,"contact":1677,"extension":2344,"proposal":1326},79,"VK_KHR_external_semaphore_win32",{"number":2346,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1687,"contact":2222,"extension":2347,"proposal":1326},361,"VK_KHR_format_feature_flags2",{"number":2349,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"contact":1556,"extension":2350,"proposal":1520},323,"VK_KHR_fragment_shader_barycentric",{"number":2352,"type":1548,"author":2230,"provisional":1326,"depends":2353,"ratified":1713,"contact":1552,"extension":2354,"proposal":1520},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":2356,"type":1669,"author":2230,"provisional":1326,"depends":1779,"ratified":1713,"contact":1677,"extension":2357,"proposal":1326},122,"VK_KHR_get_display_properties2",{"number":2359,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":1929,"extension":2360,"proposal":1326},147,"VK_KHR_get_memory_requirements2",{"number":2362,"type":1669,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":1695,"extension":2253,"proposal":1326},60,{"number":2364,"type":1669,"author":2230,"provisional":1326,"depends":1782,"ratified":1713,"contact":1677,"extension":2365,"proposal":1326},120,"VK_KHR_get_surface_capabilities2",{"number":2367,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":1552,"extension":1847,"proposal":1326},189,{"number":2369,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"ratified":1687,"contact":1929,"extension":2370,"proposal":1326},148,"VK_KHR_image_format_list",{"number":2372,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2373,"ratified":1687,"contact":2265,"extension":2374,"proposal":1326},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":2376,"type":1548,"author":2230,"provisional":1326,"depends":1860,"ratified":1713,"contact":2182,"extension":2377,"proposal":1326},85,"VK_KHR_incremental_present",{"number":2379,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":1701,"extension":1899,"proposal":1326},534,{"number":2381,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":1701,"extension":1919,"proposal":1326},535,{"number":2383,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":1748,"extension":1924,"proposal":1520},527,{"number":2385,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":1701,"extension":1593,"proposal":1326},70,{"number":2387,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":2388,"extension":2389,"proposal":1326},118,"Michael Worcester @michaelworcester","VK_KHR_maintenance2",{"number":2391,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":1960,"proposal":1326},169,{"number":2393,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1659,"ratified":1687,"contact":1701,"extension":2394,"proposal":1326},414,"VK_KHR_maintenance4",{"number":2396,"type":1548,"author":2230,"provisional":1326,"depends":2397,"ratified":1687,"contact":2398,"extension":2399,"proposal":1520},471,"(VK_VERSION_1_1+VK_KHR_dynamic_rendering),VK_VERSION_1_3","Stu Smith @stu-s","VK_KHR_maintenance5",{"number":2401,"type":1548,"author":2230,"provisional":1326,"depends":1659,"ratified":1687,"contact":2402,"extension":2403,"proposal":1520},546,"Jon Leech @oddhack","VK_KHR_maintenance6",{"number":2405,"type":1548,"author":2230,"provisional":1326,"depends":1659,"ratified":1687,"contact":1688,"extension":2406,"proposal":1520},563,"VK_KHR_maintenance7",{"number":2408,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":1929,"extension":1928,"proposal":1520},272,{"number":2410,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":2411,"proposal":1326},54,"VK_KHR_multiview",{"extension":2413,"proposal":1326},"VK_KHR_object_refresh",{"number":2415,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"specialuse":1560,"contact":2416,"extension":2417,"proposal":1326},117,"Alon Or-bach @alonorbach","VK_KHR_performance_query",{"number":2419,"type":1548,"author":2230,"provisional":1326,"depends":2399,"ratified":1687,"contact":2398,"extension":2420,"proposal":1520},484,"VK_KHR_pipeline_binary",{"number":2422,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"specialuse":1560,"contact":1929,"extension":2423,"proposal":1326},270,"VK_KHR_pipeline_executable_properties",{"number":2425,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":1940,"extension":2426,"proposal":1326},291,"VK_KHR_pipeline_library",{"number":2428,"type":1669,"author":2230,"provisional":1326,"ratified":1687,"contact":2429,"extension":2430,"proposal":1326},395,"Charles Giessen @charles-lunarg","VK_KHR_portability_enumeration",{"number":2432,"type":1548,"author":2230,"provisional":1520,"depends":1565,"platform":1551,"ratified":1687,"contact":1945,"extension":2433,"proposal":1326},164,"VK_KHR_portability_subset",{"number":2435,"type":1548,"author":2230,"provisional":1326,"depends":2436,"ratified":1687,"contact":2437,"extension":2438,"proposal":1326},295,"VK_KHR_swapchain+VK_KHR_get_physical_device_properties2,VK_VERSION_1_1","Keith Packard @keithp","VK_KHR_present_id",{"number":2440,"type":1548,"author":2230,"provisional":1326,"depends":2441,"ratified":1687,"contact":2437,"extension":2442,"proposal":1326},249,"VK_KHR_swapchain+VK_KHR_present_id","VK_KHR_present_wait",{"number":2444,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":2445,"proposal":1326},81,"VK_KHR_push_descriptor",{"number":2447,"type":1548,"author":2230,"provisional":1326,"depends":2448,"ratified":1687,"contact":2013,"extension":2449,"proposal":1326},349,"VK_KHR_spirv_1_4+VK_KHR_acceleration_structure","VK_KHR_ray_query",{"number":2451,"type":1548,"author":2230,"provisional":1326,"depends":2240,"ratified":1687,"contact":2013,"extension":2452,"proposal":1326},387,"VK_KHR_ray_tracing_maintenance1",{"number":2454,"type":1548,"author":2230,"provisional":1326,"depends":2448,"ratified":1687,"contact":2013,"extension":2455,"proposal":1326},348,"VK_KHR_ray_tracing_pipeline",{"number":2457,"type":1548,"author":2230,"provisional":1326,"depends":2240,"ratified":1687,"contact":2458,"extension":2459,"proposal":1520},482,"Eric Werness","VK_KHR_ray_tracing_position_fetch",{"number":2461,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":2462,"extension":2463,"proposal":1326},145,"John Kessenich @johnkslang","VK_KHR_relaxed_block_layout",{"number":1379,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"ratified":1687,"contact":1552,"extension":2465,"proposal":1326},"VK_KHR_sampler_mirror_clamp_to_edge",{"number":2467,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2468,"ratified":1687,"contact":2469,"extension":2470,"proposal":1326},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":2472,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2353,"ratified":1687,"contact":1701,"extension":2473,"proposal":1326},242,"VK_KHR_separate_depth_stencil_layouts",{"number":2475,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":2476,"extension":2477,"proposal":1326},181,"Aaron Hagan @ahagan","VK_KHR_shader_atomic_int64",{"number":2479,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":2476,"extension":2480,"proposal":1326},182,"VK_KHR_shader_clock",{"number":2482,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":2013,"extension":2483,"proposal":1326},64,"VK_KHR_shader_draw_parameters",{"number":2485,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"contact":1653,"extension":2486,"proposal":1520},545,"VK_KHR_shader_expect_assume",{"number":2488,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":2235,"extension":1579,"proposal":1326},83,{"number":2490,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":2235,"extension":2491,"proposal":1326},198,"VK_KHR_shader_float_controls",{"number":2493,"type":1548,"author":2230,"provisional":1326,"depends":2494,"ratified":1687,"contact":1744,"extension":2495,"proposal":1520},529,"VK_VERSION_1_1+VK_KHR_shader_float_controls","VK_KHR_shader_float_controls2",{"number":2497,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1687,"contact":1653,"extension":2498,"proposal":1520},281,"VK_KHR_shader_integer_dot_product",{"number":2500,"type":1548,"author":2230,"provisional":1326,"depends":1659,"ratified":1687,"contact":2501,"extension":2502,"proposal":1520},435,"Alan Baker @alan-baker","VK_KHR_shader_maximal_reconvergence",{"number":2504,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"ratified":1687,"contact":1730,"extension":2505,"proposal":1326},294,"VK_KHR_shader_non_semantic_info",{"number":2507,"type":1548,"author":2230,"provisional":1326,"depends":2508,"ratified":1687,"contact":1552,"extension":2509,"proposal":1520},236,"VK_VERSION_1_1+VK_KHR_vulkan_memory_model+VK_KHR_shader_maximal_reconvergence","VK_KHR_shader_quad_control",{"number":2511,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":2512,"extension":2513,"proposal":1520},559,"Nathan Gauër @Keenuts","VK_KHR_shader_relaxed_extended_instruction",{"number":2515,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1659,"ratified":1687,"contact":2094,"extension":2516,"proposal":1326},176,"VK_KHR_shader_subgroup_extended_types",{"number":2518,"type":1548,"author":2230,"provisional":1326,"ratified":1687,"contact":1653,"extension":2519,"proposal":1520},417,"VK_KHR_shader_subgroup_rotate",{"number":2521,"type":1548,"author":2230,"provisional":1326,"depends":1659,"ratified":1687,"contact":2501,"extension":2522,"proposal":1326},324,"VK_KHR_shader_subgroup_uniform_control_flow",{"number":2524,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1713,"contact":1639,"extension":2525,"proposal":1326},216,"VK_KHR_shader_terminate_invocation",{"number":2527,"type":1548,"author":2230,"provisional":1326,"depends":2528,"ratified":1713,"contact":2416,"extension":2529,"proposal":1326},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":2531,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":2494,"ratified":1687,"contact":1639,"extension":1939,"proposal":1326},237,{"number":2533,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"ratified":1687,"contact":2235,"extension":2534,"proposal":1326},132,"VK_KHR_storage_buffer_storage_class",{"number":169,"type":1669,"author":2230,"provisional":1326,"ratified":1713,"contact":2536,"extension":1782,"proposal":1326},"James Jones @cubanismo,Ian Elliott @ianelliottus",{"number":2538,"type":1669,"author":2230,"provisional":1326,"depends":2539,"ratified":1687,"contact":2540,"extension":2541,"proposal":1326},240,"VK_VERSION_1_1+VK_KHR_get_surface_capabilities2","Sandeep Shinde @sashinde","VK_KHR_surface_protected_capabilities",{"number":190,"type":1548,"author":2230,"provisional":1326,"depends":1782,"ratified":1713,"contact":2536,"extension":1860,"proposal":1326},{"number":2544,"type":1548,"author":2230,"provisional":1326,"depends":2545,"ratified":1713,"contact":1561,"extension":2546,"proposal":1326},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":2548,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1713,"contact":1552,"extension":2549,"proposal":1326},315,"VK_KHR_synchronization2",{"number":2551,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":1929,"extension":2552,"proposal":1326},208,"VK_KHR_timeline_semaphore",{"number":2554,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":1744,"extension":2555,"proposal":1326},254,"VK_KHR_uniform_buffer_standard_layout",{"number":2557,"type":1548,"author":2230,"promotedto":1659,"provisional":1326,"depends":2231,"ratified":1687,"contact":1639,"extension":2558,"proposal":1326},121,"VK_KHR_variable_pointers",{"number":2560,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1713,"contact":1748,"extension":2137,"proposal":1520},526,{"number":2562,"type":1548,"author":2230,"provisional":1326,"depends":2563,"ratified":1687,"contact":1904,"extension":2564,"proposal":1520},513,"VK_KHR_video_decode_queue","VK_KHR_video_decode_av1",{"number":1482,"type":1548,"author":2230,"provisional":1326,"depends":2563,"ratified":1687,"contact":2566,"extension":2567,"proposal":1520},"peter.fang@amd.com","VK_KHR_video_decode_h264",{"number":2569,"type":1548,"author":2230,"provisional":1326,"depends":2563,"ratified":1687,"contact":2566,"extension":2570,"proposal":1520},188,"VK_KHR_video_decode_h265",{"number":1419,"type":1548,"author":2230,"provisional":1326,"depends":2572,"ratified":1687,"contact":2573,"extension":2563,"proposal":1520},"VK_KHR_video_queue+(VK_KHR_synchronization2,VK_VERSION_1_3)","jake.beju@amd.com",{"number":1474,"type":1548,"author":2230,"provisional":1326,"depends":2575,"ratified":1687,"contact":2576,"extension":2577,"proposal":1520},"VK_KHR_video_encode_queue","Ahmed Abdelkhalek @aabdelkh","VK_KHR_video_encode_h264",{"number":1478,"type":1548,"author":2230,"provisional":1326,"depends":2575,"ratified":1687,"contact":2576,"extension":2579,"proposal":1520},"VK_KHR_video_encode_h265",{"number":2581,"type":1548,"author":2230,"provisional":1326,"depends":2572,"ratified":1687,"contact":2576,"extension":2575,"proposal":1520},300,{"number":2583,"type":1548,"author":2230,"provisional":1326,"depends":2584,"ratified":1687,"contact":1904,"extension":2585,"proposal":1520},516,"VK_KHR_video_queue","VK_KHR_video_maintenance1",{"number":1415,"type":1548,"author":2230,"provisional":1326,"depends":2587,"ratified":1687,"contact":2143,"extension":2584,"proposal":1520},"(VK_VERSION_1_1+VK_KHR_synchronization2),VK_VERSION_1_3",{"number":2589,"type":1548,"author":2230,"promotedto":1761,"provisional":1326,"depends":1565,"ratified":1687,"contact":1695,"extension":2590,"proposal":1326},212,"VK_KHR_vulkan_memory_model",{"number":1347,"type":1669,"author":2230,"provisional":1326,"depends":1782,"platform":2592,"ratified":1687,"contact":2593,"extension":2594,"proposal":1326},"wayland","Jesse Hall @critsec,Ian Elliott @ianelliottus","VK_KHR_wayland_surface",{"number":2596,"type":1548,"author":2230,"provisional":1326,"depends":2331,"platform":1843,"ratified":1687,"contact":2597,"extension":2598,"proposal":1326},76,"Carsten Rohde @crohde","VK_KHR_win32_keyed_mutex",{"number":1359,"type":1669,"author":2230,"provisional":1326,"depends":1782,"platform":1843,"ratified":1687,"contact":2593,"extension":2600,"proposal":1326},"VK_KHR_win32_surface",{"number":2602,"type":1548,"author":2230,"provisional":1326,"depends":1565,"ratified":1687,"contact":2603,"extension":2604,"proposal":1326},337,"Caio Marcelo de Oliveira Filho @cmarcelo","VK_KHR_workgroup_memory_explicit_layout",{"number":1343,"type":1669,"author":2230,"provisional":1326,"depends":1782,"platform":2606,"ratified":1687,"contact":2593,"extension":2607,"proposal":1326},"xcb","VK_KHR_xcb_surface",{"number":222,"type":1669,"author":2230,"provisional":1326,"depends":1782,"platform":2609,"ratified":1687,"contact":2593,"extension":2610,"proposal":1326},"xlib","VK_KHR_xlib_surface",{"number":2612,"type":1548,"author":2230,"promotedto":1663,"provisional":1326,"depends":1565,"ratified":1687,"contact":2501,"extension":2613,"proposal":1326},326,"VK_KHR_zero_initialize_workgroup_memory",{"number":2615,"type":1669,"author":2128,"provisional":1326,"contact":2429,"extension":2616,"proposal":1520},460,"VK_LUNARG_direct_driver_loading",{"number":2618,"type":1548,"author":2619,"provisional":1326,"depends":1565,"specialuse":1740,"contact":1997,"extension":2620,"proposal":1326},576,"MESA","VK_MESA_image_alignment_control",{"number":2622,"type":1548,"author":2623,"provisional":1326,"depends":1565,"contact":2624,"extension":2625,"proposal":1520},531,"MSFT","Jesse Natalie @jenatali","VK_MSFT_layered_driver",{"number":2627,"type":1669,"author":2628,"deprecatedby":1950,"provisional":1326,"depends":1782,"platform":2629,"contact":1945,"extension":2630,"proposal":1326},123,"MVK","ios","VK_MVK_ios_surface",{"number":2632,"type":1669,"author":2628,"deprecatedby":1950,"provisional":1326,"depends":1782,"platform":2633,"contact":1945,"extension":2634,"proposal":1326},124,"macos","VK_MVK_macos_surface",{"number":2636,"type":1669,"author":2637,"provisional":1326,"depends":1782,"platform":2638,"contact":2639,"extension":2640,"proposal":1326},63,"NN","vi","Mathias Heyer gitlab:@mheyer","VK_NN_vi_surface",{"number":1438,"type":1548,"author":2642,"provisional":1326,"contact":2643,"extension":2644,"proposal":1326},"NVX","Eric Werness @ewerness-nv,Liam Middlebrook @liam-middlebrook","VK_NVX_binary_import",{"number":1442,"type":1548,"author":2642,"provisional":1326,"contact":2646,"extension":2647,"proposal":1326},"Eric Werness @ewerness-nv","VK_NVX_image_view_handle",{"number":2649,"type":1548,"author":2642,"provisional":1326,"depends":2650,"contact":1695,"extension":2651,"proposal":1326},98,"VK_KHR_multiview,VK_VERSION_1_1","VK_NVX_multiview_per_view_attributes",{"number":2653,"type":1548,"author":1675,"provisional":1326,"depends":1670,"platform":1843,"contact":2654,"extension":2655,"proposal":1326},346,"Jeff Juliano @jjuliano","VK_NV_acquire_winrt_display",{"number":2657,"type":1548,"author":1675,"provisional":1326,"contact":2646,"extension":2658,"proposal":1326},88,"VK_NV_clip_space_w_scaling",{"number":2660,"type":1548,"author":1675,"provisional":1326,"contact":2661,"extension":2662,"proposal":1326},560,"Lujin Wang @lujinwangnv","VK_NV_command_buffer_inheritance",{"number":2664,"type":1548,"author":1675,"promotedto":2255,"provisional":1326,"depends":1565,"contact":2665,"extension":2666,"proposal":1326},202,"Pat Brown @nvpbrown","VK_NV_compute_shader_derivatives",{"number":2668,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":1695,"extension":2669,"proposal":1326},250,"VK_NV_cooperative_matrix",{"number":2671,"type":1548,"author":1675,"provisional":1326,"depends":2672,"contact":1805,"extension":2673,"proposal":1326},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":2675,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2013,"extension":2676,"proposal":1326},51,"VK_NV_corner_sampled_image",{"number":2678,"type":1548,"author":1675,"provisional":1326,"depends":2679,"contact":2680,"extension":2681,"proposal":1326},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":2683,"type":1548,"author":1675,"provisional":1520,"contact":2684,"extension":2685,"proposal":1326},308,"Tristan Lorach @tlorach","VK_NV_cuda_kernel_launch",{"number":1427,"type":1548,"author":1675,"deprecatedby":2270,"provisional":1326,"contact":1695,"extension":2687,"proposal":1326},"VK_NV_dedicated_allocation",{"number":2689,"type":1548,"author":2690,"provisional":1326,"depends":2691,"contact":2692,"extension":2693,"proposal":1326},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":2695,"type":1548,"author":1675,"provisional":1326,"depends":1659,"contact":1701,"extension":2696,"proposal":1326},547,"VK_NV_descriptor_pool_overallocation",{"number":2698,"type":1548,"author":2690,"provisional":1326,"depends":1565,"contact":2692,"extension":2699,"proposal":1326},207,"VK_NV_device_diagnostic_checkpoints",{"number":2701,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2680,"extension":2702,"proposal":1326},301,"VK_NV_device_diagnostics_config",{"number":2704,"type":1548,"author":1675,"provisional":1326,"depends":2705,"contact":1940,"extension":2706,"proposal":1326},278,"(VK_VERSION_1_1+VK_KHR_buffer_device_address),VK_VERSION_1_2","VK_NV_device_generated_commands",{"number":2708,"type":1548,"author":1675,"provisional":1326,"depends":2706,"contact":1805,"extension":2709,"proposal":1326},429,"VK_NV_device_generated_commands_compute",{"number":2711,"type":1548,"author":1675,"provisional":1520,"depends":1975,"platform":1551,"contact":2712,"extension":2713,"proposal":1326},398,"Christoph Kubisch @pixeljetstream, Eric Werness @ewerness-nv","VK_NV_displacement_micromap",{"number":2715,"type":1548,"author":1675,"provisional":1326,"contact":2716,"extension":2717,"proposal":1326},493,"Russell Chou @russellcnv","VK_NV_extended_sparse_address_space",{"number":2719,"type":1548,"author":1675,"deprecatedby":2323,"provisional":1326,"depends":2720,"contact":1677,"extension":2721,"proposal":1326},57,"VK_NV_external_memory_capabilities","VK_NV_external_memory",{"number":2723,"type":1669,"author":1675,"deprecatedby":2326,"provisional":1326,"contact":1677,"extension":2720,"proposal":1326},56,{"number":2725,"type":1548,"author":1675,"provisional":1326,"depends":1812,"contact":2597,"extension":2726,"proposal":1326},372,"VK_NV_external_memory_rdma",{"extension":2728,"proposal":1326},"VK_NV_external_memory_sci_buf",{"number":2730,"type":1548,"author":1675,"deprecatedby":2331,"provisional":1326,"depends":2721,"platform":1843,"contact":1677,"extension":2731,"proposal":1326},58,"VK_NV_external_memory_win32",{"extension":2733,"proposal":1326},"VK_NV_external_sci_sync",{"extension":2735,"proposal":1326},"VK_NV_external_sci_sync2",{"number":2737,"type":1548,"author":1675,"provisional":1326,"contact":1695,"extension":2738,"proposal":1326},154,"VK_NV_fill_rectangle",{"number":2740,"type":1548,"author":1675,"provisional":1326,"contact":1695,"extension":2741,"proposal":1326},150,"VK_NV_fragment_coverage_to_color",{"number":2743,"type":1548,"author":1675,"promotedto":2350,"provisional":1326,"depends":1565,"contact":2665,"extension":2744,"proposal":1326},204,"VK_NV_fragment_shader_barycentric",{"number":2746,"type":1548,"author":1675,"provisional":1326,"depends":2354,"contact":2665,"extension":2747,"proposal":1326},327,"VK_NV_fragment_shading_rate_enums",{"number":2749,"type":1548,"author":1675,"provisional":1326,"contact":1695,"extension":2750,"proposal":1326},153,"VK_NV_framebuffer_mixed_samples",{"number":2752,"type":1548,"author":1675,"provisional":1326,"contact":2013,"extension":2753,"proposal":1326},96,"VK_NV_geometry_shader_passthrough",{"number":1371,"type":1548,"author":1675,"deprecatedby":2213,"provisional":1326,"contact":1701,"extension":2755,"proposal":1326},"VK_NV_glsl_shader",{"number":2757,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2758,"extension":2759,"proposal":1326},279,"David Zhao Akeley @akeley98","VK_NV_inherited_viewport_scissor",{"number":2761,"type":1548,"author":2690,"provisional":1326,"depends":1565,"contact":2762,"extension":2763,"proposal":1326},431,"sourav parmar @souravpNV","VK_NV_linear_color_attachment",{"number":2765,"type":1548,"author":1675,"provisional":1326,"contact":2766,"extension":2767,"proposal":1326},311,"Charles Hansen @cshansen","VK_NV_low_latency",{"number":2769,"type":1548,"author":1675,"provisional":1326,"depends":2770,"contact":2766,"extension":2771,"proposal":1326},506,"VK_VERSION_1_2,VK_KHR_timeline_semaphore","VK_NV_low_latency2",{"number":2773,"type":1548,"author":1675,"provisional":1326,"depends":2672,"contact":1805,"extension":2774,"proposal":1326},428,"VK_NV_memory_decompression",{"number":2776,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":1940,"extension":2777,"proposal":1326},203,"VK_NV_mesh_shader",{"number":2779,"type":1548,"author":1675,"provisional":1326,"depends":2780,"contact":2597,"extension":2781,"proposal":1326},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":2783,"type":1548,"author":1675,"provisional":1326,"depends":2403,"contact":1701,"extension":2784,"proposal":1326},517,"VK_NV_per_stage_descriptor_set",{"number":2786,"type":1548,"author":1675,"provisional":1326,"depends":1842,"contact":2787,"extension":2788,"proposal":1326},293,"Liya Li @liyli","VK_NV_present_barrier",{"extension":2790,"proposal":1326},"VK_NV_private_vendor_info",{"number":2792,"type":1548,"author":1675,"provisional":1326,"contact":2793,"extension":2794,"proposal":1326},556,"Rodrigo Locatti @rlocatti","VK_NV_raw_access_chains",{"number":2796,"type":1548,"author":1675,"deprecatedby":2455,"provisional":1326,"depends":2797,"contact":2646,"extension":2798,"proposal":1326},166,"(VK_KHR_get_physical_device_properties2+VK_KHR_get_memory_requirements2),VK_VERSION_1_1","VK_NV_ray_tracing",{"number":2800,"type":1548,"author":1675,"provisional":1326,"depends":2455,"contact":2646,"extension":2801,"proposal":1326},491,"VK_NV_ray_tracing_invocation_reorder",{"number":2803,"type":1548,"author":1675,"provisional":1326,"depends":2455,"contact":2458,"extension":2804,"proposal":1326},328,"VK_NV_ray_tracing_motion_blur",{"number":2806,"type":1548,"author":1675,"provisional":1326,"contact":1805,"extension":2807,"proposal":1520},569,"VK_NV_ray_tracing_validation",{"number":2809,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2680,"extension":2810,"proposal":1326},167,"VK_NV_representative_fragment_test",{"number":2812,"type":1548,"author":1675,"provisional":1326,"contact":1701,"extension":2813,"proposal":1326},95,"VK_NV_sample_mask_override_coverage",{"number":2815,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2665,"extension":2816,"proposal":1326},206,"VK_NV_scissor_exclusive",{"number":2818,"type":1548,"author":1675,"provisional":1326,"contact":1695,"extension":2819,"proposal":1326},564,"VK_NV_shader_atomic_float16_vector",{"number":2821,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2665,"extension":2822,"proposal":1326},205,"VK_NV_shader_image_footprint",{"number":2824,"type":1548,"author":1675,"provisional":1326,"depends":1659,"contact":2013,"extension":2825,"proposal":1326},155,"VK_NV_shader_sm_builtins",{"number":2827,"type":1548,"author":1675,"provisional":1326,"depends":1659,"contact":1695,"extension":2828,"proposal":1326},199,"VK_NV_shader_subgroup_partitioned",{"number":2830,"type":1548,"author":1675,"provisional":1326,"depends":1565,"contact":2665,"extension":2831,"proposal":1326},165,"VK_NV_shading_rate_image",{"number":2833,"type":1548,"author":1675,"provisional":1326,"contact":2013,"extension":2834,"proposal":1326},97,"VK_NV_viewport_array2",{"number":2836,"type":1548,"author":1675,"provisional":1326,"contact":1701,"extension":2837,"proposal":1326},99,"VK_NV_viewport_swizzle",{"number":2839,"type":1548,"author":1675,"promotedto":2598,"provisional":1326,"depends":2731,"platform":1843,"contact":2597,"extension":2840,"proposal":1326},59,"VK_NV_win32_keyed_mutex",{"number":2842,"type":1548,"author":1824,"provisional":1326,"depends":2843,"contact":1825,"extension":2844,"proposal":1326},522,"(VK_EXT_filter_cubic)+(VK_VERSION_1_2,VK_EXT_sampler_filter_minmax)","VK_QCOM_filter_cubic_clamp",{"number":2846,"type":1548,"author":1824,"provisional":1326,"depends":1826,"contact":1825,"extension":2847,"proposal":1326},520,"VK_QCOM_filter_cubic_weights",{"number":2849,"type":1548,"author":1824,"provisional":1326,"depends":2850,"contact":1825,"extension":2851,"proposal":1326},426,"(VK_KHR_get_physical_device_properties2,VK_VERSION_1_1)+VK_EXT_fragment_density_map","VK_QCOM_fragment_density_map_offset",{"number":2853,"type":1548,"author":1824,"provisional":1326,"depends":2854,"contact":1825,"extension":2855,"proposal":1520},441,"VK_KHR_format_feature_flags2,VK_VERSION_1_3","VK_QCOM_image_processing",{"number":2857,"type":1548,"author":1824,"provisional":1326,"depends":2855,"contact":1825,"extension":2858,"proposal":1326},519,"VK_QCOM_image_processing2",{"number":2860,"type":1548,"author":1824,"provisional":1326,"contact":1825,"extension":2861,"proposal":1326},511,"VK_QCOM_multiview_per_view_render_areas",{"number":2863,"type":1548,"author":1824,"provisional":1326,"depends":1565,"contact":1825,"extension":2864,"proposal":1326},489,"VK_QCOM_multiview_per_view_viewports",{"number":2866,"type":1548,"author":1824,"provisional":1326,"contact":1825,"extension":2867,"proposal":1326},172,"VK_QCOM_render_pass_shader_resolve",{"number":2869,"type":1548,"author":1824,"provisional":1326,"contact":1825,"extension":2870,"proposal":1326},302,"VK_QCOM_render_pass_store_ops",{"number":2872,"type":1548,"author":1824,"provisional":1326,"contact":1825,"extension":2873,"proposal":1326},283,"VK_QCOM_render_pass_transform",{"number":2875,"type":1548,"author":1824,"provisional":1326,"depends":2876,"contact":1825,"extension":2877,"proposal":1326},334,"VK_KHR_copy_commands2,VK_VERSION_1_3","VK_QCOM_rotated_copy_commands",{"number":2879,"type":1548,"author":1824,"provisional":1326,"depends":1565,"contact":1825,"extension":2880,"proposal":1520},485,"VK_QCOM_tile_properties",{"number":2882,"type":1548,"author":1824,"provisional":1326,"contact":1825,"extension":2883,"proposal":1326},521,"VK_QCOM_ycbcr_degamma",{"number":2885,"type":1548,"author":2886,"provisional":1326,"depends":1638,"platform":2887,"contact":2888,"extension":2889,"proposal":1326},530,"QNX","screen","Mike Gorchak @mgorchak-blackberry, Aaron Ruby @aruby-blackberry","VK_QNX_external_memory_screen_buffer",{"number":2891,"type":1669,"author":2886,"provisional":1326,"depends":1782,"platform":2887,"contact":2892,"extension":2893,"proposal":1326},379,"Mike Gorchak @mgorchak-blackberry","VK_QNX_screen_surface",{"number":2895,"type":1548,"author":2896,"provisional":1326,"depends":1565,"contact":1768,"extension":2897,"proposal":1326},486,"SEC","VK_SEC_amigo_profiling",{"number":2899,"type":1548,"author":2900,"provisional":1326,"depends":1565,"specialuse":1740,"contact":1997,"extension":2901,"proposal":1326},421,"VALVE","VK_VALVE_descriptor_set_host_mapping",{"number":2903,"type":1548,"author":2900,"promotedto":1962,"provisional":1326,"depends":1960,"specialuse":1740,"contact":1961,"extension":2904,"proposal":1326},352,"VK_VALVE_mutable_descriptor_type",1725732639015]