summaryrefslogtreecommitdiff
path: root/.pick_status.json
blob: 2e39216dcaf0e8773fcd2038922284a31fb59171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
[
    {
        "sha": "c356f3cfce9459dc1341b6a2a0fd5336a9bdcc3c",
        "description": "freedreno/a6xx: Use the fdl buffer view setup for img/ssbo descriptors.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3050e202833ab3c3ee5e91ee82ee823d8efac563",
        "description": "freedreno/fdl6: Add support for texture swizzles of A/L/I/LA/RGBx.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "669caded514b041ae66e9288824c8e7a3883dc79",
        "description": "turnip: Remove buffer-view cross-check code.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ef1fb25787eff6bd931a855cf3d263d9c334071c",
        "description": "turnip: Use the new shared buffer-view descriptor creation function.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aa3074e5be4dc3fff51e1359fb21e00cf26031b7",
        "description": "freedreno/fdl6: Add an interface for setting up buffer descriptors.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7b578c12497cfea2249467951e270993462ff4a9",
        "description": "freedreno/a6xx: Emit a null descriptor for unoccupied IBO slots.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "29093bc42d20e95288cd306757e7efc928fdb366",
        "description": "freedreno: Fix gmem invalidating the depth or stencil of packed d/s.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "858424bd2e0742542cd072ccd4efcfee0ea828b3",
        "description": "intel/compiler: Use gl_shader_stage_uses_workgroup() helpers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4355d3f24535c7d061992f86c21d990232014fd",
        "description": "intel/compiler: Make brw_nir_populate_wm_prog_data() static",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "732cfa525f431b6f5b47e2623645cf14716b4bdf",
        "description": "anv: Include viewport size in scissor rectangle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "71022a53e415fa8c16567884c414eb361dee1214",
        "description": "anv: Process FS last when compiling graphics pipeline",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0109a3754c4211a855579eb4909de0b170d1215",
        "description": "anv: Make shaders array in anv_graphics_pipeline fit Task/Mesh",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "eb430aa9e7fdc99a5f984bc2fb5193f5c02d88ad",
        "description": "anv: Get rid of \"may be used initialized\" warning in anv_QueueSubmit2KHR",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3afdc3ab2c776d95909d597f4ada0335ccf462dc",
        "description": "freedreno/computerator: Support A660 gpu",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "79fcd63bd60ac46249c6dfcfa0eeef296ea3d04a",
        "description": "tu: fix rast state allocation size on a6xx gen4",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "4e05338d99abbf2858a0d8444ffc53028fe23051"
    },
    {
        "sha": "675519f1d0eb26ecb5712a8bdbb82d7a92c07ed7",
        "description": "zink: reject all storage multisampling if the feature is unsupported",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aacdc6eb44cfcfe28e8a3bef90350f514219ac38",
        "description": "zink: add SpvCapabilityStorageImageMultisample for multisampled storage images",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a794bdf95313f7b9a69b142712a1e198b5447e36",
        "description": "broadcom/compiler: check that sig packing is valid when pipelining ldvary",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c6e2c802c412c9d4b0f183cc17a5add2212b07ce",
        "description": "glsl/nir: mark samplers inside a block as bindless",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3a51a408fbe6dae7d9a6d15944de2833742462e",
        "description": "mesa: don't reset SamplersValidated if nothing changed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e15e3a8e8636c38def3e8a4fb93cfed90b8faf1b",
        "description": "radv: optimize subpass barrier flushes for imageless framebuffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f13d486ee77c2ca8a2d27a3f42981171cd73f102",
        "description": "intel/compiler: Initialize SIMDSelectionTest member error.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "7558340ebb688a9607f0cbc05f8bad56d77b19fe"
    },
    {
        "sha": "d863e62b32bc155ae663fc90bae0139fa524a4e0",
        "description": "intel/compiler: Change selected_simd return type to int.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "7dda0cf2b8e7d13a6dce7b2fc48e95e260717aee"
    },
    {
        "sha": "ac2af149f1099bcd910de6d625374cb545d66ff8",
        "description": "zink: stop double printing validation messages",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4e28962800f477219854d8fcfa6b44e37a00a5d6",
        "description": "ci: Uprev VK-GL-CTS to 1.2.7.2, and pull in piglit while I'm here.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d3a3e7a00b02d3420e15f4793982c3cd5c72a53",
        "description": "microsoft/compiler: Use textures for SRVs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ffd4157b1caa69345468bbbe914e2bb64a4ddbaa",
        "description": "util/hash_table: Clear special 0/1 entries for u64 hash table too",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "e532a47f76cc8d763e2534c61b27dce0f5bc86a0"
    },
    {
        "sha": "c047fc9de306530741e00002be19c21d06c8adbb",
        "description": "docs: update radv extensions in features.txt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b9bd3f038d19df34bd5dd5c7adb70395ea994a6",
        "description": "broadcom/compiler: make opt passes set current block",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "27cb4166b5923997a5566281477a8de326215669",
        "description": "freedreno/ci: Test Turnip on Adreno 618",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "83a0bb007fd88c75d8a05896af06bf20b9f3ccd2",
        "description": "ci: Let manual LAVA jobs have a longer timeout than others",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dedc1493071550a35b7dae7091fbaf6ad93304c9",
        "description": "ci: Add support for lazor Chromebooks",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "634e2353a0edc0b336191d7267d567d7341b1b51",
        "description": "virgl: Add driconf tweak to force-enable reading back R8_SRGB textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1311eddd5265b46d7c13adf14ea97072e80f54a5",
        "description": "iris: fix off-by-one error when clearing stale syncobjs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "db7ad0c1700e2f012730898e02bc0cebf1b04304",
        "description": "radv: only enable VK_EXT_display_control for vrcompositor (SteamVR)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c862923219bb4bcb53dd53575a38ab5801bf07f",
        "description": "v3dv: Implement VK_KHR_create_renderpass2",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1813c709436b4d7bb918e69678e83c697d387518",
        "description": "panfrost/ci: update piglit tests expectations on G52",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d96cf4eaa98b3e0b1f6e7e693e3475969c4ce5f",
        "description": "ci/freedreno: Add maxcpus=2 to the kernel cmdline on a530",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "38c62646d0a3d07150c9cd672cde980f4570a7f1",
        "description": "iris/ci: Fix traces for amly and deqp list for whl",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fea3c6f14e96de7d611a154db601f9a6dc0df79",
        "description": "ci: Update linux kernel to v5.15",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4098607870125dacc40ea484c879035cc9a173be",
        "description": "xmlconfig_test: add unit test for executable_regexp",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7f481c615d24846b4d8da48506a4d4a9a9ea7a0",
        "description": "drirc: add Mari application workaround",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a24de9aa743808c6c7cc2670f1e8d9753b9430e",
        "description": "driconf: add executable_regexp application attribute",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "308bd1f00c9cfcd37ebcd15390d513441011d1af",
        "description": "zink: Remove duplicate variable unsized.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "f79a25653b9b18617d6a317bc8bd94973a2a0674"
    },
    {
        "sha": "a8725ec3dc2aa23598071d2505131253c433b8c6",
        "description": "vulkan/wsi: set correct bits for host allocations/exports for images.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "895d3399f7fb5cf58aa857fb2b98f23fe89071ba"
    },
    {
        "sha": "d66514aacccec28fa66afd58bc19580008e8078e",
        "description": "radv: Disable coherent L2 optimization on cards with noncoherent L2.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "fd8210f27ede11583e3a5d55066cb61d9988357b"
    },
    {
        "sha": "65afcddbf1892a74397cb8ba0d29618544fb507a",
        "description": "frontends/va: Return error in vaRenderPicture if decoder is NULL",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2dbb66997e2e2ab0a07a84a40df70d8d75fe2524",
        "description": "intel/fs: Fix a cmod prop bug when cmod is set to inst that doesn't support it",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "32b7ba66b0156d9fd40b059f20da79a74451f7fd"
    },
    {
        "sha": "085e83895910ff32711bf48cc527cca61c792a7d",
        "description": "i915g: Improve the explanation for the 1D Y swizzle.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa4fd67f7824727d92e52c816543b0233eacd932",
        "description": "i915g: Make sure we consider negates/swizzles on bias/shadow coords.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ebe5626de695d8055c64a278d7ec7e369fcd9823",
        "description": "i915g: Check for negate/swizzle on TGSI_OPCODE_KILL_IF's src.yzw.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ba48b27a11a9b340a66121542ebe159731d8db84",
        "description": "etnaviv: Switch to the NIR compiler by default.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9b80f4d5f20bca6e127de62c7f4183f64e91cff1",
        "description": "radv: rename radv_shader_variant to radv_shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "eeb034f2cc29595c89a874f102131ee9ae9f0442",
        "description": "docs: document RADV_THREAD_TRACE_* envvars",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3839f3a48630db843e414dfb979b03644bf5826b",
        "description": "radv: stop reporting SQTT/RGP support as experimental",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "74e625f057df9cb416cf5be9e66c853384002fcf",
        "description": "radv: enable SQTT instruction timing by default",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fd414ec84e9055cd4682ec80ce766df6ee2756a",
        "description": "radv: remove useless checks about GFX7 for SQTT",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b35fd1bff6d8813411d9ca7f8c221c47ed5cf8fe",
        "description": "radv: move freeing the trigger SQTT file at a better place",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5a1df095c3eee0da4747a67b12c8ca352116178",
        "description": "ci/etnaviv: add manual piglit testing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d2440b27e5ed28397b572802817a652943c2a0b2",
        "description": "ci/etnaviv: Add some more deqp flakes I've seen in recent runs.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7355694e11bd2292e0f193573726a90d12848c80",
        "description": "ci/etnaviv: Fix the dependency for the build artifacts.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "79f57f68930ce4fcf59bdca82357e19b4f3d62e6",
        "description": "lavapipe: Don't wrap errors returned from vk_device_init in vk_error",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "main_sha": null,
        "because_sha": "47adb11143767b6e66945197a70dc91383406665"
    },
    {
        "sha": "73af67883ddf6faec9c0e76f8c174fb450817179",
        "description": "zink: force float dest types on some alu results",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c73f5a00826201f6e76854145aa823cec4f389d2",
        "description": "zink: add more int/float types to cast switching in ntv",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "69501ff458108c536f36198c8c8d3b560ecb4c82",
        "description": "zink: explicitly enable VK_EXT_shader_subgroup_ballot",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ccfe36fffabbbc25cdd0fc0f7bf6bf30de0e1268",
        "description": "zink: clamp max buffer sizes to smallest buffer heap size",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd2b47281f1b63312a58c2f7e77ee39f0858ba95",
        "description": "zink: error when trying to allocate a bo larger than heap size",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aa5e544644431e9d4462b6f46208a3c028a1a13d",
        "description": "zink: don't clamp 2D_ARRAY surfaces to 2D",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d2280f533faf5e372d604cf35b355b898423375",
        "description": "zink: don't clamp cube array surfacess to cubes",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6ab915960c5d2e9cbb81ccf151cfdf17bfbd3366",
        "description": "zink: be more spec-compliant for unnormalizedCoordinates samplers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "75dc3023404210494ede4ddf6ea8c94c35b85497",
        "description": "lavapipe: drop EXT_acquire_xlib_display",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "1d574d4860300633ad2a77de203b74f261fb6969"
    },
    {
        "sha": "7e998783db80a153978bea165132e349896792d8",
        "description": "freedreno/ir3: xfb fix for duplicate outputs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f6f760a98db511a0d3e712efa937d372a1910a67",
        "description": "freedreno/ir3/print: Show end's outidxs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6239adebbc5cabe3466477ac5f96dfdaaf2303a1",
        "description": "zink: flag renderpass change when toggling fbfetch",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d041d5f1e9a731da3bfaec21494d90f4b560bbb",
        "description": "Revert \"iris: Disable I915_FORMAT_MOD_Y_TILED_GEN12* on adl-p/display 13\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "d4174f5f052f614a10df2ebc905aec8c4897b057"
    },
    {
        "sha": "68a62226e4dba17fb56c968a53fe1539fff70214",
        "description": "ir3: Don't emit barriers for make_available/make_visible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4108fda4268943a52cffc6627b598638763b88c9",
        "description": "vulkan: Move all the common object code to runtime/",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4af0c038cfe38e144e4d83e03c0d3a9372767886",
        "description": "vulkan: Move trampoline code-gen to its own file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d53f20ff4d89ac13fd6a08253ae1a2c53a791ab0",
        "description": "vulkan: Break entrypoint parsing into its own file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8f9e0c2816fb3a06dcba101730410f15b82fb19f",
        "description": "vulkan/dispatch_table: EntrypointBase doesn't need to derive from object",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3fd7cc9d42e14a6e80dfb03782401060b9e6187a",
        "description": "vulkan: Drop unnecessary [en]coding comments from python generators",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a208b849f337a60f87216575bc148d8de20517b6",
        "description": "vulkan: Rework mako error handling in python generators",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "006633c0438e652b4704d4636e712d566dce4fdc",
        "description": "lavapipe: Use vk_instance_get_proc_addr_unchecked for WSI",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5ccba1576da2b2a32444c8328bc9b3a0427bb0b1",
        "description": "v3dv: Use vk_instance_get_proc_addr_unchecked for WSI",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "837a142f2da1cb4fc70fa7ad284b13969e36ee91",
        "description": "vulkan/vk_extensions_gen: Stop including vk_object.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "741262ee01f0cd21dd97547adb701ea202416e89",
        "description": "vulkan/vk_extensions_gen: Drop support for extra includes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "20620af1e4c9f203aabb9950a9de0536e25db1dd",
        "description": "clover: Add constructor for image_rd_argument.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e8f18385e05db6d14ae6807a529c5d69c38d6091",
        "description": "zink: inject LOD for sampler version of OpImageQuerySize",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "87fbb0eab03c8348f74ca1f4b3489e89e89f691f",
        "description": "zink: be more permissive for injecting LOD into texture() instructions",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "3ad06b69490fa990c473e16f78ce658b0eb43b47"
    },
    {
        "sha": "8d0b508d91e8f873ff7974e1aad8fb6c9b8f20cf",
        "description": "ir3: Emit barriers for images again",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "e87dbfd3e8a5cf69c3ddc89fce17a0388f872806"
    },
    {
        "sha": "8bfa146b8056d5dded6fdd2c4d8524aa0c438058",
        "description": "radeonsi: print the border color error message only once",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a4e0b02f85b0d39107c850b13b75a6273b51808c",
        "description": "mesa: skip strlen when hashing strings for ProgramResourceHash",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fe3cc94ebed922e87aa0ac329abe52166111286",
        "description": "mesa: add separate hash tables for each GLSL resource type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1b1425d45c6be1f911c7da222a2326814409ff7e",
        "description": "mesa: handle hash collisions in program resource lookups (e.g. uniforms)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aad903c3f5357697adb4bee82399904d3e78d992",
        "description": "mesa: preparse [ and [0] in gl_resource_name and use it in shader_query.cpp",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4b67055fef744333c892b8aaab96e765b8d1daef",
        "description": "mesa: rename locals in _mesa_program_resource_find_name for clarity",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "22d51f3c92285efcdb47019aa445d8f4535f4b14",
        "description": "mesa: precompute strlen in gl_resource_name::length and use it",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "81ad6a8b64f9f85e77f6fac5f4950f0f20fd59ea",
        "description": "mesa: don't compute the same strlen up to 3x in _mesa_program_resource_find_name",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dea558cbd298b8960661eba32f50c48fb92dd672",
        "description": "glsl: add gl_resource_name to precompute \"name\" properties later",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c216f1931d2656c15191c8b723be72b95697fe73",
        "description": "mesa: use alloca in search_resource_hash",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1776d741c53dc9347994d78b6c47c99a885e3d2a",
        "description": "zink: add CI lists and deqp-suite configuration for RADV",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "76892c4e46d2a71b7e210a049496e3cf6c48862b",
        "description": "vbo: restructure vbo_save_vertex_list to get more cache hits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3835205a0ec1d0b46830911c015d27986c1a5212",
        "description": "vbo: use int16_t for vbo_save_vertex_list::gallium::private_refcount",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "97caca6b477d7d1b9609ae94dcf6f832f285771c",
        "description": "vbo: return a GL error earlier in vbo_save_playback_vertex_list_gallium",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa2c39df0fd25d7c57dfbe20c9e8189093046b6a",
        "description": "mesa: remove PADDING_64BIT by adding the dlist header into vbo_save_vertex_list",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "05605d7f537c4463cc5471f26fb2226a065561a8",
        "description": "mesa: remove display list OPCODE_NOP",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4a26f57103088fc151b74d1b0bfc77201a632fb9",
        "description": "mesa: fix locking when destroying/overwriting/adding display lists",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c494cfb1dd0c1fd2d29e98365a727797363119d8",
        "description": "radeonsi: don't invoke si_decompress_depth if textures are not dirty at binding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0e54ac7a3c43d772b9fdb845cb8e8bb0bf1510f6",
        "description": "winsys/amdgpu: optimize looping inefficiencies in add_bo_fence_dependencies",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4ba003e2fd97b4dc3771d01fe15fb02fd6ce98f",
        "description": "winsys/amdgpu: move BO fence array updates to the CS thread",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "67de09acbd5820ac2dce507e90b07ce5cdf5d22b",
        "description": "winsys/amdgpu: don't use ip_instance and ring fields of fence and IB structures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f6d072b2f0e4be7844b0d74f91152ccd77bb24c1",
        "description": "winsys/amdgpu: increase the BO hash list size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5118bc97dc009c486157b193dca484587fdb591",
        "description": "winsys/amdgpu: don't clear RADEON_USAGE_SYNCHRONIZED for last_added_bo_usage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "107bc76882e9e8d8f1c71d68d3af7d27194bfad1",
        "description": "winsys/amdgpu: remove an amdgpu_cs dereference from amdgpu_cs_add_buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8bb0c09f9eb3d155b0a70d587a9be60b1611c859",
        "description": "winsys/amdgpu: simplify parameter passing and derefs in cs_add_buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "61bd8ec0430868c29870620d685a3400454480a7",
        "description": "gallium/radeon: merge BO read/write usage flags with priority flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "90ff5ef5c0a029c023e166569b17c0122f274cc2",
        "description": "gallium/radeon: remove unused RADEON_DEPENDENCY_START_FENCE",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b5cf0d118c85a0f61d335dd2805452ebb142464f",
        "description": "gallium/radeon: remove/merge some BO priorities and remove holes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f815009036837cb28a349f74ab9614ead75b0e8a",
        "description": "gallium/radeon: change the BO priority definitions to bits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0f05a5b205d204c42d81d27d9f2c5d457bdd38c",
        "description": "radeonsi: remove unused parameters in si_emit_draw_packets",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "98f696c972f9415892c19b405217285003234058",
        "description": "radeonsi: enable shader culling for indirect draws",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "98dbd01a96fd1d715794c0fe8ad82392882a8129",
        "description": "util: make util_get_process_exec_path work on FreeBSD w/o procfs",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d9eda1b57df4f8afa817d55ca43e1e206f223b5",
        "description": "util: __getProgramName: remove check for ancient FreeBSD versions, simplify ifdefs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed5d7987dc1609287c2ae46c88ce241b12bed677",
        "description": "radeon/vcn: combine session init func",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ced5a54c134228c0bd6514fa323037e91d38f1b9",
        "description": "radeon/vcn: combine encode params func",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "49fff27d46698b9aa998a32aaac737edee153059",
        "description": "radeon/vcn: remove redundancy for vcn2 enc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4abc6d64e7e262b947ada41d1284839181450cb1",
        "description": "radeon/vcn: update vcn2 enc interface",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "299097d17b0d85c8db0e684ff5041c6e9cc38067",
        "description": "radeon/vcn: update vcn1 enc interface",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8fb850651c77c0513c04952362b82b0ad1eff953",
        "description": "ci: Enable testing radeonsi's libva using libva-util unit tests.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6ae0e9b953616fed894e02b9b8c2a52f269b0be",
        "description": "freedreno/a6xx: Emit GRAS_LRZ_MRT_BUF_INFO_0",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "9c895e133bf2fbde0d318e68d7c201b4f66ff22d"
    },
    {
        "sha": "98c14485097703c497f839e671d4a2c052d45d35",
        "description": "tu: Always write GRAS_LRZ_MRT_BUF_INFO_0",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "9c895e133bf2fbde0d318e68d7c201b4f66ff22d"
    },
    {
        "sha": "2f58a63b2f14371470e6b2ca094ebfe96b983d2e",
        "description": "intel/genxml: Add XY_BLOCK_COPY_BLT on Tigerlake and later.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9163500aa17492a7446fe59ab18518d83e1c248d",
        "description": "intel/genxml: Allow MI_FLUSH_DW on the blitter",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d9ffdfc16da0bafe589000bdb871181114317a29",
        "description": "intel/genxml: Include blitter commands in gen*_pack.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7b78b2fcac6ec2782a8296aeda195d1d3942a703",
        "description": "intel/genxml: Assert that all MOCS fields are non-zero on Gfx7+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ebe2a2b5f6a461ec4644accb4e7b02c430bb8f16",
        "description": "intel/genxml: Add an field option for nonzero=\"true\"",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6ebf5add7f86b57f300e6e4612333b9efbe8de2",
        "description": "i965: Set MOCS for Bindless Surface/Sampler State base addresses",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "148ea65ee1554dcdb5aad37184b56cad2d3e622a",
        "description": "i965: Port STATE_BASE_ADDRESS to genxml and fix bugs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a64007676ff5cdfa46fc25a479d1b4b48ca9b31",
        "description": "i965: Fix MOCS for BLORP buffer copies",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "75e86afb500993b3a068323570f427c17a1865be",
        "description": "i965: Set MOCS for 3DSTATE_INDEX_BUFFER on Gfx6/7 as well.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ab44a546461572cd50901ae8285fcd19e87bef8f",
        "description": "i965: Set MOCS for 3DSTATE_SO_BUFFERS on Gfx7.x too",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "eaaa3c7e04eaf3c94cc7219a1a6a89918bbe2dbb",
        "description": "i965: Set MOCS on NULL stream output buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "59f53b07c487dead0884b78f15468eefd52a2dc5",
        "description": "i965: Set MOCS for push constant buffers on Haswell and Gfx9+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d0e356b3332e7fc4ae8b9f5a7f690454084b2d5a",
        "description": "i965: Set default MOCS for NULL depth/stencil/HiZ buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f0a5f10b6cc0ef6a13042d96b25053527bd73940",
        "description": "i965: Use ISL for MOCS rather than open coding it everywhere",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d9decdb2c4a4a63965d77267dc8ebaff6a5b56b2",
        "description": "crocus: Fix MOCS for buffer copies.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dc29e9dbb3a07e923c6ce3ea8d2a9a62e21175ff",
        "description": "crocus: Set MOCS for 3DSTATE_SO_BUFFERS on Gfx7.x too",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "72ffcd19653c3cb7b927d2e4ff4ee0dc5a42e5ef",
        "description": "crocus: Set MOCS for push constant buffers where possible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "798cc4be1b85d2acba9984f7404cc1f26fd5005e",
        "description": "crocus: Set default MOCS for NULL depth/stencil/HiZ buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "737b3fae737821bb7d585bf218b03b40aadd167b",
        "description": "crocus: Set MOCS on NULL stream output buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "de99b5502b11f02e0470a6af8bf27ec94e2669cb",
        "description": "crocus: Set MOCS for index buffers on Gen6+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "be0d22a9ce05a56f134f48b47874cbcaaa416b35",
        "description": "crocus: Tidy the ifdefs for emitting STATE_BASE_ADDRESS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "51f843ad6034f84aafc3fe2a08f8a67112e1005a",
        "description": "crocus: Set MOCS for most state base addresses on pre-Gen8",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dfe455b6dfb927b43681fed29a9bc5a88f763171",
        "description": "anv: Set MOCS on NULL stream output buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "818b5d2b9eda8847830dc47187e13a1d0df5f134",
        "description": "anv: Set MOCS on NULL vertex buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7ae9f516f0313c2e36c70d96b86406ee559d6b21",
        "description": "anv: Set MOCS in 3DSTATE_CONSTANT_XS even if there isn't a buffer.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "158ad07b3efc79583baa4939c56ff39a89062c3c",
        "description": "anv: Set MOCS for 3DSTATE_CONSTANT_XS on Gfx7.x as well",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b4310ef8eebfd44ee21cbcd1bfbc98f1153b92dd",
        "description": "anv: Set default MOCS for NULL depth/stencil/HiZ buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8cb76211c5d264d705dbd3c02b5fc61637d5a56",
        "description": "iris: Fix MOCS for buffer copies",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "c5b22441f1c3a77027af4306f09ea6d1f20d00ab"
    },
    {
        "sha": "256d48eb8cd57e9405b010982a48cf2378d299cc",
        "description": "iris: Set MOCS on NULL stream output buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8e1d0fecc962152fa3543d7da4aa514a3b79638",
        "description": "iris: Set MOCS on NULL vertex buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "369cd9ae2803e2f40a2ebf1b94918436eb779f6e",
        "description": "iris: Set MOCS on 3DSTATE_CONSTANT_ALL packets that disable all buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0544afd2df8a534f2f72c18c18a8489c78d8024c",
        "description": "iris: Set MOCS on 3DSTATE_CONSTANT_XS on Gfx9+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8336054024946bc74914fc7f24a5a33b7a9e357f",
        "description": "iris: Set default MOCS for NULL depth/stencil/HiZ buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a5e2257793bc67731b0ea19ca1138ab65e8e194",
        "description": "iris: Set Bindless Sampler State MOCS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6690dc1eec02a3225bc42a51b6ae5029005c815",
        "description": "iris: Drop unnecessary parenthesis",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fc5168b01d2c9b8a1e84bfdf8ca3950bf3121a59",
        "description": "blorp: Use a non-zero MOCS for disabled constant buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "28a503c1a17b24da362b2596356684b5ca2f3c8d",
        "description": "blorp: Fill in MOCS for null depth/stencil/HiZ buffers.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "edce4649b87638cd5bbfb3553bb4744139439a4c",
        "description": "blorp: Fill in MOCS even for SURFTYPE_NULL surfaces.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c27fcb1d3bac4282978529d947f3a143ae4a311f",
        "description": "isl: Fill in MOCS for NULL depth, stencil, and HiZ buffers.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "801ecb6f12cee3e5c5ba6d35b254b96ca9dad67b",
        "description": "isl: Fill in MOCS even for SURFTYPE_NULL surfaces.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "78d2605e575d65f705b1d01bb9afe75ac6a7ea4d",
        "description": "intel/genxml: Change 3DSTATE_CONSTANT_XS::MOCS to be MBZ on Gfx8.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "956effb88ad6b931b6fc5625493c9ff92c578c94",
        "description": "intel/genxml: Drop \"Hierarchical Depth Buffer MOCS\" field",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e69d395cd1c79f2ff730fbaf535a75dd7347dfb7",
        "description": "intel/genxml: Add an \"mbz\" data type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "58dc7f6ea67eed9583850a8fe69d6289fe919b69",
        "description": "intel/genxml: Fix Indirect Object Access Upper Bound on Gfx4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf76247f382a0b872e39135326111bd93f08c744",
        "description": "drirc: enable do_dce_before_clip_cull_analysis for ANSA",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "95ded68984684c72a1f7313a9c0c699f62796c04",
        "description": "glsl/drirc: add an option for gl_ClipVertex / gl_CullDistance checks",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0fc76a17211891dba2ee408748f7515f1eb4e91",
        "description": "docs: update calendar and link releases notes for 21.2.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c8bf9100cd3ed98bec579235e6253b9d8ba8847b",
        "description": "docs: add sha256 sums for 21.2.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f07a61499526dfb628eb54a8bd2401247659c52d",
        "description": "docs: add release notes for 21.2.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "021ec93273819bb6922df01beef51feb5abfb333",
        "description": "r300: improve precission of linear interpolation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aa264ded948defc88930eea7d54800b3188a3ac0",
        "description": "ir3/ra: Check register file upper bound when updating preferred_reg",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "0ffcb19b9d9fbe902224542047c389a661fbf816"
    },
    {
        "sha": "4f4164d62a0b29c12d750d9467e73c31e7f678b8",
        "description": "radeon/vce: Limiting max supported refernce frames to 1  for h264 encoding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8e45467076789aac6a83c3982dafcf386d56e72",
        "description": "ac/nir: remove bogus assertion about the position for culling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d3b3daa06b7f3856f88f8c6275db30ee6cf7874a",
        "description": "intel/pps: reuse timestamp_frequency from intel_device_info",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "43d5b55bc1691e9d3a4fdb24086fa3d626d4974c",
        "description": "intel/pps: provide accurate min sampling period",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3dda80fcf62baa106f227392d45ea6853ef7d9e9",
        "description": "intel/dev: printout timestamp period",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "127863ddd3e9aa43cea7c9de8c452460a0dcd5de",
        "description": "docs: put a list of commands to setup perfetto",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bc0a702c52452add244521fca53ecc850ceb6938",
        "description": "pps: add an intel config file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "32b28f2cfa4501314aa74356adaef7173e203cd0",
        "description": "pps: remove counter_ids fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "64157c706e78be0ea3bc002c07a15b002f1aa313",
        "description": "intel/dev/test: Assert (verx10 / 10) == ver",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "11602d2d36d319c2f185979effa4ed3c3342678f",
        "description": "aco: use std::vector and IDSet in RA validator",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b42f4b880915cf7c206bf7fce7558c6ac92e4f09",
        "description": "broadcom/compiler: padding fixes to QPU assembly dumps",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3ad06b69490fa990c473e16f78ce658b0eb43b47",
        "description": "zink: always use explicit lod for texture() when legal in non-fragment stages",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4d9fc17ae8c24a8f4e40a17600e8d4205c27b2bf",
        "description": "zink: set aspectMask for renderpass2 VkAttachmentReference2 structs",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4a513d978e6fb5344b465d981c70b1823906331",
        "description": "zink: use align64 for allocation sizes",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2e9e113b7f57a45e6a10577af9f82c09efe6b05e",
        "description": "zink: cache bo SpvId array types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "65abd1d4aed48365f0054279616dc31a817b2be0",
        "description": "venus: implement vn_buffer_cache_entries_create",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "af505ff3c8ce498998dc155271652ca6e77a63d0",
        "description": "venus: implement vn_buffer_cache_get_memory_requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a74f2495ca07bb536e8f1caaa8c2a4ed36c10d67",
        "description": "venus: implement vn_buffer_get_max_buffer_size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "13f2e50aee42ff20e4bcf7e40a4b6047d7394096",
        "description": "venus: add buffer cache init and usage flows",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fc237f80c6142171df695ecbfc3c981262672997",
        "description": "venus: add struct vn_image_memory_requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b108e096d12f9baabcb730723003ff51a6dadfff",
        "description": "venus: add struct vn_buffer_memory_requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "927dea7c346b9717d1fe5fd113b46846b8369f7e",
        "description": "venus: refactor the ahb buffer mem_type_bits query api",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "34b7d820e2912c6b586f7ae670120eb18aeb45a5",
        "description": "venus: refactor to add vn_buffer_init",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "df93a8a6dde0bbb903f14b4a6256445c771af54f",
        "description": "venus: refactor to add vn_device_init",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a79dfb724ab939eb73c255cfa9dc743c34d21ab",
        "description": "venus: release queues on device creation failure",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2de6beaa12f9b855d31c3c11a8a6cea51a14d6b1",
        "description": "zink: add better handling for CUBE_COMPATIBLE bit",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "71494c4874c6d8eba93309faeed01e1444eb49b5"
    },
    {
        "sha": "5a2513a5158dc07f21706a7083a493dcd6755a36",
        "description": "venus: assign valid memoryTypeIndex of exportable ahb memory for image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c43fd4c41f32479441a5845b46f844e66aeb3cc",
        "description": "amd/rgp: Use VGH clocks for RGP workaround.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bfbc41a9fa8aeeae7d5a441940538a5a7bb9f027",
        "description": "ci/piglit-runner: Merge piglit-driver-*.txt files into driver-*.txt.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "38dff02bfb1f237ded1e2075e560ec06b52fadcf",
        "description": "ci/deqp-runner: Rename the deqp-drivername-*.txt files to drivername-*.txt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c49916d515c62ac039644e8a0934e534f37be0b",
        "description": "iris: destroy our mutexes a little later",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e68616e5e651fb721ffdcdd167712689f183002e",
        "description": "docs: update calendar for 21.3.0-rc3",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9fa702f28ca030950cd8d79c2cf071eb63003741",
        "description": "venus: refactor private descriptor_set helpers to be private",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "565d65baafc218209c09e04ff8b25e1518854bca",
        "description": "anv: Enable CCS for storage image formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "64ea7e5e338750c8e7c33ddcd969b60af1645ada",
        "description": "anv: Pass correct aux usage while filling out surface state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f79a25653b9b18617d6a317bc8bd94973a2a0674",
        "description": "zink: move all shader bo/sharedmem access to compiler passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c18413b877cdf47904ef398071827767afa0b99a",
        "description": "zink: add more glsl base types to get_glsl_basetype()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6be3c0f82d7cd988d6737e078d4ee8e60dc66eae",
        "description": "zink: move all 64-32bit shader store rewriting to nir pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8a98e6fb97cb264e822d1b1b3ba6c333fb727a81",
        "description": "zink: move shared intrinsic offset adjustments to compiler passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d31f4b7b0776e3f97b88007853ae0eb36233933",
        "description": "zink: move ssbo store offset adjustment to compiler passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "150d6ee97e374b5f520fc1ec3817a8a09c4b80fc",
        "description": "zink: move all 64-32bit shader load rewriting to nir pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3a1ecd1e8ccfb73d76d5c20bbce9ee3e1d3ffcea",
        "description": "zink: run lower_io_to_scalar before rewriting bo access",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee22cd619fb164fb6b0c53d6915e6901b52b97fa",
        "description": "zink: move bo load offset adjustment to compiler passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "14f7eb9d4c0b2727c7e14027d82f86cf41cecc62",
        "description": "zink: run optimize_nir() only once during compile",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "16f838576cf29e26f1af198ac93a0fb3a3cfad8f",
        "description": "nir/lower_io_to_scalar: add support for bo and shared io",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "60cb47180561250939e37f0c1d0fdc6a981608f3",
        "description": "ci/radeonsi: Use a deqp-runner suite suite for stoney.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4856586ac605e89ee6c128b1a190f000311b49ba",
        "description": "util: use anonymous file for memory fd creation",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "1166ee9caf3ef8412c1897d926040035981cb4cf"
    },
    {
        "sha": "49d290bcf74ee837af5257a005b126d475d057cb",
        "description": "radv: don't use a separate cache entry for GS copy shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "704340f0f6777e92369c206703504417ff764113",
        "description": "radv: fix invalid wait_dst_stage_mask type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0bbb32ece45d9ef6dd62f5516a8ae1dc779ea3a3",
        "description": "glsl/nir/linker: Also remove image variables",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "b8ee37472d3e271fa666d82910588497435a86b7"
    },
    {
        "sha": "0a277fabce9dad868d5b38b9ba1d7be4afb62f62",
        "description": "broadcom/compiler: fix condition encoding bug",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3fbd6662b777a6f2a5b216101daca9b0a86f9958",
        "description": "broadcom/compiler: rework simultaneous peripheral access checks",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c61d89d3623c5eca9618e33a43c82f1aff266c5",
        "description": "gbm: add GBM_FORMAT_GR1616 and RG1616",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "759eaf517a39e53fe2ee808c860234a30013a03e",
        "description": "gbm: add missing R16 case in gbm_bo_get_bpp",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1fe375e7cf8da6d0313b7954ae76120cde92db14",
        "description": "radv: Add bufferDeviceAddressMultiDevice support.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "2e5718c957415b93da6be5e1ff61d09e5e9933a2"
    },
    {
        "sha": "e1619b268a6f4f3eec3ab7ecd558b02665c7f50b",
        "description": "glthread: add a trivial thread-safe way to skip display list execution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c14d755f3d3ea0f1501da5da021d59f26379d1f1",
        "description": "glthread: add an option to make glCheckFramebufferStatus a no-op",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f4348ef60d51b07ee40ebfd4215118de281bd7e4",
        "description": "glthread: don't sync for glIsEnabled with a few enums",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b370cbe289e5c0908f53283afd711f439be8879",
        "description": "glthread: don't execute display lists if they have no effect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b0c40bc9054404c1b0e42516b72d6d9d070a4c10",
        "description": "nir/lower_samplers_as_deref: rewrite more image intrinsics",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9ce151ff97b7a8776ed4cb2eff27bfbd836ea3d",
        "description": "zink: more accurately update samplemask for fs shader keys",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8899f6a19857d533d62945889c413b55cea5223c",
        "description": "zink: fix gl_SampleMaskIn spirv generation",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f42a4f64511cab640d57e4a1b1c58f9448f1395b",
        "description": "radv: fence->user_ptr and ctx->fence_map are now totally unused.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "861a35b3bc8779c5eb1d825a99151dd5e8c023ac",
        "description": "mesa: Require MRT support for GL3/ES3",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e26ea84da94a8157808f391c9849ae4a1c52cc8",
        "description": "microsoft/compiler: Use memcpy instead of a union to write dxil_features",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8b1afdc85078faee96cd1f8dd6f188843c0d705",
        "description": "nir/lower_blend: Use correct clamp for SNORM",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b146fb466d1e710a7bd3c9e9f5acf02a1e7523b",
        "description": "panvk: Pass through alpha_zero_nop/one_store flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "77928e45ebb7b1d298e67abb2446eee24a6d0d98",
        "description": "panfrost: Pass through alpha_zero_nop/one_store",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "169aa9f1777266098de4388054ab56fa7b09190c",
        "description": "panfrost: Test alpha_zero_nop/one_store predicates",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c6b2c1069b551889363e3fbccf85db29824e8dad",
        "description": "panfrost: Add alpha_zero_nop/one_store predicate",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "87b68e77ccd1c67cc552ff95b158d2ac32987977",
        "description": "panfrost: Rename depth bias fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "29762ea89751b64121b46a9c04bcb87ae1096295",
        "description": "iris: Drop hint if primitive id is required or not",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1ee043e66214519513f3647e754ea051553cd528",
        "description": "anv: Drop hint if primitive id is required or not",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3f3322242667c677013e2585b464ed18c9e9c5fc",
        "description": "intel/compiler: Track primitive id in domain/evaluation shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2b86cf2850edf5adec8e1d674ba8383b91fb9148",
        "description": "intel/genxml: Add new Primitive ID Not Required bit field to 3DSTATE_DS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "90228a80ea2867126cc8a165f61d604803443b5b",
        "description": "zink: don't add dynamic vertex pipeline states if no attribs are used",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3072e6e0da5d226700a8d6d0683636b5c7e2f237",
        "description": "intel/compiler: Don't use SIMD larger than needed for workgroup",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4e7b71e00cb9ae27dff4f022fab58e14ea75fa2d",
        "description": "intel/compiler: Use SIMD selection helpers for variable workgroup size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7dda0cf2b8e7d13a6dce7b2fc48e95e260717aee",
        "description": "intel/compiler: Use SIMD selection helpers for CS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7558340ebb688a9607f0cbc05f8bad56d77b19fe",
        "description": "intel/compiler: Add helpers to select SIMD for compute shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c13da98929809dd2d9f752e938f9ae650ce3fcd5",
        "description": "zink: stop exporting PIPE_SHADER_CAP_FP16_DERIVATIVES",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3094524621291e6010232c4fd930e1e2d335f2ee",
        "description": "microsoft/spirv_to_dxil: turn sysvals into input varyings",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "b47090c5b33c89e5c29dd4f95230863ec018e2bc"
    },
    {
        "sha": "a6031cd9bd409c793c3a2928eaf9f04f09d2f55a",
        "description": "anv: fix push constant lowering with bindless shaders",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "9fa1cdfe7ffd9e7ebd83055e2008f3e4b8ada549"
    },
    {
        "sha": "f16961f2228cd34c84a18d5cb92fe14141e311b0",
        "description": "zink: add notes about binding points which aren't counted in util funcs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a6f5ec942158af5ff0e0d9171a621bf0acfae87",
        "description": "zink: don't check rebind count outside of buffer/image rebind function",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1a68f2eb8f4818944d656b8d0f9102c576815800",
        "description": "zink: only reset zink_resource::so_valid on buffer rebind",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dabe477b4f273964afedab2fce2be22f2617268f",
        "description": "zink: don't break early when applying fb clears",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a91e83b7f5d2822c3fc06d0edba1d0f70cadff9",
        "description": "zink: detect prim type more accurately for tess/gs lines",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3a894d2b2f6483e5a2a5ab66485062612eeff224",
        "description": "zink: split out descriptor pool sizing into separate struct",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "66a0d8204f775bd32bad68c42d4fec223272f9e0",
        "description": "zink: reduce hashed region of zink_descriptor_layout_key",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "103e93cbe6e228474d464e5aae14a5b86f4fec94",
        "description": "zink: eliminate a hole in zink_descriptor_layout_key",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3acab7a24c497f1ebdde95c9d8048cce2d932cf3",
        "description": "zink: rename zink_descriptor_layout_key::num_descriptors -> num_bindings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fb78c2de2129af9c0df84f2761e8bb94a59042fd",
        "description": "d3d10umd: Update for set_sampler_views take_ownership parameter.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e69a82f98875488381160bd3dba9b16c7e1062db",
        "description": "d3d10umd: Fix MSVC build.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf464affb426913fb56963651dc5aad47f50f5c2",
        "description": "d3d10umd: Update for transfer interface changes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b3c1090a5f9ae0e7999632219214fadb5a1d526e",
        "description": "d3d10umd: Rename Dxgi.h to DxgiFns.h.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d944136f3635aeacd97e167176c968c5078d92d7",
        "description": "vulkan/wsi/wayland: don't expose surface formats not fully supported",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "151b65b211907d92f3012997aba12b7dbe004e61"
    },
    {
        "sha": "1c4f1c229011f62b43fde1327fd0bd8762883993",
        "description": "panfrost: support PIPE_RESOURCE_PARAM_NPLANES query",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f96ad5d71c067c4263c1af1552d02637e76d9c01",
        "description": "panfrost: Support planar formats for scanout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1cd43ff030bb16beb9e4fee3271872f2520b6809",
        "description": "radv: lower the viewport index to zero when the VGT stage doesn't export it",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fad6a806359efd7c64dc81443ece6d430454865f",
        "description": "meson: build freedreno tools when other parts of freedreno not enabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6c614947714460f5517b1fa9e602368eaecbaecb",
        "description": "freedreno: support lua54",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d2a7afe34d8a3bba51035fce1d8b8e40c7a521d8",
        "description": "freedreno/drm: Move suballoc_bo to device",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c6fb9780cb6c8a3c04f7fd723d7a49800c19016",
        "description": "freedreno/drm: Add some asserts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "00a1eda61b3962f6d2b5a512887523ab1e74813a",
        "description": "mesa: add a no_error path to _mesa_handle_bind_buffer_gen",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "87b9a9667af67de44b854d4908df8b17f5d4f6de",
        "description": "mesa: remove redundant flagging USAGE_ARRAY_BUFFER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2f059b861e0d0f3e44d9f97d5f08fbb9ba19dc26",
        "description": "mesa: move setting USAGE_PIXEL_PACK_BUFFER out of BindBuffer to reduce overhead",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d3a134bbd7edee1bc5d4e7d936c547162753a827",
        "description": "mesa: remove USAGE_ELEMENT_ARRAY_BUFFER because it's unused and adding overhead",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1813bb59174a8f6e60a4f7aff2ac9af81a8810f5",
        "description": "vulkan: Fix entrypoint generation when compiling for x86 with MSVC",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "6d44b21d4fdea89673541de265f69258747c5499"
    },
    {
        "sha": "b7c7abded7a92d3e709d311e8b964b11145620cd",
        "description": "nir/serialize: Make more space for intrinsic_op allowing 1024 ops",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dc74285d32df9c09eb896bc4571066402d32d10b",
        "description": "aco: only load streamout buffers if streamout is enabled",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "db82d90451b3af4487930044152657aaef438703",
        "description": "radv: report error messages when the driver can't be initialized",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4765edb4e02efa57cd39b1718624721f6545e9a5",
        "description": "radv: fix build errors with Android",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "49c3a88fadd03af0954986a0bafde66b01940ed4"
    },
    {
        "sha": "ae2881c0f58f502126be8e19182ea7f4eb851b60",
        "description": "radv: remove old RADV_TRACE_FILE warning",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c2d522b07f9a7c719eef1b4ebea3cc5975bbe15a",
        "description": "panfrost: Remove duplicated #if",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "baaa88cf9e6692e744f6d98a0cdc5661ec4acae1",
        "description": "panfrost: Remove ancient TODO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2526f6f229406fa364e4375449d33e2048caaab6",
        "description": "panfrost: Enable AFBC on v7",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "789601a189eb8b0ff0b0f2a19ed276d9881877a7",
        "description": "panfrost: Decompress for incompatible AFBC formats",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "93c9123c313d688913ed86f77c6841738f94988a",
        "description": "panfrost: Add internal afbc_formats",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "342ed4909fe7611525b9029977463ef3291ce7ba",
        "description": "panfrost: Workaround ISSUE_TSIX_2033",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e0335ad8881d3feeb89b571b1047bb8799ae23b7",
        "description": "panfrost: Fix gl_FragColor lowering",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "28ac4d1e00553b38691966b4b9b95fee826c97d4"
    },
    {
        "sha": "be5456e11643dee690af5d7dd8419c766c108e7a",
        "description": "panfrost: Remove unused MIDGARD_NO_AFBC quirk",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "68a7fafe2a54ca61700a955bd8d7884e2f750814",
        "description": "panfrost,panvk: Use dev->has_afbc instead of quirks",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3e168b97cc7d38e757fa5cd51ecd25c18d84daf6",
        "description": "panfrost: Detect implementations support AFBC",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ebe9494b61bf7cb6bb4e714f4cd43390629c0c1b",
        "description": "turnip: Drop the assertion about the temporary bit in sync fd imports.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ccf672fa3c000b958f961812152cc1a359a8792",
        "description": "gallium/u_blitter: Read MSAA z/s from sampler's .x instead of .y or .z.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "785dd68599e704847aaf324e69f09b66551f2df0",
        "description": "iris: also dump bo's imported and exported flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "520300ad2202adbe652909839b94f6eedf489aa5",
        "description": "st/mesa: don't crash when draw indirect buffer has no storage",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "22f6624ed318e8131681ec1f2e7b3a59449df412"
    },
    {
        "sha": "2822b1345cff69292a288243a7c2a5e50e487977",
        "description": "tu: Expose required VK_FORMAT_FEATURE bits for planar YUV formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "330a8cfa07b970e515b78227cf75873c1fc4da48",
        "description": "turnip: enable UBWC for NV12",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9c895e133bf2fbde0d318e68d7c201b4f66ff22d",
        "description": "tu: Emit GRAS_LRZ_MRT_BUF_INFO_0",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c135c2cdb7fd68338cdbc473d4389681750dd051",
        "description": "freedreno/a6xx: Rename GRAS_2D_BLIT_INFO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ea6f17fdf939adc315b66e3ff88f83d3cc37029",
        "description": "freedreno/layout: Fix the UBWC block size for the Y plane",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e0a74c7cad5c37ed91d87a4273affb6fd6ad38f4",
        "description": "util/format: Add PIPE_FORMAT_Y8_UNORM as an \"other\" layout format",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ceaf56920c5bdae6ed8807fe69044c0a04f76754",
        "description": "v3dv: refactor TFU jobs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1465ec8cf35c3e62635bba31682a0e2673e40100",
        "description": "iris: clear bos_written when resetting a batch",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "e4c3d3efc7a2fa9f975b1f9211f7d61aa7d31d94"
    },
    {
        "sha": "b6a69dbb40d06963056b14158acd0521a91fc395",
        "description": "radv: re-emit prolog inputs when the nontrivial divisors state changed",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "d9c7a175424308b4da7673ea885fd8a8b3edf862"
    },
    {
        "sha": "8ec682433573ededbdae7f63490cabf5bdfaa89a",
        "description": "radv,aco: decouple shader_info/options from radv_shader_args",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1429feaf293e5a34dd32c632b46931f15e769bb6",
        "description": "crocus: Replace devinfo->ver[x10] checks with GFX_VER[x10]",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1561d0126a569f76b1adbdd1a5e8ec79f9577450",
        "description": "broadcom/compiler: fix assert that current instruction must be in current block",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "265515fa62664eac006dcff278ed549c75863b79"
    },
    {
        "sha": "e79e1ca304fd329a895c848048c784ce3f349d46",
        "description": "intel: Drop Tigerlake revision 0 workarounds",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6ef192bddf1e4cf05753b45016c3184b235830c5",
        "description": "mesa: discard draws with count=0 to decrease overhead",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7daff157bb3474373a03fceb1ffd2c98f115653e",
        "description": "iris: Refactor the assignment to possible_usages",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "114f87c1c70e56587cbc3d53f7593b633a008028",
        "description": "iris: Set DISABLE_AUX_BIT for AUX_USAGE_NONE modifiers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b9d8793646db42a78907ca91fe6a177f9a1859eb",
        "description": "iris: Disable the MC_CCS modifier with norbc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b71264e4656fc93904827ad7d0737220da3f303e",
        "description": "iris: Convert some mod_info checks to asserts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "138be96301bede223cd141d7453c06142e5c8eb2",
        "description": "freedreno/ir3: Fix validation of subgroup macros",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e68d918ffb7b953c36fca05afd994c099bd25071",
        "description": "freedreno/ir3: Get req_local_mem from pipe_compute_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f58438320cf8026bf173e1df722af9125fd212f1",
        "description": "freedreno/ir3: Add ihadd/uhadd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5ce806ed73a45a8c856ee79f4fe0074e0bd7b73",
        "description": "freedreno/ir3: Add wide load/store lowering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a7ac8cd40938c19d52589dfe541b6c511e71869",
        "description": "freedreno/ir3: Fix reg size validation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8a6934dfe8c6a4298a192d11dab8d49f3827b4c0",
        "description": "freedreno/ir3: Fix load/store_global_ir3 type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "81eefe0090b69437b79ee3514d9b6fea911241d7",
        "description": "freedreno/ir3: 8bit fixes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f7b2d613c588dcbd3ae98341140896d9e6a61aa6",
        "description": "freedreno/ir3: 16b bools",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a2562a545ba694b33afdf06ff3f5f2867dc26da",
        "description": "freedreno/ir3: Deal with zero-source instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b6e11225a28b420fd3754e10ed9542cb048e9c52",
        "description": "freedreno: Fix set_global_binding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a35ba5c4388eb375f7f87747cb3dcddc4e8ac2f",
        "description": "freedreno/ir3: Move lower_idiv_options",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e544a9db16e200f3d91ae8faf815ca0656ca3052",
        "description": "freedreno/ir3: Add support for load_kernel_input",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e10c76d277983b2f21a5aef1507a42b4b3e9de8b",
        "description": "freedreno/ir3: implement load_work_dim intrinsic",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3bd265a39329262b26d63fcdf405b328a870d1f7",
        "description": "freedreno/ir3: vec8+vec16 support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5bbf77be8848ba138e248ded9c14959985b0cd5",
        "description": "freedreno: implement set_compute_state()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1e9f27f37fb63d8cd0aece71c4eb0cf4f0efb2d9",
        "description": "freedreno/ir3: Handle MESA_SHADER_KERNEL",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "83a1bca9521472929b3679df55d3c9e05479cbac",
        "description": "freedreno: Skip built-in shaders for clover",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dff8a0c4cb07ab69d9b0454c77dd89e621c417e9",
        "description": "isaspec: inherite parent's bitset gpu gen requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d77b9fb51845112dfd6ec10d69adf3f8f4961224",
        "description": "isaspec: Fix gpu_id for default_options",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4e7541b9dd7d9dae76606717c58aa1a0bfc4a39",
        "description": "freedreno/ir3: use stg.a/ldg.a only if offset is reg or doesn't fit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "064c806d23b70108d9bfb74bcb67ed3e512bd246",
        "description": "freedreno/ir3: Add load/store_global lowering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d85eb9268ad821b3759eceb954f0ef34677ec268",
        "description": "freedreno/ir3: set proper dst size for {store,load}_{global,shared}_ir3",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1ef43a0be7056f8d0e21e89d94e08a4cc23d6240",
        "description": "freedreno/ir3: disallow immediate addr/offset for ldg/ldg.a",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f45b7c58c49ba7eb8007bc1fd32187ff6d50380e",
        "description": "freedreno/ir3: Lower 64b phis",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bee9212efbe0a56d989d59c32545dc3fb30b30ee",
        "description": "ir3/freedreno: add 64b undef lowering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d65e6f56dee59205675fbfe95e8bbfe354debec",
        "description": "freedreno/ir3: 64b intrinsic lowering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1eee1fda115ee618da3d384a683f1aeacdcfe392",
        "description": "nir/lower_amul: do not lower 64bit amul to imul24",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b83c9b21a6a705370c95a98239869be6e71a1239",
        "description": "intel/compiler: Set correct cache policy for A64 byte scattered read",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "272af39be17072e5712c1d51671a9fd33f246085",
        "description": "amd/addrlib: cosmetic addrlib update",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "69a1b02b688849ec6a57ce90fce7ef799346eea9",
        "description": "amd/addrlib: change how the license is formatted to match internal tree",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf0bc4fb55f96cab82d76a2d6726690070fd92fd",
        "description": "frontends/va/av1: handle multiple slice params",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "996e81fb70419bdf0e7bb9afea18c142897730dc",
        "description": "aco: fix loading 64-bit inputs with fragment shaders",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "75bd37dc6a33c3b00c7349dcd0295415a9c46d59",
        "description": "broadcom/compiler: disallow tsy barrier in thrsw delay slots",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9202e8cbafc70d989e4db45a895c36801c30e217",
        "description": "turnip: Make copy_format() and tu6_plane_format() return pipe_format",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "68f8bbb37ea76437a5e334bd3f635946939812fb",
        "description": "util: Move freedreno's snorm-to-unorm to util/, adding remaining cases.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cbdc8e09bf72b6b24fcf31f47e2cf3178d473e21",
        "description": "turnip: Switch format_to_ifmt() to take a pipe_format.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e4e8db01327d4363ac18c9e92f8fa9ee986cb6ba",
        "description": "turnip: Switch tu6_format_color() to a pipe_format.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b68fc0c6a6caddd228755ae3d43ce92e0b1f807",
        "description": "turnip: Switch tu6_format_texture() to a pipe_format.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cfabdbd7d3fd9770ab599b230ae4ee832761955f",
        "description": "tu/clear_blit: Move around copy_format()/tu6_plane_format()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "acb83e1b13d43586bbda0ffb609afbe60da0b8aa",
        "description": "v3dv: enable Vulkan 1.1",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bd81a236205e080ee2c68d6f0f7dbf82e26bcd20",
        "description": "ci/piglit-runner: Fix funny indentation of the piglit-runner command.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "440f207a1f21b5c14833e555f5c6a8cdcac6897d",
        "description": "ci/deqp-runner: Move more non-suite logic under the non-suite 'if'.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "92748e40ef0ec0c96addaa0fd9dc9389a9d44e5d",
        "description": "ci/deqp-runner: Don't start GPU hang detection for making junit results.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "61ca900b69521725d318587598c992188b5a2429",
        "description": "ci/deqp-runner: Drop LD_LIBRARY_PATH=/usr/local for libkms workaround.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "899174c210b65e15759ba398f08470464659a786",
        "description": "ci/deqp-runner: Move remaining asan runs to --env LD_PRELOAD=",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "37c690ad1ae01dce10b0989d71ef0fb3bd913642",
        "description": "ci/deqp-runner: Drop silly CSV env vars.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b978688df642870a2a639e267552e6e6088aa48e",
        "description": "ci/deqp-runner: Use new deqp-runner's built-in renderer/version checks.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9ddfd297e085c7cb8b7acef9cf0d2696181ade43",
        "description": "ci/deqp-runner: Simplify the --jobs argument setup.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "59f3a8e6b4b0427918c36451542197c5d4c24bc7",
        "description": "ci/deqp-runner: Drop SUMMARY_LIMIT env var.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "670fd8123be4c6142239439d1273b3a4d8a58cb1",
        "description": "radv: Fix memory leak on error path.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "80841196b2dc921db38d9f3403e67d57749bc1d8"
    },
    {
        "sha": "b797ecac7a414cee7bae75886fdaf97146ce2034",
        "description": "ac/rgp: remove useless code related to GFX6-7",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8304392c3522dbd0f716e2a10fb4020a96b76b20",
        "description": "radv: add an assertion to prevent GPU hangs when VRS isn't supported",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a32a7fdfee5235ccc85054fa9f0c990d41611aa",
        "description": "util: Move test sources to tests/ directory",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "abf2af64aca1d4b3ac8e63f8bc59ff4df00adf81",
        "description": "util: Convert sparse array multithread test to use gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "213c9e944c405eece6afc786d1d9a2612a47ebe6",
        "description": "util: Convert roundeven_test to use gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "83449f61ba369b94def3b1c1232a7879fec200c0",
        "description": "util: Convert rb_tree_test to gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d36ea7d585fb66a1df85dfb8e78c90995073121",
        "description": "util: Convert mesa-sha1_test to use gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "89eebca057247e320a9125135fb4c0d77b0e331a",
        "description": "util: Convert blob_test to use gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d4c536d3d9eecf3d2edb6c27dcf1752c747a8e03",
        "description": "util: Convert u_atomic_test to use gtest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d78a31bec96e94c6dee6514eac49706a1ee20b3",
        "description": "util: Move tests in single file directories to tests/",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2209f5794d23d832924d8870cc1db5c16c3cc094",
        "description": "util: Consolidate existing gtests in a single binary",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "60768f4029bb72a655cd4722b95087b531769599",
        "description": "docs: update calendar for 21.3.0-rc2",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "662fbc01204c4798d140b42f2bf5d7ad7b1be89b",
        "description": "nir: Use a single binary for gtests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8cb7d6f81b21dc6c7c8eabd900dc9e865f310fd7",
        "description": "spirv: Use a single binary for gtests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "39f25945311e1385a54ddd17f71f9f6023d97256",
        "description": "anv: Implement VK_EXT_global_priority_query",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e7599f09a149347b74bf0913cdd86d64e0ae9d20",
        "description": "ir3: Use stp/ldp base offset for {load,store}_scratch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7deb0d296d83286b1f83dd0baeb4e355e717a615",
        "description": "ir3/cse: Support mov instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cd3f0683cd2a29bf0c2672b68a89c28a9e7dba21",
        "description": "aco: simplify emit_stream_output()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d50be41f8f69be043e4e3b3da3f93bc71e904444",
        "description": "broadcom/compiler: remove unused macro and function definition",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9bc0fc89c8909fd5cc9c591aa98038f927a01e0e",
        "description": "aco: disable mul(cndmask(0, 1, b), a) optimization sometimes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "86b3d8c66ce17ddcaefa5bdea68882cc03a57f15",
        "description": "zink: rescue surfaces/bufferviews for cache hits during deletion",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "80d5e40fd1392af9401db3d0bbcbcc6b7276675c",
        "description": "freedreno/afuc: Disable the disassembler on 32-bit builds.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5afce85f2b605b7384da02aa6654ab3a00eee2bc",
        "description": "Revert \"iris: add tile cache flush to iris_copy_region\"",
        "nominated": true,
        "nomination_type": 2,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "27534a49cf3872646cb8ef9371707d74a81b1986"
    },
    {
        "sha": "0523607ebb108d8c90bbda9c6564b66a0a6250e6",
        "description": "iris: Add missed tile flush flag",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "c85ea824bcab971dc2d9052b5dc937ee4b139cf5"
    },
    {
        "sha": "8633ce06af4a489fa0fd0b4478fe3325a12a3bb3",
        "description": "zink: stop leaking descriptor pool references",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fb8e0b9fb4707c473079f832c5bc2e9eacf6dba",
        "description": "zink: don't clear descriptor pool cache on context destroy",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6a852e4e06943b429382ac938c8b8fb94e834e06",
        "description": "zink: always invalidate descriptor sets on pool free",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "94fc6b08751d784b19f414acae1c479ced26ebd9",
        "description": "zink: unref descriptor pools in hybrid mode when they explode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d06529443422fc511cd98ba2c55c9c3f196bd61e",
        "description": "zink: remove descriptor pools from hash table on deletion",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d937298818220294be740cc6b3341807951acf6",
        "description": "zink: fix descriptor interface param for program_deinit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a9e0e4fc021d91ccd44e1975a63128640237683",
        "description": "zink: use ctx params for program ref/destroy functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d29e507adcd826dbd4e47c9a9bcbef3bf5162c06",
        "description": "radeonsi: don't set inline_uniforms for viewperf because it's enabled by default",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5f39acb33e3eaf2b9eaa79b068fb3b6b40025cf",
        "description": "winsys/amdgpu: set max_ib_size and max_check_space_size later in cs_check_space",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6129db68bf81ac72e72e3e39e574fe8f227d0f0b",
        "description": "winsys/amdgpu: remove force_chaining parameter from cs_check_space",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9d852a4695263ece8f8fbd5edf79edc272b1f41e",
        "description": "radeonsi: properly destroy buffers on failure",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d2dc06761fd0f5636cf88f06f5dec554d0f7fdb",
        "description": "radeonsi: don't sync before clear_buffer and copy_buffer if the buffer is idle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d4cf4b3cee94770f1b09b24839b4abd6a02f9661",
        "description": "radeonsi: don't update bind_history for internal buffer clears and copies",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "61ebdcfc299efd306e7faa959d1eb100a634b2ec",
        "description": "radeonsi: don't sync PS or CS before (clear|copy)_buffer based on bind history",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4bc8c2590e5a8f29e7dfa3bc8afb07463745166c",
        "description": "radeonsi: rebind a buffer only in shader stages where it's been bound",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "13b1424e96f87e0136551d8a19131d2d38f32e34",
        "description": "radeonsi: change bind_history to track usage in each shader stage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f2a97e9df7453807ae74d825bdd1a7eac6da8dc",
        "description": "radeonsi: add an option to use CPU storage uploads for threaded context",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "745ea994846b64a16a3368a87a74862910cf9b42",
        "description": "radeonsi: add SI_MAX_VRAM_MAP_SIZE definition",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "03186773a6bfcba3dce19ea3cc5d66afbeae0501",
        "description": "mesa: fix crashes in the no_error path of glUniform",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "bd2662bfa1c8746dc29a7bad32a1647379f78532"
    },
    {
        "sha": "5948ff4826864b1e1573030b16cc2b3b1a13819a",
        "description": "freedreno/computerator: Fix mergedregs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "22a203aa4c7aa2ae51e9cabe537ad20c191bfa5f",
        "description": "freedreno/isa: Fix ldg/stg \"halfness\"",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "834e8066c19d5e1dd13d063c75b34bed78a2239e",
        "description": "freedreno/ir3/tests: Add some 8/16b ldg/stg tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8657e201d00ab3bc05810840e50c297bba94219a",
        "description": "freedreno/ir3/tests: Don't skip encode test if decode fails",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "572a902566471b882267d0193784d2afd05ca4ba",
        "description": "aco: fix emitting stream outputs when the first component isn't zero",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3cbb0eb6a7b998f33d5175274fd3a4bf4fd5973",
        "description": "aco: fix invalid IR generated for b2f64 when the dest is a VGPR",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3df9d8ed807a6693d5fc8cbda4faec28af081ff3",
        "description": "gallium/u_threaded: implement pipelined partial buffer uploads using CPU storage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cc2f3a0168d11d74022b87b48f20c03ddeee6f53",
        "description": "gallium,vbo: add PIPE_BIND_VERTEX_STATE for display lists",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5ee2965283eb47f2cfd81d026a975565be6054cf",
        "description": "ac/llvm: accept primitives whose face culling determinant is Inf or NaN",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "efaab0ec500473bea07c626b7c99ed253865ab8d",
        "description": "ac/llvm: add helper ac_build_is_inf_or_nan",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e8f76b713a80c144383a96835727778b04365fd",
        "description": "ac/llvm: use fmac instead of mul+sub in face culling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "19c91a120d49ec5233c271f351495e662795223d",
        "description": "radv: do not remove PSIZ for streamout shaders",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "92e1981a8005c0ca7f48f38ddf8ff2b99ce95e7e"
    },
    {
        "sha": "60b7c3a0f49241f95e5b6f8da5d60eaa7bbeaabb",
        "description": "meson: disable -Werror=thread-safety on FreeBSD",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "0d5fe24c9b7de15241727922e18c3ea08d11ef08"
    },
    {
        "sha": "37d6ce4ebb43b9876683e1a7a38ab97634c65879",
        "description": "llvmpipe: swizzle image stores for CL BGRA",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "86b24fba05b940ccae9b15aa89a7361a9ea92a30",
        "description": "zink: align pipe_resource and sampler_view allocations to cachelines",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "89ed9ed40053695c4c54980996713c11ab7d4b00",
        "description": "zink: don't ralloc zink_resource structs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4cad3da409e703ad4fb828c9fe176f3ae6146535",
        "description": "lavapipe: clamp attachment clear rect sizes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "67dd6b9f0f1d41f08181c0277ff35ac24235c5d9",
        "description": "lavapipe: pull layer count from render state during resolve",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f25a98318bfe79bbe66443e1cb86400de4ddfc4e",
        "description": "lavapipe: remove lvp_subpass::has_color_att",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f7e9500dc27df9c2d910a749532a53e33f92bf52",
        "description": "lavapipe: simplify some attachment derefs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d914df72ab7a40eeb2414ea78708eea34413c24d",
        "description": "lavapipe: store subpass directly to rendering_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0c81efcf449ce894bf67553784194e5e5e7c9e7",
        "description": "lavapipe: remove last VK_ATTACHMENT_UNUSED check",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "58e18a2be9a601581196bb19b31d63f105c8ec06",
        "description": "lavapipe: remove lvp_subpass_attachment and use lvp_render_pass_attachment refs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e3bc8b18d8fe95aa175497ae2d4fad19a24c088",
        "description": "lavapipe: remove lvp_subpass::max_sample_count",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e3d84e30ac48ac323eb1e4a385e69edbdb65947",
        "description": "lavapipe: add attachment index to lvp_render_pass_attachment",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5cf568ce09347b7423f8bea0fa14cd2b2cfaa60b",
        "description": "lavapipe: remove lvp_subpass_attachment::layout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "eaa82252f974e831a295a5d26f70387038d26b78",
        "description": "lavapipe: remove lvp_subpass_attachment::in_render_loop",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "afd8820d66569a04fe4f5cffa1b3adec83753be4",
        "description": "lavapipe: use framebuffer attachment_count member instead of renderpass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dd70ff3b8c45ed0905d163da676116366eab8234",
        "description": "lavapipe: remove some unused struct members",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d103d5bb5dc9e72489de227fa573e049034b6272",
        "description": "lavapipe: stop reading renderpass during pipeline creation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cae1ef0a11a6846d3caafd7fcafeadd6fa7ca6d2",
        "description": "clover: use max shader sampler view/images queries for clover.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dfd0f5dbfd494cab04c9f436d3fcbfc804459c1d",
        "description": "zink: move last of lazy descriptor state updating back to lazy-only code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "140d3ea8c6776f4650abe5156bd32734d57604e3",
        "description": "zink: add an early return for zink_descriptors_update_lazy_masked()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7c840f510321c841518e26befd9c56c7d5a38beb",
        "description": "zink: move push descriptor updating into lazy-only codepath",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b140d58b1f93c0a2dc900c8147f438294f3ccd6e",
        "description": "zink: don't update lazy descriptor states in hybrid mode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "75e51138b1dadabf043708d4947d911705ccffc5",
        "description": "zink: assert compute descriptor key is valid before hashing it",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "497ce3c38a498d0f0aada7303d258bee4c0fd05b",
        "description": "zink: clear descriptor refs on buffer replacement",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e66558985a9e85393ff844f8a16e85b4cf812f0e",
        "description": "zink: fully zero surface creation struct",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a2789fde0c7a8aa5436560692633838079e2e848",
        "description": "zink: add a read barrier for indirect dispatch",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "11dd9e4ee4a5241ee18cfe68d8bee2ee3da55dc7",
        "description": "zink: use static array for detecting VK_TIME_DOMAIN_DEVICE_EXT",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "039078fe9720797f5eaa109a7e9d27841eb6bc73"
    },
    {
        "sha": "061610a7dd843483924fea6528519d8098d5fd87",
        "description": "st: Fix comments in commit be6d584de43966e",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "753f595e3d075be35547c4a01d9a1fd254c6df62",
        "description": "clover/api: fix clGetMemObjectInfo for images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b4f9b15dd0e7cf1a5fd10f3b9c4ac0a4bfa5c804",
        "description": "clover/formats: pass in cl_mem_flags for better format checking",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f09e6c1c5fcdfa0e16d09b30cc5deb1a4fedd728",
        "description": "clover/format: Full rework on how we declare supported images.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "be6d584de43966ee58bf1fcac156ebf8040081d1",
        "description": "st: Fix 64-bit vertex attrib index for TGSI path",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "77c2b022a0c52d84b289bc836f30ce186a374d0d"
    },
    {
        "sha": "e65d6f45d29fe2b78e1689f5bcb33e84f94cbb27",
        "description": "radeonsi: reorder and don't print patch level DRM version in the renderer string",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f9d7db02629df364dc96668c8954bd42a78e1dfe",
        "description": "ac,radeonsi: print a lowercase codename in the renderer string",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cbcdcd42fcd43dd0c60f6805e3fdd03c817ca265",
        "description": "radeonsi: enable shader culling on Navi1x consumer SKUs as well",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8cf802e8effeaa324fcb1864048cfdaff5c7acfb",
        "description": "radeonsi: replace the GS prolog with a monolithic shader variant",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "62798d2c1f1f11e86058018c6a94c1ac50a6ca24",
        "description": "radeonsi: don't pass NULL into si_get_nir_shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3350957f3cf7c9c883e49a868016b83aeca52c77",
        "description": "drirc: Apply vk_dont_care_as_load workaround to Forsaken Remastered",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ebca227db15b8642be51f2dbefbad804c948c7dc",
        "description": "turnip: implement vk_dont_care_as_load workaround",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3d69800a0b111daabf51266a815be3be639af80c",
        "description": "driconf: add vk_dont_care_as_load workaround option",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd31989ecb4b1cca52a2eaa386770e93198f11bc",
        "description": "turnip: add support for dirconf",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5b797bd48555ea70a4313d68e34a0899e568b30b",
        "description": "radv: fix OpImageQuerySamples with non-zero descriptor set",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "de568c3b2c75778b4bf3513e85588614a5714990",
        "description": "tu/clear_blit: Stop creating a franken-image for staging blits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9803c1aa1004ce2c2ee11ecbc92dcbfdce5611e7",
        "description": "tu: Remove cross-check scaffolding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d785aea530958d50b1db4468b14a4498287f35fb",
        "description": "tu: Switch clear/blit to fdl6_view and cross-check",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1874e12f195c88d41977fa80ca087dfcf33ab97f",
        "description": "tu: Use fdl6_view in tu_image_view and cross-check",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5509132a807a6cf14f6e240394b9e52ef0240bef",
        "description": "freedreno/fdl: Add fdl6_view",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "464b9d6bf10a336ac76701c58828b85a4946940e",
        "description": "freedreno/fdl: Add mip_level to fdl_layout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7bcccd1f085ba778c1cc95e0ce0e80bba96f02b8",
        "description": "freedreno/fdl: Constify fdl6_get_ubwc_blockwidth()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a90aa8d2e36ed65d0be14eaa03aeaa943a2c00b",
        "description": "vk/format, v3dv: Add a vulkan -> pipe swizzle helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a2e40df5e8490de739c66865f90fa6804e41f6d",
        "description": "Revert \"gallium: add a is_dri_blit_image bool to pipe_blit_info\"",
        "nominated": true,
        "nomination_type": 2,
        "resolution": 2,
        "main_sha": null,
        "because_sha": "22a1b7c5b3a9cdbf05a0fd97fb193763a525b732"
    },
    {
        "sha": "ec2eff8f3897f78b027742a47d1a8b705965f655",
        "description": "radeonsi: use PIPE_BIND_DRI_PRIME instead of is_dri_blit_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1863b761a6f533abbf55dbec0a8846f28b0159e0",
        "description": "radeonsi/gfx10.3: enable SDMA for DRI_PRIME copies",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8791e831b115b916f39ed46b497a2bcaada8b10a",
        "description": "winsys/amdgpu: add uncached flag to the imported DRI_PRIME buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a90507252172bb0e353dd0e368d8fb773a1069af",
        "description": "radeon_winsys.h: add a parameter to buffer_from_handle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e9c3dbd046137aebcc18e1d7a1040dc669a0c140",
        "description": "gallium/dri: let the driver know if the imported image is DRI_PRIME buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a5de842499b31161f5db702446d1fe8081d7956",
        "description": "gallium/dri: add createImageFromFds2",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "48551a1807d69f104f6a4dd8fd75d6c53f833925",
        "description": "gallium/dri: replace bool with flag parameter",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ae525da0e45b6d1a7c6921576f63380ae5e8ac95",
        "description": "zink: Fully initialize VkBufferViewCreateInfo for hashing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4878e351593a35c4c80bae644d5e136bc044e4ea",
        "description": "v3dv/ci: update expected results",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "234c69f60097d01b2c31a51421abc5a39321130c",
        "description": "radeonsi: use viewport offset in quant_mode determination",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9eb010ee1e14feeaa43a5b538023b7b4352236e1",
        "description": "anv: Fix assertion.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "35315c68a574505a5b2cecaa64612fb8cffa8515"
    },
    {
        "sha": "61be0bd34b34617e52211280878e71d9d1f174eb",
        "description": "radv: fix removing PSIZ when it's not emitted by the last VGT stage",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "92e1981a8005c0ca7f48f38ddf8ff2b99ce95e7e"
    },
    {
        "sha": "91ff83b6c871dcfc33629924a7ebfb0d8b17be98",
        "description": "clover/image: add dimension property",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "786987c4478ea1bdae9ab79a642e0f78c5364948",
        "description": "clover: Implement CL_MEM_OBJECT_IMAGE1D_ARRAY",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3200669c2b6189cdfa1ae056e1a8234951742928",
        "description": "clover: Implement CL_MEM_OBJECT_IMAGE1D_BUFFER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0ec5e50d8afaf5a0ffee0c87437907fa642008d7",
        "description": "clover: Implement CL_MEM_OBJECT_IMAGE2D_ARRAY",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0abfbb76ffb949af71c79db5354e36a639f01d0f",
        "description": "clover: implement CL_IMAGE_BUFFER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3298ee546e85f80d63ccee9f81a92b0f075232af",
        "description": "clover/images: Add array_size to implement CL_IMAGE_ARRAY_SIZE",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "029f22e430f74a5d26eb7e69a08fe703ccc4e77a",
        "description": "clover/image: add templated basic_image class to simplify image subclassing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f6ecd284e5dee852a87bdc77a1fab625d061b440",
        "description": "spirv: Don't add 0.5 to array indicies for OpImageSampleExplicitLod",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "589d918a4f9da83e3ae441aa674372a141d23349"
    },
    {
        "sha": "ab2cfeba4823a48c4abfe2a574082d483a88962d",
        "description": "vc4/ci: update expected results",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "17a565e0cfb79fb8078fcf7f7cc7b6be0ef887ba",
        "description": "llvmpipe: fix userptr for texture resources.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "9a57dceeb760a1d4f7d9d1666bec0844ee41852e"
    },
    {
        "sha": "d31ca63527e3eb5bf271267c2a60a9b5af83bd89",
        "description": "panfrost: Don't allow rendering/texturing 48-bit",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "28d12716e8ff04b50a443ecaa6c7b519117303a5",
        "description": "egl/wayland: Properly clear stale buffers on resize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "885f9b3b7540485af5dff65475078bfceaa6daa5",
        "description": "radeonsi: don't memcmp inlined uniform values if uniform inlining is disabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c5a32b5fe211862e92a57443bb4bdffd04c8a54",
        "description": "radeonsi: split si_shader_key into ps and ge parts to minimize memcmp overhead",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "385c9e1cafbb2b60993478bc21bc51d712d0cb9b",
        "description": "radeonsi: si_state_shaders.c -> cpp",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8a42ea69a69ffc7264345b37add2360486fb2515",
        "description": "gallium/util: add some extern \"C\" guards",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b62b2fa4b9c773705b20678810419d40559aae19",
        "description": "compiler/types: Add a wrap_in_arrays helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5818d47ae661bfc7121a2e6c80d4e5870cf5fe8c",
        "description": "spirv: Use texture types for sampled images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "99cda38c81691e508a5707c3ff0c2e506809b45d",
        "description": "clover/nir: Don't remove texture variables",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c398139e1022d38c0343ea9e69ec511340986dd",
        "description": "lavapipe: Allow for texture types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b8a0bf2343da8bbc3fc1a2afd3c493c6d2362089",
        "description": "nir/deref: Also optimize samplerND -> textureND casts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2ab5546a96780c1589f587b84366b074cddd8c6a",
        "description": "nir: Allow texture types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3ace6b968b3254cb83c5e6ffef9864d300265339",
        "description": "compiler/types: Add a texture type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7558c9cb07ee186dac374c279520385ae7c036c3",
        "description": "compiler/types: Unify the guts of get_sampler/image_count",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "175f33e88fb2ed2041b278de493b2db5b1578951",
        "description": "compiler/types: Combine image and sampler type serialization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d58e31f10e6229bf25bc2f0bf78a5946a8840ba",
        "description": "dri_interface: remove gl header",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e19d9046dbdeaf490cde1668a955cb8a573e9d3d",
        "description": "dri_interface: remove obsolete interfaces",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d343aef94233d0064fada98ae93bec0a420a0baa",
        "description": "nir/serialize: Pack deref modes better",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9272a952c9b4fa1bcd4d61997e1785ea9471a32d",
        "description": "nir: Re-arrange the variable modes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "956199e87088895682b2d86fc4ac3327bed0a4e0",
        "description": "nir: s/nir_var_mem_image/nir_var_image/g",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e73096bd6d4c1b3ad6609f85140d313e56ae8b99",
        "description": "meson: use gtest protocol for gtest based tests when possible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aac47c4b24adab806148d04c4ea1bbe06acb2828",
        "description": "microsoft/compiler: Shadow tex instructions always use shadow samplers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fe2674dd52dd63e6fb4a69e037a7cb5266049e4a",
        "description": "aux/pb: more correctly check number of reclaims",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "3d6c8829f54e52ae39b91b18d49acccf47755320"
    },
    {
        "sha": "58f605e4d488fd8e3cb657f6c46f70155ed95aaa",
        "description": "nir: Drop our attempt at typed-based image mode validation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d05f7b4a2ca68cc11825239273f6d8558b5ffde8",
        "description": "intel: fix INTEL_DEBUG environment variable on 32-bit systems",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "182237e1e89122b6a09f2a5607e9fc2b138fb11b",
        "description": "virgl: remove unused pipebuffer include",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3d6c8829f54e52ae39b91b18d49acccf47755320",
        "description": "aux/pb: add a tolerance for reclaim failure",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "29177c7ceee351ea9cfa4a0c3f81ae2c70c83d9c",
        "description": "intel/compiler: Build all tests in a single binary",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "35b69907061324c8432664b24ea8319c31e65564",
        "description": "intel/compiler: Rename vec4 test fixtures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0480595d03e95efbc7ca38083549c37d70de5ae0",
        "description": "freedreno/isa: Add immed reg accessors",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e08d152d68cd192b0c68d19c1228c06bb9166433",
        "description": "isaspec: Add bitfield size assertions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4166635bd18507fba382fc600e814ae9fdeff8bd",
        "description": "isaspec: Do not emit duplicate field encodes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e01759e6f31b958c152ed42b2fc9cfe4eddfe31e",
        "description": "isaspec: Fix derived field width",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5b6e5db5d022988612673598ee49b96da683cb85",
        "description": "freedreno/ir3: Don't lower s2en if samp/tex is too large",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bfd8b7c9307e400ae76b02b39f83756cf1c66c1a",
        "description": "freedreno/ir3/tests: Add additional disasm test vectors",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0ecfeb0234fa007ccf7eab0bdbe6d23c773ba15",
        "description": "freedreno/ir3/tests: Fix indentation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8b0550f09f816063c4f3ab3dbfb03160f0081915",
        "description": "freedreno/isa: Fixes for validation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9516d8ce98b40a93b70d8c68d57bf2a2ccdd1ece",
        "description": "freedreno/ir3+isa: Cleanup bindless cat5 samp/tex encoding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d43f89f17a8259c842016fa559fa33c1c6279105",
        "description": "ir3: Images are always nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9601556079d8592ca6c149d83335e7ab0405485c",
        "description": "microsoft/clc: Images use nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "26d603da0710b67d93b8d163cc37f109af7416b8",
        "description": "nir/gl_nir_lower_images: Require nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6cce80976d701003ed5650a14211e73183a6a3a",
        "description": "intel/fs: Stop emitting TGM fences for nir_var_mem_ssbo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ab40f517fa5620e9b44f1f352e3e66b0e5b7b34",
        "description": "aco: Split var_mem_image barrier handling from global/ssbo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4c5a88d73536207db045d92871d01f28778c1c22",
        "description": "nir: Validate image variable modes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "97a7c0ab1b57f04681f422226fe834efa3485f0f",
        "description": "st/pbo: Use nir_var_mem_image for images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "458b4d2095795ded0d46a6851adc2de8392a7372",
        "description": "radv: Use nir_var_mem_image in meta shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f51fda92cd42620c080b23c7a57996a249dc477",
        "description": "ttn: Use nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b8ee37472d3e271fa666d82910588497435a86b7",
        "description": "glsl: Use nir_var_mem_image for images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cfdc7ee066ea86c87d128e68c43ce7103da3ef5a",
        "description": "spirv: Use nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "219ac26ea3361d3ae185d9e98a753656fd33a534",
        "description": "spirv: Assert that OpTypeForwardPointer only points to structs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e87dbfd3e8a5cf69c3ddc89fce17a0388f872806",
        "description": "ir3: Check for nir_var_mem_image in shared_barrier handling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ae58894ee79925088c9745d909c5631b211aea7b",
        "description": "zink: Images can live in nir_var_mem_image now",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d68bedbb456dee93b55d36017078d798378eb041",
        "description": "clover: Use nir_foreach_image_variable for images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aefa22ddb52bce625d562ce5528cd1e21ac347e4",
        "description": "clover: Insert dummy uniform variables for images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6818811fc4046b347d1d9ad7b39b7c2193674981",
        "description": "nir/lower_readonly_images_to_tex: Also rewrite variable modes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "225caf537aa844ed78537f4cda239c4379cf2f7c",
        "description": "llvmpipe: Support image variables living in nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d84fd86af1a392d1aa56e5e3b27ad0300fc8a8c2",
        "description": "ntt: Separate image and sampler handling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "12b3ffe4000b367270e00433e7ccaee7af871851",
        "description": "st/nir: Assign uniform locations to nir_var_mem_image vars",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b1385f3c87f7ff844cdcd5f9c21e94bd1a5454e7",
        "description": "nir/gl_nir_lower_images: Support nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7bdae87b93953a1323677729ff92be77860313e6",
        "description": "nir/gl_nir_lower_samplers_as_deref: Support nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0d8dc13e0974a45d1211fb4525ade3a4836fffd",
        "description": "glsl/nir_linker: nir_var_mem_image is also a GL uniform",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "94b9f25883a1e2e06c93b8a02d156f197108aed0",
        "description": "aco: Add support for nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cd49706cb1ab3e808887ed2b384afb873fbb2598",
        "description": "amd/llvm/nir: Add support for nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "26582db077500a4461ae6ef944a0a8977a03bb92",
        "description": "anv: Use nir_foreach_image_variable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ff39916ce71b3842f825202c11a82461bd39e459",
        "description": "i965/uniforms: Handle images as a separate pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d7065ef0430e729cac7fffbdd7af2004745f5b0",
        "description": "intel/fs: Consider nir_var_mem_image for TGM fences",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a53c33fbe3004856f5c4b2d12e711aaec5f520f",
        "description": "nir: Add a nir_foreach_image_variable() iterator",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "de3705edb0368c376abe7fc2f660f9c5a5a5dcbf",
        "description": "nir: Add nir_var_mem_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "872750bb96f692b525be0d169af1525072a12c82",
        "description": "nir/schedule: Handle nir_intrisic_scoped_barrier",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "73d6e153eb984ba72233a6e5f66e5467857fe9a5",
        "description": "freedreno: Fix for large epilogues",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9ee060b614cf61b4e75cca5b6d74b364596961b2",
        "description": "v3dv: enable VK_KHR_swapchain_mutable_format",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "aac4e1f8229e7978310ca81312f0ff925e3485b7",
        "description": "aco: do not return an empty string when disassembly is not supported",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5387522bd00147f298e5799db41db94f9a4a37e3",
        "description": "iris: fix scratch address patching for TESS_EVAL stage",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "4256f7ed5847505c30e903b6674dac88c5d03315"
    },
    {
        "sha": "7681500ead4f085d75b0b2f39b48d1f9dc637dc9",
        "description": "crocus: Delete the MI_COPY_MEM_MEM resource_copy_region implementation.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "796c9ab3fd6b897ae3b3c069568182178c7661d4",
        "description": "egl: set TSD as NULL after deinit",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "835b98e101fa6aeb6fb8a47059d66f8e48260bac",
        "description": "v3dv: implement VK_EXT_host_query_reset",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "393fda2d341f65cba6e160d4704983370ae041f9",
        "description": "i965: Emit a NULL surface for buffer textures with no buffer",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4d777631b595075169830a63b4281e9f0cbb45be",
        "description": "zink: Do not access just freed zink_batch_state",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2ef7e6d6b697c883efd8debaf3cb0a88bcf043b",
        "description": "anv: don't advertise vk conformance on GPUs that aren't conformant",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d47f3640ffc8f8ca9a76bdd6920edc2c2428b3c",
        "description": "docs: update calendar and link releases notes for 21.2.4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "57755cad55af61ea31ae84021236570521b993bb",
        "description": "docs: add sha256 sum for 21.2.4 release",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8236a7741d666a3bdca459cd8ca02e8c2fbb2ff3",
        "description": "docs: add release notes for 21.2.4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "70df31f5e04c73e9fd6290fad505f0187501ac80",
        "description": "docs: update calendar for 21.3.0-rc1",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1c0eb7aa78bac4494dbff0c502a8c09e23a4c123",
        "description": "ir3/freedreno: account for component in build_tessfactor_base",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f839b9599f863fa5bb1a6a6c24bbb621b7a1b4c9",
        "description": "loader: Avoid enumerating drm devices just to get an fd's PCI ID.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b79e978ae48c2c4a7059a7f5eb695c6b0362ac60",
        "description": "vulkan/wsi/win32: Delete the wrapper entrypoints",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f769f34680d516850c6efd64669bf601efcd4425",
        "description": "nir/print: print bindless info as applicable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "116e23e3855a28e74e09517d0005200fd139dc88",
        "description": "vulkan/log: Don't assert on non-client-visible objects",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "071437d29d9ebe5f1dbc4e14e63fd8a3861ce6f9",
        "description": "vulkan/log: Tweak our handling of a couple error enums",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "0cad3beb2a0dda7a8f6c6a1e8c9d253b9c988a9f"
    },
    {
        "sha": "fd467492349ee32cd196a8bd747269404965e3b1",
        "description": "vulkan: Set unused entrypoints to vk_entrypoint_stub when compiling with MSVC",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "6d44b21d4fdea89673541de265f69258747c5499"
    },
    {
        "sha": "b4aa5a3fdd0ec2b3ac3c019e1c323208c0fa1faf",
        "description": "radv: Fix modifier property query.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "5dee0d9da961b9a027910ce7e8e16a2f849d9b8d"
    },
    {
        "sha": "8e6f5aab336d3bf84aae604b51e07529380b5019",
        "description": "v3dv: fix TLB buffer to image copy path for 3D images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d44b21d4fdea89673541de265f69258747c5499",
        "description": "vulkan: Fix weak symbol emulation when compiling with MSVC",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "98c622a96e28020640517cb5499a1d7bd56553b0"
    },
    {
        "sha": "ae99ea6f4ddb90f7120b4986709a9e9064037f94",
        "description": "nir/loop_unroll: Always unroll loops that iterate at most once",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4323dc846d1b894ab86ce7d0eb98409085c6a18",
        "description": "brw/nir: remove unused function prototypes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a98ece61e9109963da525592a6890ad1166a0993",
        "description": "anv: Enable tessellation redistribution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "20c0ca75f55409f279a23a415f5c7dd70a012665",
        "description": "iris: Enable tessellation redistribution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "867e2e0716ed4a753a5591542a91cca31613f46f",
        "description": "anv: Enable geometry distribution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "efa27572a15b1bb6ee88d0556c2af06dc501215d",
        "description": "iris: Enable geometry distribution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d224e7f14e366534d3942976801f959b963d540",
        "description": "genxml/gen125: Update 3DSTATE_TE fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a7e54b87f399f387048e5e21be9ee45f4ddb398",
        "description": "intel/genxml: Update genxml to support tessellation/geometry distribution",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3eadb03db775cc41bbc58e67b37115540eb480e0",
        "description": "ci/lvp: Skip some slow tests under ASan.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ec51c8774d0f87e0a8d0ca8d8818bb13056641c2",
        "description": "v3d/clif: add support for dumping GS shader state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "19894bec1fdd85b394c71442854878db2a51ee71",
        "description": "v3dv/pipeline: don't clone the nir shader at pipeline_state_create_binning",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7c484d7f4a1f80197c45d4b766ac3a3d6f3c394",
        "description": "VERSION: bump to 22.0",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7d9950e924fe0e8b90aa69fa8f696008a2e34643",
        "description": "docs: reset new_features.txt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "91009cbaa84c0faad98c128d0d54ef9aba569381",
        "description": "VERSION: bump to 21.4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    }
]