summaryrefslogtreecommitdiff
path: root/.pick_status.json
blob: e71396bab9a4154a12ae093facdb8af92918ce5a (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
[
    {
        "sha": "8291d728dc997e87b4d2e4e451692643a1dba881",
        "description": "aco: improve GFX9 1D ddx/ddy assertion",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cc3d29c6e7ccca1ac738cfeafbe4685fbec533f7",
        "description": "pan/midgard: Identify clamp(x, -1.0, 1.0) flag",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0263d2793ce0d061268e83afb9c225a06a4e6f25",
        "description": "panfrost: Remove flush_frontbuffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "068806c9f6be9bab84ed0d4868f16705cf4c7e6d",
        "description": "panfrost: LogicOp support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5bfd363be4c957c1f7b5c1f3069346f2bce2cd5a",
        "description": "i965: Do not generate D16 B5G6R5_UNORM configs on gen < 8",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "803ab5d6be6bc63e3eae827d7297e0cd98cc61dd",
        "description": "gitlab-ci: Automated testing with OpenGL traces",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "50f1950ac0b52d291ac70bc1ce871a03ed88ba4a",
        "description": "gitlab-ci: Disable the lima job for now",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f7bfb10c69dfe48a91e35523cb5ee641bdbf6988",
        "description": "util: remove the dependency on kcmp.h",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "f76cbc7901f7d500f5a4f74aedfd29970d1efd00"
    },
    {
        "sha": "273b8cd1ca286e2f43b4a464a391fdcaac49f077",
        "description": "intel/fs: Correctly handle multiply of fsign with a source modifier",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "06d2c116415c0ab163a57ed7f2522342ed43e4d4"
    },
    {
        "sha": "c81aa15d646215eac38c8e0b6dc1a10b35bc13c3",
        "description": "gallium/auxiliary/vl: fix bob compute shaders for deint yuv",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "68d1757420be28e99e4e919ed2e0c6062e2460c5",
        "description": "radeonsi: Fix compute copies for subsampled formats.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "e5167a9276de1f383888714b41d3a9be2b9c1da9"
    },
    {
        "sha": "d795eb207ff90e4885a278910fdc87e932242da6",
        "description": "turnip: add option to force use of hw binning",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "97a590af21ec0be1f3faae89a5fe59b2fa6c2d39",
        "description": "docs: Mark 20.0.0-rc3 as done",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "772d60385cc17025541f99b3dbd566b942676ab1",
        "description": "docs: Mark 19.3.4 as done",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "288e9fd295b14c0ad3c0bbe51dc294a00f3c9056",
        "description": "docs: Add SHA256 sum for 19.3.4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3238f4c3abf405c902ec43cb9ff6e81dcc20dbad",
        "description": "docs: Add release notes for 19.3.4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8fe9e045f0ea24fe869c980fe4b56f4fb9437ab",
        "description": "anv: Drop anv_image.c:get_surface()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "58bdc1c748f2922b3970c3b3a41d1b0977f07886",
        "description": "nir/search: Use larger type to hold linearized index",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "fbd5359a0a6f4b6d220c4cea9020ec4665ed4955"
    },
    {
        "sha": "912ee82521ec0507a00dd108b28bf4d864ce6d95",
        "description": "gallium/util: remove unused u_surfaces.c/h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "360ffdf4e23464879748051e57587aff938bd50d",
        "description": "main/get: Converted type conversion macros to inline functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f1dc4c9554ce913acf4d3236b4d43b829fb92073",
        "description": "Mark a few static inline helpers with ASSERTED",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d46a5cfe781a1f51a1338d994fb8097d9d579d2e",
        "description": "mesa/draw: Make sure all the unused fields are initialized to zero",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "a6d31589097ef3fb99477809da7f6d571b85629e"
    },
    {
        "sha": "6edbb3c6d07a395c3cd0b1b5290ecac3943c4286",
        "description": "mesa: Fix FLUSH_VERTICES in SubpixelPrecisionBiasNV.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d3160a6177a51035fcdb634e184a29b4ef0619e9",
        "description": "panfrost: Remove old hack",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7f6f419be93531b5725bfa92ac087703ad13267b",
        "description": "panfrost: Remove old comment",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aed052f7039e7dab1a4d7374512f3f9945677b9f",
        "description": "panfrost: Remove dirty tracking",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fe5c5507bd6bb7cecb9efcf3381621d1310c2454",
        "description": "aco: add some helpers for filling/testing register ranges",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "43497e30e265958e28a0a5912134832a1f5a3ff6",
        "description": "aco: add RegisterFile",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e6010106fb3c4eb5436de869183e857243c1006",
        "description": "st/vdpau: Only call is_video_format_supported hook if needed",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "5d5b414a7b840a4a90050041fabd88a9af6dca43"
    },
    {
        "sha": "72154237fb720926d8453e7f43f0ec76a0ce7bb1",
        "description": "iris: Do not dereference nullptr with pipe_reference",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d800bcd9b9664dbb0c8476ee628a3eb888802b87",
        "description": "glsl/blob: Do not call memcpy if there is nothing to copy",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7685f48ece721960f6cbb105fca9ea60d256d200",
        "description": "intel/bufmgr: Cast bitshift to unsigned",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d5931f285be246be95683c2fb054694d89d07657",
        "description": "intel/compiler: Do not qsort zero sized array",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d596795d4d3fb79c39cf457b7b5cb557edf4d6dd",
        "description": "brw_fs: Avoid zero size vla",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d4e395a27d770fdde2a8df438271dffd76384e43",
        "description": "brw_nir: Cast bitshift to unsigned",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "82913bac14512dbfdb537d674377133f2daa8bfb",
        "description": "docs/envvars: document RADV_TEX_ANISO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "72f7d3d5b0969aaa1c0a538dad0b3da09d9db6b6",
        "description": "gallium: Only define PIPE_ALIGNSTACK on x86.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "427870abfd0ebc449ffb1c90e9b5ebb54727ee51",
        "description": "llvmpipe: Fix another uninitialized value warning, on init_val.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "81225e1f0349b0b2ddff0fbfcd832752f8177477",
        "description": "llvmpipe: Silence uninitialized variable warning about \"scissor\"",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dc8c5af99b04639d46280719cc59f4481e8bd564",
        "description": "llvmpipe: Silence uninitialized variable warning about \"vals\"",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8d34238a6dc61f6c522e2807bc83d434d27e74f",
        "description": "llvmpipe: Fix warning about uninitialized \"op\" in the NIR path.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b32bd704c0a22b6eb691f93158acbbdd4c5d370a",
        "description": "llvmpipe: Silence uninitialized variable warning about \"chan\"",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ce611935df5e7e6cc731523c7496c33ba6f7ef20",
        "description": "llvmpipe: Silence \"possibly uninitialized value\" warning for ssbo_limit.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "45b2ccc6b30c9e4c3382e6b462a2f5357c15d3b8",
        "description": "llvmpipe: Fix real uninitialized use of \"atype\" for SEMANTIC_FACE",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "502548a09c5a87d06da97be45a2386bb1e5e800e"
    },
    {
        "sha": "13a276ed3bad09033c00f0a08fcaad803c8a2173",
        "description": "radv: Squelch possibly-undefined warning",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1427f666dcc24e71d1b5c5c8f6d1d568c3bcf210",
        "description": "ci: Extend the a630 flake list to reduce spurious failures.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2e05a280b6b6d334388e3824bd82472ccbf33252",
        "description": "mesa: fix immediate mode with tessellation and varying patch vertices",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 0,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6d31589097ef3fb99477809da7f6d571b85629e",
        "description": "mesa: don't use memset in glDrawArrays",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee549c67668289e262243b6549a5faf230aa0fd6",
        "description": "mesa: document _mesa_prim::begin/end",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9246282b75500aa4e9fe926930cff1314f49607",
        "description": "vbo: remove redundant code in vbo_exec_fixup_vertex",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3eeeb86cb0e8dd8ddb23b2eda0213c8f1a44feec",
        "description": "vbo: remove dead code in vbo_can_merge_prims",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2491a2ddeb53f3d44b4633f967bfa5b023946bce",
        "description": "st/mesa: try to fix MSVC build failure due to ALWAYS_INLINE",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "11db8e0e00a72884ba9fda953b549dd65119dc73"
    },
    {
        "sha": "06dc280a57a60e39e21c0c14ace6ada3a4574ea7",
        "description": "freedreno/registers: cleanup CP_SET_MARKER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7b4d6bb1ec65d87316540e076661ddffec26e3a5",
        "description": "freedreno: quiet INFO_MSG",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "838ed2885df0f6fbc7dbd3c233974faf7e084cb9",
        "description": "freedreno/a6xx: few register updates",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4fc31e7d33606f249bf984378cd49f0dcba6e325",
        "description": "freedreno/registers: teach gen_header.py about a3xx_regid",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ecca5ef6c380cf837ce3f261631f19dd3f18f51a",
        "description": "meson: explicitly disallow unsupported build directory layout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "79788b8f7f07460af8467931501380e47b485e36",
        "description": "intel/gen12: Take into account opcode when decoding SWSB",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "6154cdf924f4d0d3a6fb0cef38bc62eb4494c69c"
    },
    {
        "sha": "bee5c9b0dc13dbae0ccf124124eaccebf7f2a435",
        "description": "panfrost: Remove enum panfrost_memory_layout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "28e94e0a948ebdc98decb5cdbb2ddfcf31cb2b0b",
        "description": "radv: Advertise VK_KHR_shader_non_semantic_info",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8004cb256a29e946b23c42ce4ad322b8a4dfd2a8",
        "description": "anv: Advertise VK_KHR_shader_non_semantic_info",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2dae89ac36703eca063355affb915c933c316417",
        "description": "vulkan: Update the XML and headers to 1.2.133",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7d3c48f131ec84aa759a6290a20e2b0c02ad8834",
        "description": "panfrost: Debitfieldize mali_uniform_buffer_meta",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "027944c7c8ccbff940484b1ed7cc5d75b9593640",
        "description": "panfrost: Avoid reading GPU memory when packing vertices",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4c52e16c9c296988dea283164622373caaf228e5",
        "description": "panfrost: Cleanup transfer_map",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "308f9cf104dab55ab4d9f92150bf6952c9813dd4",
        "description": "panfrost: Update scoreboarding notes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "88323d1ba0c0e6d0ba3be5e3b14213d2b93c44f6",
        "description": "panfrost: Rewrite scoreboarding routines",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "070bc883d34d5a687b800f4615d82eda3f0eb7bb",
        "description": "panfrost: Print synced traces to stderr",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c46a090942b3d76b8bcbfde75c5454d449799360",
        "description": "panfrost: Implement PAN_DBG_SYNC with pandecode/minimal",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "59986461255474cfb11c18e7ea8a6303e2d25afb",
        "description": "pan/decode: Cleanup pandecode_jc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4122f747ac67eca4c27ffa8d7e91d7d0c3cb02a8",
        "description": "pan/decode: Add `minimal` mode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b684ba6ce7fc6cabf42132559192e1065891e67a",
        "description": "st/nir: Unify inputs_read/outputs_written before serializing NIR",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "19ed12afd170c97180a9cc7eb6c5589d4c427a40"
    },
    {
        "sha": "9903f10636566834a7563b6828c52fe40c5b0d71",
        "description": "zink: do not convert bools to/from uint",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4d016de25052cc28d449538fddbe755aaff85d0a",
        "description": "zink/spirv: uint -> raw",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7c1a2cbcadf8d4a366df3f96818c19e082764c56",
        "description": "zink/spirv: unit_value -> raw_value",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "16339646f03a5cb527f119ca572c9328fd5d3923",
        "description": "zink/spirv: rename functions a bit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6211a42473f8acc7583145dde489864963af0ed",
        "description": "zink/spirv: prefer store_dest over store_dest_uint",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e8f7df800d697c0623711996ceac40dab5527ec",
        "description": "zink/spirv: do not reinvent store_dest",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "692093fbdc93343dbe500128fdd23167d73036d9",
        "description": "zink: confused compilation macro usage for zink in target helpers.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "8d46e35d16e3936968958bcab86d61967a673305"
    },
    {
        "sha": "b7e966dc7feaed8e0830f9f9ab5904966c7356a0",
        "description": "zink: do not report texture-samplers for unsupported stages",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4a20db70de25233f1c58d76bd17f9564d13fe7b2",
        "description": "zink: fix binding-usage",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "1c3f4c07047cef0dfcb9182690b22792b00d5935"
    },
    {
        "sha": "c095b7d5bd44f807c479d117a51f7495712d61c1",
        "description": "radv: add a comment about VK_AMD_mixed_attachment_samples on GFX6-GFX7",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4159b24be7c00499c6e45dfb8209d9fc23f0836b",
        "description": "radv: enable VK_NV_compute_shader_derivatives on GFX6-GFX7",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "83dd0cace6979ac5e597c2aa2e3dce51586df0af",
        "description": "radv: enable VK_EXT_sampler_filter_minmax on GFX6",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "170c3a8b7b0165c0c226476563367da3d11ae81d",
        "description": "radv: enable shaderStorageImageMultisample on GFX6-GFX7",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7617d8908a970124321ce731b43d5996c3c5775",
        "description": "egl: Implement getImage/putImage on pbuffer swrast.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d6edccee8da38d4802020d5aa4d9e11bb7aae801"
    },
    {
        "sha": "6fc0890cd9cf53dc41fee070faf4570314fdcbc3",
        "description": "lima: rename lima_submit to lima_job",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "57d9a51d455900946f3eac18b8d1d77cb03b972c",
        "description": "lima: move dump check to macro for lima_dump_command_stream_print",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5502bc83b0e4d4542bc5234fe6592db575658356",
        "description": "lima: enable multi submit optimization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "131c50569066152a8e90b948b0873b990d748e98",
        "description": "lima: optinal flush submit in lima_clear",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d6ad8e590f27ce0413389f6274fa05106d45dba1",
        "description": "lima: use per submit dump file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d0dde3de25aca535a35ee58850340a0bfdab9dab",
        "description": "lima: move framebuffer info to lima_submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed117ee630f449fe6d2ed9e205a6dc80bed6dfa2",
        "description": "lima: move clear into submit (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4b93792274f363983949502315ca693a83fdfb56",
        "description": "lima: move damage_rect into lima_submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a4b048c046cc4861d9ce7da94eeaeca341b7e2f5",
        "description": "lima: move pp_max_stack_size to lima_submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6a5b1c62db4cd3ab2dcabe6e32391c18f11dfb17",
        "description": "lima: move resolve into lima_submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e5abc11f427b67084ad791a6adab5d99717c064",
        "description": "lima: move plbu/vs_cmd_array into lima_submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c64994433c0da03d1dabf7cf561f1f1474d6554f",
        "description": "lima: track write submits of context (v3)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "48fc5f841ae9c5b294d9084a274f49045c0dbae5",
        "description": "lima: make lima_submit one time use drop data (v3)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "545988c6172e51ea00c87abe966d5ecd03b08e98",
        "description": "lima: add lima_submit_get",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0caefb6d9df8f2b53fa0703a7bd7a665dabe77b2",
        "description": "lima: use lima_submit_create_stream_bo for plbu/vs_cmd and pp_stack",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed8837f946159c34573a6b924a0ba6f879c7bb60",
        "description": "lima: adjust pp_stream to use lima_submit_create_stream_bo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e90d8b6e4d135d58e9346220a652b4835c843d07",
        "description": "lima: add lima_submit_create_stream_bo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c78ba60140ec48996dc4ebcfff0674229a4afd4",
        "description": "lima: pass submit parameter for functions in lima_submic.c (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "21a2ce71b132739b001442a4f9829de345311c35",
        "description": "lima: move flush code to lima_submit.c",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "29c7235507d52d676ec1eee3ef5f9042317595c1",
        "description": "lima: put hardware related info to lima_gpu.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "09127641f41c75f16d8fa73129153c9da6df7810",
        "description": "lima: merge gp/pp submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "79c65fa56fd0168e3e8548e68f1de81b33742069",
        "description": "lima: move syncobj from lima_submit to lima_context",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b9003111bb59635ae407b251561f1d9937d434f0",
        "description": "lima: add missing resolve check for damage and reload",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "47200f5c8dda1e03ae62b8cc658574bf0b2f0fe5",
        "description": "lima: add render target to submit by dirty buffer flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "32f17339723d76b920e7b16d171feb66d5b807eb",
        "description": "lima: delay plbu head command generation to flush stage (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ccfe5f9d288fa36e85ac1140f2eae8429decaae6",
        "description": "lima: delay add plb buffer to submit when flush",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "92387ca23646d2d5b8ee4666968dced0c7198f2c",
        "description": "lima: pass array as parameter to PLBU and VS command macros",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c3bbe4f7f8bd88ee92179679526664467e83c45a",
        "description": "lima: remove lima_ctx_buff_va submit flags (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f924c795b9520c49572b54bfab07731d4f54e6e",
        "description": "lima: always add texture bo to submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c4ff27250710a2f4880d0e527b86a4b39adeb1b",
        "description": "lima: use util_copy_framebuffer_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c8b53d802086f398e50762762227b9ac4c5c6293",
        "description": "lima: remove definition of lima_is_scanout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c4a70b64d6f916ecdf9055b52078bf4f63e7a97",
        "description": "pan/decode: Remove extraneous newline",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ab0bf1f939af480997fafd8bf562644a60df08a",
        "description": "pan/midgard: Use fprintf instead of printf for constants",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "968f36d1fc081baf2e95eef1410b06552845440b"
    },
    {
        "sha": "6af14d3685fac433193b92f9ad6c9f8a3eaf87ff",
        "description": "pan/midgard: Don't crash with constants on unknown ops",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "24360966ab31a9bedfe07356413769218fd2e0b6"
    },
    {
        "sha": "5c06ecd2c64a36496f7a0a1d2811d8a90b1a0620",
        "description": "pan/midgard: Identify stack barrier flag",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d3747fb1ebbb1c3d6f62abaf92b100f7f52d0f6b",
        "description": "pan/midgard: Set xyzx swizzle for load_compute_arg",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f0ee55ad2a4e63cce88c9d68bfdf7d1c0e7e88b0",
        "description": "pan/midgard: Infer tags entirely",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "57a84278fda2ce556905f800409658639d642962",
        "description": "pan/midgard: Imply next tags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "453c64663ce938952588325ba4c960bc63297582",
        "description": "pan/midgard: Overhaul tag handling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9168e7a65deefae7bb8a40c583c205c408cbecab",
        "description": "pan/midgard: Improve barrier disassembly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d208212f80effe4e2831fa408e976099317230b0",
        "description": "pan/midgard: Use dummy tag for empty shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2cab6b6db4244cb95abb5bf13734360df8391ea",
        "description": "pan/midgard: Fix 32/64 mixed swizzle packing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a55a2e02a54cadcd9466d02021c2c7a0739c373f",
        "description": "pan/midgard: Allow jumping out of a shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3f59098d1a7a00d51e2b15e06aba359835c7e1ea",
        "description": "pan/midgard: Implement barriers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4f0b928921dfb3ed63642ab1ce1c925fbac9f51b",
        "description": "pan/midgard: Fix swizzles harder",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fbe1fd3de0aa7c618286ee79082f7bbcd7b8e171",
        "description": "pan/midgard: Fix missing prefixes",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "c1952779d68fdaea153d762fe2d83810b346085b"
    },
    {
        "sha": "521406a069e0f918d57fc29bba85423faf316141",
        "description": "pan/midgard: Track pressure when scheduling ld/st",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9603126b74d03bc6974ea116ce4f7d80fb9573aa",
        "description": "panfrost: Allocate RAM backing of shared memory",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "50138abb5a0328b530723dfef5e9a8ac9dea2692",
        "description": "panfrost: Rename unknown2_8 to padding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d9ee3e65aea9262a9890fb34032ef7c693aef2d",
        "description": "panfrost: Rename bifrost_framebuffer->mali_framebuffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6dc105555b43695e1de49baf946c6179987f2f4a",
        "description": "panfrost: Unify bifrost_scratchpad with mali_shared_memory",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "254f40fd535ef57dee2bcc4afd97840749ce5918",
        "description": "panfrost: Identify mali_shared_memory structure",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "418ca5dc1ac01045818ad3222d2e0bc51dc2e904",
        "description": "panfrost: Ensure compute shader_meta is zeroed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "058faf5a4bd448e1c188042ea017f8fbfd565b9e",
        "description": "panfrost: Update comment about magic number relating to barriers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8f5a252d350cb1abcad13f7d637548a8e0e7da33",
        "description": "ci: bump debian image and change llvm deps to 8",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e7375e17958993b90d9f01d76dbc7eacdbf8c195",
        "description": "gallivm/s390: fix pass init order on s390 with llvm 8 (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a603822b2fcf61085d2e0b2995bc3f43d8ec164e",
        "description": "iris: Trim \"../../src/gallium/drivers/iris/\" out of debug dump filenames",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "96f247d1b33fafd42a02b58d3f5387f9b574badc",
        "description": "iris: Dump frame markers with INTEL_DEBUG=submit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e395ce03e92b707bef7080eae3c2daa7d9760e70",
        "description": "gallium/cso_hash: remove another layer of pointer indirection",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e0bb7b87e26d6618d75d37a4fe2c4a271d075dbb",
        "description": "gallium/cso_hash: cosmetic changes, no behavior changes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "789ed29d59b9c7c8cbef371311bfb3c507ae725a",
        "description": "gallium/cso_hash: remove always constant variable nodeSize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a8bbf1054093f638c83a27696b841d053a83ba72",
        "description": "gallium/cso_hash: make cso_hash declared within structures instead of alloc'd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f8594a06e4a2e65c3fc458d7ddce374e9a093b6e",
        "description": "gallium/cso_hash: inline a bunch of functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf86f522b255a5603176ec361cb0cfcc2416a41d",
        "description": "gallium/u_vbuf: adjust the heuristic for unrolling indices",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "55d8baa285524e01eb241aa70057fb8e637fa14e",
        "description": "gallium/u_upload_mgr: don't do align twice in the u_upload_alloc fast path",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19c18d532e848bb129f0b24d694fecafecad07fb",
        "description": "gallium/u_upload_mgr: reduce dereferences by adding buffer_size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "909a2d0ed3878e4254b36d6bf8e125e0c7b1e586",
        "description": "st/mesa: simplify releasing the current attrib buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6954efce23e54e2bbe9ea554733685bf24acdd5f",
        "description": "st/mesa: make st_setup_current static",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3617fd00b311bd4f32886974c574ae55ba416fd",
        "description": "st/mesa: change some loops from while to do..while in st_atom_array.c",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd6636ebc06d55b59851701c436b8b97f50fd7f4",
        "description": "st/mesa: simplify determination whether a draw needs min/max index",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d933728024f907236ffe95da5f5f0eabf6052c7",
        "description": "st/mesa: simplify determination whether a draw has user vertex buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "61e4c582e0fe246ac0d494a2391573f63e1ee0dc",
        "description": "st/mesa: always inline the code setting non-64bit vertex elements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c98dccd405cf57cbc5a8534e93d7ba020d0e055",
        "description": "mesa: remove unused _mesa_draw_indirect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6448f993b157a6d3757b69d5d4c2424e8af737e",
        "description": "mesa: translate into gallium vertex formats in mesa/main",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d3b86e34a7b0f77613c7f5669891e54d76f0cbf",
        "description": "intel/fs/gen7+: Implement discard/demote for SIMD32 programs.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "04c7d3d4b19610cae8250102fefd0012b7233d9e",
        "description": "intel/fs: Return consistent UW types from sample_mask_reg() in fragment shaders.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1c6853a9be28c4193fc44eebf812ecf7a02a04f9",
        "description": "intel/fs: Refactor predication on sample mask into helper function.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a792e11f5ccb28f5d2430008d462c79888a077c3",
        "description": "intel/fs/gen7+: Swap sample mask flag register and FIND_LIVE_CHANNEL temporary.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "083fd96a97d992b8233587f4626c4d433fbd4045",
        "description": "intel/fs: Use helper for discard sample mask flag subregister number.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6bc11a7893a75aebe7ba1888877dffa9fe0814a",
        "description": "intel/fs: Make sample_mask_reg() local to brw_fs.cpp and use it in more places.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b84fa0b31e670d101ff17115519417036581f55b",
        "description": "intel/fs/gen11: Work around dual-source blending hangs in combination with SIMD32.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "57dee58c82d631261c953705c32dd2d383ec2f4f",
        "description": "intel/fs: Set src0 alpha present bit in header when provided in message payload.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e14529ff3262a527d630cecac655f69c8ae15c3f",
        "description": "intel/fs/gen12: Workaround data coherency issues due to broken NoMask control flow.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4e4e8d793f050eac84f2a850ab2e5c24c4c459ac",
        "description": "intel/fs/gen12: Fixup/simplify SWSB annotations of SIMD32 scratch writes.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "15e3a0d9d264beccb914432ca749d7c0b8a5d43c"
    },
    {
        "sha": "a8ac0bd759cbf9a5984df4bc9f553a3dca41a8ab",
        "description": "intel/fs/gen12: Workaround unwanted SEND execution due to broken NoMask control flow.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "008f95a043dac909f6e647c3102f37bb978b148c",
        "description": "intel/fs: Add virtual instruction to load mask of live channels into flag register.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b8b509fb921a7c2f687b9f7e5075c72847740ac4",
        "description": "intel/fs/gen7: Fix fs_inst::flags_written() for SHADER_OPCODE_FIND_LIVE_CHANNEL.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9e33e5cbf6b8b953932f283e1f0abcb6c77eb1f",
        "description": "intel/fs/cse: Make HALT instruction act as CSE barrier.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fe1b0b7c500af7c489d8dffe72bdb2fadd7cf2ab",
        "description": "lima/parser: Extend rsw parsing showing strings instead of numbers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e2b4bf256610cc016202893d7b4b4ef60b25b53",
        "description": "radeonsi: don't wait for shader compilation to finish when destroying a context",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7bee388fb50d1bf6fc63f7898ad189c7891a10a1",
        "description": "egl: directly access static members instead of using _egl{Get,Set}ConfigKey()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "946eacbafb47c8b94d47e7c9d2a8b02fff5a22fa",
        "description": "freedreno/a6xx: document some unknown bits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "75fbe089a6a29b01c2b3425b1c0fc2ee43bc5ff8",
        "description": "freedreno: name sysmem color/depth flush events",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c57456aab6974abc86e7e1b0aae958a8ab3dad27",
        "description": "panfrost: Simplify swizzle translation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f3490a141c8d562fc29e714c3735f2ae8e3c0512",
        "description": "panfrost: Inline panfrost_get_default_swizzle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "efda2cfcf96b1071c18800ff3f878fe627359e8a",
        "description": "spirv2nir: Add kernel spirv support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "eeb6d6112859c3ba41f1c8914d503bf1a3dd981d",
        "description": "spirv2nir: print nir shader if translation succed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e80b03dd15eefb7250b994e311864e720b0b1bb",
        "description": "zink: do not use SpvDimRect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f43a3fc28ff8914e4a9391233dfc3b63454c6dac",
        "description": "lima: handle early-z and pixel kill better",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "582d0c5f1474ecbe52a666e30cb115144aeda7c0",
        "description": "gitlab-ci: Add three more dEQP-GLES31 tests to softpipe skips",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3d16bfc42deec0e5002d4a314855a453cf340a49",
        "description": "gitlab-ci: Sort random failure softpipe skips",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f86bf2e90a9ab0d76c7f8e322c07eeee4df31a7b",
        "description": "docs/new_features: empty the feature list for the 20.1 cycle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "886acbe1c535f0c564dbebdcdbcad38a5fef6c7d",
        "description": "radv: remove unnecessary RADV_DEBUG=nobatchchain option",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "676869e1d4bb1660430fcdb99443238a7de50eb8",
        "description": "glsl: fix gl_nir_set_uniform_initializers() for image arrays",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "2bf91733fcb5ff8f74d71de03feeb5f3d664d199"
    },
    {
        "sha": "6baeca36899109cd9d8e06d1b5f4b9db8becd5fa",
        "description": "intel/tools: Update aubinator_error_decode.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "334788d4cc9bb8a0a6b3166e609638687efa0f3f",
        "description": "freedreno: allow INVALID modifier",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "9891062642a3f35dc326b305fca2407f9041915c"
    },
    {
        "sha": "3547e19bbd0d70fc391f5982ea38a026a5994b1c",
        "description": "intel/isl: Switch to R8_UNORM format for compatiblity",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "207a93bbff1ef0c40d8f7da339f03dbb12961a7c",
        "description": "intel/isl: Move get_format_encoding function to isl",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a98cf3b2ecea43cea148df7f77d2abadfd1c9db",
        "description": "Revert \"gitlab-ci: disable a630 tests as mesa-cheza is down (again)\"",
        "nominated": false,
        "nomination_type": 2,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "18657c0c0a9074d3dfc0763b396929bcf34f71b4"
    },
    {
        "sha": "5a82273f09d92a815b1ade0d82d095a9e6b8244e",
        "description": "freedreno/a6xx: fix Z24_UNORM_S8_UINT_AS_R8G8B8A8",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "18786cc7d55598e82fe1de45bd2c3ffea136418e"
    },
    {
        "sha": "4151d843236ab350a70d8e13e4e7c79d11ec7bb6",
        "description": "iris: add support INTEL_blackhole_render",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d35610bd57aacb494e49da692b5331b0e4d11b6",
        "description": "st: add support for INTEL_blackhole_render",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5d7e9edba1876523f75c74362242aaa56629fba5",
        "description": "i965: enable INTEL_blackhole_render",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "74ec39f66d506c78ee62a685b7fa055faa0991b9",
        "description": "mesa: add INTEL_blackhole_render",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "08cff938b76b6fe146334e44dc97b6be8274a281",
        "description": "Revert \"st/va: Convert interlaced NV12 to progressive\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "2add63060b51ea2ae432d10e1bd52d6cc0a4dcbb"
    },
    {
        "sha": "3a2977e7b5ccead8a3a0e3d7df7823325c64b90b",
        "description": "anv: Reject modifiers on depth/stencil formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5a593bec16b1e5830bc57462abc0b056342ac876",
        "description": "gallium/swr: fix rdtsc debug statistics mechanism",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dd16ad107da7ade9c6c0f738626b29cfd875f51f",
        "description": "gitlab-ci: remove load_store_vectorizer from expected s390x test failures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aca2458d1bf5c38f5291efa27712868d45ad8231",
        "description": "nir: fix nir_const_value_as_uint bit size in load/store vectorizer tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c1ba69a27090d3ef000943b47468705fe0454c4",
        "description": "Revert \"nir: Add a couple trivial abs optimizations\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "e4d346c86db0ae332fcdf55eac0e075cfb99a7eb"
    },
    {
        "sha": "fdd20be324eabab7da1ba67cf7e379398d771186",
        "description": "iris: fix aux buf map failure in 32bits app on Android",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b9e0947a9eedcfbcf1e0955fa430b1cfbc43021f",
        "description": "radv: remove unused RADV_HASH_SHADER_IS_GEOM_COPY_SHADER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2531370c968373c24b0c9814610a686bd63f128",
        "description": "radv: remove RADV_DEBUG=nosisched and RADV_PERFTEST=sisched",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa48e7edc23bd1148329a69d6e32ddf5acdb2926",
        "description": "radv: remove LLVM sicheduler enable for The Talos Principle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f7d1bf075ab833eb39c35f9e213dc4fc115b46b1",
        "description": "glsl: fix a memory leak with resource_set",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a6aedc662ebbcac747475324abe3791ff67fc1a8"
    },
    {
        "sha": "556c9401495930c23a10ca2a26db098d12663e27",
        "description": "radv: implement VK_EXT_line_rasterization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fbcf05382baefe6ecdd279e2c98025f15938fadc",
        "description": "radv: fix line width range and granularity",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "da64c35ff920df58b872619bb6f54ae978cb47c9",
        "description": "tu: Force sysmem with mipmapped non-aligned linear stores",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f026982265afc87893015b3438bc73d09f703b92",
        "description": "tu: Support input attachments with sysmem",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c1b3f9e83297494fb0ea5d41077c60a33daf37c9",
        "description": "tu: Support resolve ops with sysmem rendering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8647a24a8d66a0a3663563d4d713a5a5b28d8d64",
        "description": "tu: Handle vkCmdClearAttachments() with sysmem",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "07e07daeaeb952963df37a6d0d899e0765e82ba4",
        "description": "tu: Add helper for CP_COND_REG_EXEC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6a0c4008bf78e259bb1cb9bcbe39248762b03cc8",
        "description": "tu: Sysmem rendering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "041783d49d3aaf451420ce880dcd886388f4b274",
        "description": "tu: Disable linear depth attachments",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ab3db20cb5e8ef489b8331235498cd1806e4c6ea",
        "description": "tu: Support multisample image clears",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5fb515301251b476800a1560f9f8edc8ff325d6",
        "description": "tu/blit: Support blits in secondary cmdstreams",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a94be3da84277701b5d74b326e5364cb854a19f1",
        "description": "tu: Properly set UBWC flags in RB_RENDER_CNTL",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "49817cb3eaddf1085dadbdcadf2c3c93b02a8f16",
        "description": "tu: Don't emit initial render target state in tile_load_ib",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0660cbf4262891e6380faf0d99217b2d27873051",
        "description": "radeonsi: make si_fence_server_signal flush pipe without work",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "787b56ac0e5d62ad07cb0804be5275d885201262",
        "description": "turnip: Add a618 support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ef5da26089975a6f26096151da9fa94f55fc338f",
        "description": "turnip: Add magic register values to tu_physical_device",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "18786cc7d55598e82fe1de45bd2c3ffea136418e",
        "description": "freedreno/a6xx: use single format enum",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c13202af7a86976e6d0400f2cee77afcc60ea828",
        "description": "anv: Respect ISL_SURF_USAGE_DISABLE_AUX_BIT in make_surface()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a76fd8b08cf0274a6d8bfe97f05b96014f2a9e98",
        "description": "anv: Clarify behavior of anv_image_aspect_to_plane()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "da2b0c6c19b080a1e4d91d3b2248dd974483c9fb",
        "description": "anv: Delete anv_image::ccs_e_compatible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "483d4ec57ce0ca0df26fffea648d52a738c8f4e0",
        "description": "aco: improve SCC handling in some SALU combines",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d45e9451cf47014d37816baf2656981a1c715e50",
        "description": "aco: disable some instruction combining if it could change an exec operand",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e9f83185a221b446717c96c4df8dc64ced43e24f",
        "description": "Rename nir_lower_constant_initializers to nir_lower_variable_initalizers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e459c7f0a14b65617e16b92f42abad2fe5878872",
        "description": "compiler/spirv: Add support for non-constant initializers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7acc81056f7ac6a869ef6403573b2572c77dbecf",
        "description": "compiler/nir: Add support for variable initialization from a pointer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "461c40e0fd5d67dc8155ae4f6c53ddd9acd995b1",
        "description": "radeon/vce: Move global function pointer si_get_pic_param to local encoder structure Multi gpu use case broken when the function was global",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "286141197dac9fc6765da3fa8bba571840bfa61c",
        "description": "anv: Rename param make_surface::dev to device",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "84b791a4bb1b3eb15b9a820e9a5dc61a373392f3",
        "description": "anv: Drop unused anv_image_get_surface_for_aspect_mask()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "23037627359e739c42b194dec54875aefbb9d00b",
        "description": "gitlab-ci: Only use gstreamer runners for the s390x job for now",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8e7728077435c5c5ad8c328761277f8ff3b32112",
        "description": "nir: do not use De Morgan's Law rules for flt and fge",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d1ed4ffe0b70762477709e699f95c73602f9dc5a"
    },
    {
        "sha": "ddd767387f336ed1578f171a2af4ca33c564d7f3",
        "description": "aco: fix creating v_madak if v_mad_f32 has two sgpr literals",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cd08d9abd76ce0002572639c26c79e051a2a0549",
        "description": "radv: set the chip name to GCN-NOOP when RADV_FORCE_FAMILY is set",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a8024aaaab9812d018cfa656d0dfce6ffedc123f",
        "description": "radv: make sure to not submit any IBs when RADV_FORCE_FAMILY is set",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5b335e1599e90dae9a7a1b4a1d9a4498f0d0cedd",
        "description": "radv: Do not redundantly set the RB+ regs on pipeline switch.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "63345a359656246df83b416743031c1836457d23",
        "description": "panfrost: Remove unused anonymous enum variables.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7e8de5a707f7279929d7396550024b8cdc6a8c61"
    },
    {
        "sha": "7792d774e0ab4f3d45d758da1e9ac80fef0d7934",
        "description": "radv: Optimize emitting index buffer changes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d97d186fbea0de22f75346cba07133b145f95bc",
        "description": "nir: Mark fmin and fmax as commutative and associative",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1886dbfe7362baa221009371434f158b97183164",
        "description": "Revert \"gallium: Fix big-endian addressing of non-bitmask array formats.\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d17ff2f7f1864c81c1e00d04baf20f953c6d276a"
    },
    {
        "sha": "11db8e0e00a72884ba9fda953b549dd65119dc73",
        "description": "st/mesa: optimize st_update_array with ALWAYSINLINE",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "36cc6b105b5299ae07f005feabd8bd6eb34c5257",
        "description": "mesa: don't use bitfields in _mesa_prim",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "47d7e21619218348c86ca6909cf695f78c9778c6",
        "description": "mesa: remove unused _mesa_prim::is_indirect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "734654a89cf588d88b2932b931612374ef2884eb",
        "description": "\u00ed965: don't use _mesa_prim::is_indirect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a7d03103f30bfff532a0c6d6e22fa5e7a24cad27",
        "description": "vbo: merge use_buffer_objects into vbo_CreateContext to skip the big malloc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7575a0a25120b9637d50fcf2b55a4859b505f781",
        "description": "vbo: clean up resetting vertex attribs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee5bd8638bd123ab3ea49d513f8bba9e7cd4ae28",
        "description": "vbo: also map the immediate mode buffer for read",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "27bd241103e8fa1fc34859cac6bd23d5a5fb04fe",
        "description": "vbo: delay flagging FLUSH_STORED_VERTICES until glEnd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ca99fe8a603b08883493c786037ca872c00df145",
        "description": "vbo: add/update unlikely statements in ATTR_UNION",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5f72c91e5ac38c82bcc1585e6d6f08b9929dba3",
        "description": "vbo: increase the size of the immediate mode buffer to decrease draw count",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2fe771f4e963cbb3a3032f1e148fb594c3c1a2a3",
        "description": "vbo: use FlushVertices flags properly and clear NeedFlush correctly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "63a241fa3283a0c389f671a556f705d1da25dd2a",
        "description": "vbo: fix resizing 64-bit vertex attributes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "077a843c27d84d4531074bbc477391e886a7ba71",
        "description": "vbo: optimize resizing vertex attributes during immediate mode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1f6e53e2437690de9a84e47f5587ff359b8484f2",
        "description": "vbo: don't store glVertex values temporarily into exec",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cd7241c4f8082dbd07f0bcd268741c527512c66b",
        "description": "vbo: pass only either uint32_t or uint64_t into ATTR_UNION",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "afa7f1984a4f1779c42e2dfa5535635d364e92a7",
        "description": "vbo: don't set FLUSH_UPDATE_CURRENT for glVertex",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f8b98d48bffacc0a1b5393307c8405f4eda8e27c",
        "description": "vbo: keep the immediate mode buffer always mapped for simplicity",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c76ef5b590d5795ec2dafb9304747ed74fd37a2",
        "description": "vbo: don't check ctx->NewState twice in glBegin",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f2c6de1eecb52ded412a88c4724f042c0c75d5f7",
        "description": "vbo: remove a funky recursive call in glBegin",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "653bd14730035d514127b2253a025a1e98db5e75",
        "description": "vbo: interleave attrsz, attrtype, and active_sz in memory",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2b22e33c10f98f2f58101881818f55b4c4b73606",
        "description": "vbo: remove immediate mode code that doesn't do anything and simplify stuff",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3e0d612f5e22fee19aff0e40814db24d63f63103",
        "description": "vbo: don't unmap persistent buffer mappings for glBegin/End",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "03ded3d6ce37d3be12776bcc5dcd3c4d91f33248",
        "description": "vbo: skip FlushMappedBufferRange for glBegin/End by using a persistent mapping",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "10cf7a5113446c85dd39bbb12544dd4ac30a0200",
        "description": "vbo: create the immediate mode buffer only in vbo_exec_vtx_map",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f89ee44ab0300b72ab957c3135858ff46187dfb5",
        "description": "mesa: import PIPE_CAP_SIGNED_VERTEX_BUFFER_OFFSET handling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "27dada7ce90315d47184c51879a3f67e99f2bab2",
        "description": "mesa: remove FLUSH_CURRENT calls that have no effect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7c8fe1cc1a972e59885cc14778dbf5a520f48dd",
        "description": "mesa: fix incorrect uses of FLUSH_CURRENT",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "01443dc7383f4634e4a66fa194ed51db74186128",
        "description": "glx: print FPS with 2 decimal places",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1082e6fcb87d723986b640b5c077d05692df3511",
        "description": "radeonsi: don't update states for the DCC MSAA bug on GFX6-7",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fbb27eebc8cab1a5d70ea67a37de8d18f20a88f0",
        "description": "radeonsi: fix the DCC MSAA bug workaround",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "897a4a0041e2477aa7ac487f23d85a5fc8900c49",
        "description": "r600/sfn: Add some documentation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7413aab3c837813331a706a022f493d0474caa13",
        "description": "r600/sfn: Add .editorconfig file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "110ee7ff93a42624b1e89065ec75b7649047715e",
        "description": "r600/sfn: Add support for SSBO load and store",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "148f0ad4f9c4b4c291abcaa1722f5ae91f9c4014",
        "description": "r600/sfn: Add support for atomic instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "90a7d2e08fbd94d443fe6aeed093e4c758b169da",
        "description": "r600: Make sure LLVM is not used for DRAW",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "37125b7cc220fd9b77e9882268892ca4e79a0627",
        "description": "r600/sfn: Add lowering UBO access to r600 specific codes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "32d3435a78675ff5ebf933d45b9b99fdc4dc7d82",
        "description": "r600/sfn: Add GDS instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5aadd809d07f6d7ce4d0cae18a410cc111c12c65",
        "description": "r600/sfn: Add compute shader skeleton",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fb5c835f7c9462e2095b6de645a0a75ad118c87",
        "description": "r600/sfn: Add VS for TCS shader skeleton",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e17ac0d774b5a48a8d5a8a736e4a7a28554befa7",
        "description": "r600/sfn: Add support for geometry shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c7124e134395c4fe0dbc442a5b7b94f44d16aee",
        "description": "r600/sfn: add emitVertex instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f7ec616bedce226e0f710727d21ba2059b36d66c",
        "description": "r600/sfn: Add MemRingOut instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1b17316bf38b7f2c23ce648ddd718e1f48641309",
        "description": "r600/sfn: Add a load GDS result instruction",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "31a4dd6451eec9cf96bec6d211e8e9b9f8032706",
        "description": "r600/sfn: Add lowering arrays to scratch and according instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c19013904ef0ae68c582cd6d77fe54331b36baa",
        "description": "r600/sfn: add register remapping",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "393655d5cb2ae499783408d36a96e34257473fcf",
        "description": "r600/sfn: add live range evaluation for the GPR",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "24f683fe810904ae7355ddb036e1e4f37f1480c4",
        "description": "r600/sfn: Add the WaitAck instruction",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e09cdb3f86ca53d4c24aa7b60d9ab44d1d679018",
        "description": "r600/sfn: Add the VS in and FS out vectorization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5d9456d841c54b50616b293a532d106323658ce",
        "description": "r600: enable NIR backend DEBUG flag for supported architectures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f718ac62688b555a933c7112f656944288d04edb",
        "description": "r600/sfn: Add a basic nir shader backend",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "295be0e8dfcc28366bcd193c44abc7913d5132d8",
        "description": "r600: Update state code to accept NIR shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "51285bf32ee98dcf92c4c31f7862b18ed2db322c",
        "description": "r600: Add NIR compiler options",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "27cacd28ace6d6db5083beaceb35c140d827fe96",
        "description": "r600: Increase space for IO values to agree with PIPE_MAX_SHADER_IN/OUTPUTS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4422ce1b04c117f61394a6834cd7933f06ce4e1f",
        "description": "r600: force new CF with TEX only if any texture value is written",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "144561dc5ec3dcbe63cb054f806247bc120b64e4",
        "description": "svga: Use pipe_shader_state_from_tgsi to set shader state",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "bf12bc2dd7a28844103bb30a07be0440e60c5864"
    },
    {
        "sha": "470e73e7f86b4530cf789a779f43674ecec91881",
        "description": "svga: fix size of format_conversion_table[]",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "84db6ba740d376b75e60c3a2a4ac0153c5b0e01a"
    },
    {
        "sha": "689817c9dfde9a0852f2b2489cb0fa93ffbcb215",
        "description": "gallium/swr: simplify environmental variabled expansion code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "34fd894e42ae1ec9d35bf9c4f05364b03dd4a223",
        "description": "aco: fix waiting for scalar stores before \"writing back\" data on GFX8-GFX9",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7283c33b981f975361e3bfa62a339c88f2642cbb",
        "description": "Vulkan overlay: use the corresponding image index for each swapchain",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "eb0195358c4e0376d93f10fb4f90703e51718779",
        "description": "zink: only inspect dual-src limit if feature enabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e365f83740f1faa0e4d022da7b9aea9ae6dacbda",
        "description": "zink: emit blend-target index",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8736ffae2eda9de1ac49200ef399170b428b9f8c",
        "description": "zink: replace unset buffer with a dummy-buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "18657c0c0a9074d3dfc0763b396929bcf34f71b4",
        "description": "gitlab-ci: disable a630 tests as mesa-cheza is down (again)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "35961b10da2dee4d3820ab1f250007412b06d876",
        "description": "radeonsi: don't report that multi-plane formats are supported",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a554b45d736073bbea4978118c02f7929f75cd77"
    },
    {
        "sha": "1c3f4c07047cef0dfcb9182690b22792b00d5935",
        "description": "zink: fixup sampler-usage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa915a724fbff0878478ca7dd968207bc9906016",
        "description": "zink: lower away fdph",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c36b1c0dbf2dcb8ded2509bc547a026b9624cc0",
        "description": "etnaviv: enable texture upload memory throttling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7bddaa61362924ec9dc360a2846cbdc8c647d834",
        "description": "freedreno/ir3: Fold const only when the type is float",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "260bd32b58a55ac0d9870497caef3a4602e19d47",
        "description": "freedreno/ir3: put the conversion back for half const to the right place.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "cbd1f47433b7d735e3be5c8126f7f2b9343a1cdf"
    },
    {
        "sha": "d70192e6973aec3bbe2be70192f18b6a2257872a",
        "description": "freedreno/ir3: Add cat4 mediump opcodes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3eca6d9ce14abfc542031248be6a53c31cd113f9",
        "description": "freedreno/ir3: fold const conversion into consumer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e2012d5c7496d04772c83e89d9fa1c9bc4087e2",
        "description": "freedreno/ir3: fix printing half constant registers.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d55dfef78237380d3734f2341818daa299a7f330",
        "description": "freedreno/ir3: Set IR3_REG_HALF flag on src as well in immediate MOV",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fbfc8c35315f666d14c8b1f9ec71cb70d5e57d84",
        "description": "docs: Mark 20.0-rc2 as done",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8bae10bfe0f487dcaec721743cd51441bcc12f5",
        "description": "freedreno: android: fix build of perfcounters.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fad99243151725a3bdcab73bfd548adb2c535281",
        "description": "freedreno: android: add a6xx-pack.xml.h generation to android build",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cad400a59e47461f4965cfd19882c680cc111d94",
        "description": "freedreno: android: fix build failure on android due to python version",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ff8265b64ff19380170b50b7016191c9d53fbd1e",
        "description": "gallium/swr: Fix llvm11 compilation issues",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f239bb8020df4176ca539bafff327ab5c8da2c2e",
        "description": "Vulkan Overlay: Don't try to change the image layout to present twice",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "320b0f66c27407008784da3606e23cb44c70ddf0"
    },
    {
        "sha": "4b978cd950cef844afce07993ddb697779e5648d",
        "description": "aco: do not use ds_{read,write}2 on GFX6",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "4a553212fa171ddaf849d4abb2d67208390cd769"
    },
    {
        "sha": "da76dfb5159c2ca8ee24d64a5f85a68f28b70c65",
        "description": "intel/vec4: fix valgrind errors with vf_values array",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a8ec4082a41830cf67a4fd405402fd2d820722fd"
    },
    {
        "sha": "1572e8f3e136affb429e34ec2e8e10e206e0f3cd",
        "description": "lima/parser: Change value name in RSW parser",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5802259e5438571c799bac2137da8bca505c6a94",
        "description": "lima/parser: Extend AUX0 findings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cebfb3169caafddac6ea3e0e7977abe535e3bdaf",
        "description": "lima/parser: Fix RSW depth test parsing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "eaa0784fd32a6189b6ad25b72365932b4ec15bc7",
        "description": "i965: remove duplicated comment",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "26ab38f1440625b85adc235140574901e60562a1",
        "description": "ci: Drop turnip opt-in option",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fbc117cba311ed086ba7885e6df423ce5ae114b7",
        "description": "llvmpipe: advertise 4 vertex streams",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e6690b1a62ff3b8e2576bd35d5f9bc530464032",
        "description": "draw: don't emit vertex to streams with no outputs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "72154c9075269d2022ede04f233a08bb9751f104",
        "description": "draw: emit multiple streams to streamout.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "00c066e5a04eba9359411bac36d985d047be6ddf",
        "description": "draw/gs: track emitted prims + verts per stream.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c77007c9db74c3859f75dcd5161396ae5c16772",
        "description": "draw: change geom shader output to an array of outputs.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8583fcd8f182a290f000cb303ec2e067688363b8",
        "description": "gallivm/nir: add support for multiple vertex streams",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b66884131312cac4438aab89490fd6f33443247a",
        "description": "gallivm/swr: add stream_id to geom epilogue emit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9d70002744ca121bff51dd40bfa76b633320652c",
        "description": "llvmpipe/query: add support for indexed queries",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "658eb691fc4266cfcb6d2a7eec17469f5eae10b5",
        "description": "ci: Bump the GLES CTS version to 3.2.6.1.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b37922dd1ed4bbc19b69b543a83d8fdf49532a32",
        "description": "ci: Disable a bunch of tests on freedreno a630.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b3063cbd185b3bb2e01ab4f70ca0c661f38082b4",
        "description": "turnip: Drop explicit configure opt-in for turnip",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4ca77f347d2e5791907db77ef1996f01ff9aa386",
        "description": "u_tile: Skip the packed temporary and just store tiles directly.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "68bb26af63acad6a42dd5c4d653c61917a69127e",
        "description": "broadcom: Fix implicit declaration of ffs for Android build",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ce23911b77b026ee1894e012f0249d827047bac6",
        "description": "aco: gfx10_wave64_bpermute reduce op to print_ir",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "20eb1acb6f404ffa4e502e7de8dec8ac83e7a8a8",
        "description": "aco: fix gfx10_wave64_bpermute",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "9254fb4fc72ed289ffded28ef067b4582973e90c"
    },
    {
        "sha": "1c79afd94620925cb9e0903f24f91c3ab9ecfcb4",
        "description": "Correctly wait in the fragment stage until all semaphores are signaled",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "451cf228d53ba8f51beb3dcf04370e126fb7ccb6",
        "description": "svga: Fix banded DMA upload",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "287c94ea4987033f9c99a2f91c5750c9083504ca"
    },
    {
        "sha": "5aec9e84a86f578d0babae1d5c1800578c1c1b53",
        "description": "anv: No-op submit and wait calls when no_hw is set",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f9febfae416e9fdf39a501ceb53a65c99ca78eed",
        "description": "anv: set MOCS on push constants",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "67d2cb3e9367a723d6f6310f75048c6d97afe9d4"
    },
    {
        "sha": "a140ea1cedc5b979410796b13f33031c7b20671d",
        "description": "llvmpipe: Bump test timeout to 180 seconds",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4aa7af9e9a4c19e10afaf4a3c756e62cf4d352c3",
        "description": "intel: Load the driver even if I915_PARAM_REVISION is not found.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "96e1c945f2bc4047a603753ae10fc4f27754361c"
    },
    {
        "sha": "20bcbcd958967f2f5bdb560951c70c71d0939329",
        "description": "isl: Fix the android build.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "5bea0cf77956d748ea929e12d12756692f04a33f"
    },
    {
        "sha": "a92be2fb26e6d470a6d2b179f35f54d75a7a7b90",
        "description": "intel/genxml: Drop \"reserved\" enum",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "5bea0cf77956d748ea929e12d12756692f04a33f"
    },
    {
        "sha": "deb2bbf57ec1d0660dd85b7080bf5ebeb10e8768",
        "description": "swr: Fix GCC 4.9 checks.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "f0a22956be4802e01f2b4f3244f011212626f12d"
    },
    {
        "sha": "205ce0bea5e14a855a86f8b9662ba34cdd372280",
        "description": "gallium: let the pipe drivers decide the supported modifiers",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "ac0219cc5b6afa6d0392a164b58e21ce95079930"
    },
    {
        "sha": "d8569baaed1a38cf3da9e45375fa2267d9a1eeb0",
        "description": "iris: handle the failure of converting unsupported yuv formats to isl",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "76f300f2e498f101c58e182eac3ece11e527d297",
        "description": "Revert \"egl: put full path to libEGL_mesa.so in GLVND json\"",
        "nominated": false,
        "nomination_type": 2,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "0021f7dc307f4852955359adb5ac2b7667e6d4ac"
    },
    {
        "sha": "9595b23a45a6bcb7ee784e2c38085a8ea2e4620a",
        "description": "meson: don't bother trying `python2`",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4d34abd15c91ed67414e2e0dc1ae252f53574ef6",
        "description": "aco/optimizer: Don't combine uniform bool s_and to s_andn2.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "8a32f57fff56b3b94f1b5589feba38016f39427c"
    },
    {
        "sha": "a77c3d5eed45ba5abcbacdc3511a93f02adb7673",
        "description": "nouveau: Reuse tgsi_get_gl_varying_semantic().",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f4f769c851f4130195b5e3b76784df93f457d571",
        "description": "nouveau: reuse tgsi_get_gl_frag_result_semantic().",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f9358f6f765092c821696df8b36bf2cf70b05e49",
        "description": "nouveau: Reuse tgsi_get_sysval_semantic().",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e25967d6b81b9ac9dccfe92cc92dc8d977eab592",
        "description": "mesa/st: Move the SYSTEM_VALUE -> TGSI_SEMANTIC map to tgsi_from_mesa.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9891062642a3f35dc326b305fca2407f9041915c",
        "description": "freedreno/a6xx: Implement layout for DRM_FORMAT_MOD_QCOM_COMPRESSED",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "ecd62ff7665d0a731ead705321e4e1ee0757974d"
    },
    {
        "sha": "d233c8c914ce819147197b9327bc22d1ea58b2fb",
        "description": "freedreno: Add layout_resource_for_modifier screen vfunc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "af6fb4f0a9ffe3250612acd3eb382f5eb5227e48",
        "description": "freedreno: Set up supported modifiers in fd*_resource_screen_init()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d0a7c8f4a8cd375a9448f50d777e2cc9ee95a8d1",
        "description": "freedreno/a6xx: Add fd6_resource_screen_init()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d07d66180b1523d7e70681ca142955f896ebda9",
        "description": "glsl,nir: Switch the enum representing shader image formats to PIPE_FORMAT.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5bea0cf77956d748ea929e12d12756692f04a33f",
        "description": "intel/isl: Move iris's pipe-to-isl format function to isl.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bb615e5fe3f68d0dc8210e6b09ced6913b433103",
        "description": "mesa: Clean up some endianness adapters for shader image formats.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "23c137612bea1e319ecdfb894c020b6651f4909a",
        "description": "gallium/swr: Fix various asserts and security issues",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7eaf21cb6f67adbe0e79b80b4feb8c816a98a720",
        "description": "pan/midgard: Fix scheduling issue with csel + render target reference",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "38c20696a5358d6898c4ee96fb127d603c1e1404",
        "description": "panfrost: Set the MALI_WRITES_{Z,S} flags when needed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ed94d38b4169e18bf81e956241d1c8674cc2ec6",
        "description": "panfrost: Add the MALI_WRITES_{Z,S} flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0406ea4856498c25479b1e1b191471f7222747d6",
        "description": "panfrost: Z24 variants should be sampled as R32UI",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e1ba0cd452cb456e5d06ee22fdecaed451a7a48b",
        "description": "pan/midgard: Add nir_intrinsic_store_zs_output_pan support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5619f50738c0ea2bee49d982e88f18496d7514a",
        "description": "pan/midgard: Turn Z/S stores into zs_output_pan intrinsics",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "59488cbbaca1268841fe5ba42d0a1202b33be23b",
        "description": "intel/fs: Don't count integer instructions as being possibly coissue",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "e64be391dd065b6a0eabee17ada038db7a28c112"
    },
    {
        "sha": "8455648ccae92692e4a522d23b1491d5825b030c",
        "description": "tu: Move vsc_data and vsc_data2 allocation into the device",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "84bd4da468cd21dad5d41110b495b08623e82a0e",
        "description": "freedreno: Fix CP_COND_EXEC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed5d1c1c471b9a7017625ab7d742f2895ab64b96",
        "description": "freedreno: Add CP_REG_WRITE documentation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "65197a3ac1cf4303e37927ed3faae47e41ee74e6",
        "description": "freedreno: Fix CP_COND_REG_EXEC bit positions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8be81f8a2a9f3f838cc550aeddf79657608e1008",
        "description": "gitlab-ci: Build radeonsi & RADV in the ppc64el job",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "65610ec774ae095cfee3602b3f06d51d0a199791",
        "description": "gitlab-ci: Add ppc64el and s390x cross-build jobs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a443f81f2631efa0881f72472c476d9d368b5d05",
        "description": "gitlab-ci: Merge ccache and libxml2-utils into main apt-get install",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a06fc0296d6ab3567320fb4ecab6d297eba08223",
        "description": "gitlab-ci: Pass -j4 to make",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "84fefa206c43e6a7b9a1ff34230eed0439f59e35",
        "description": "gitlab-ci: Update to latest ci-templates HEAD",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3da91b3327fb93d0364c0ca9d0216f695160831d",
        "description": "radeonsi/ngg: add VGT_FLUSH when enabling fast launch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2799676218249c5b9f1dc0a6367e459a1ad5642e",
        "description": "util/disk_cache: check for write() failure in the zstd path",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a8d941091f72923561a6c58b46ccb264b6a0e205"
    },
    {
        "sha": "6321e3fb9fd9cc9d817071d435c6b8a59869b8bc",
        "description": "dri: delete gen-symbol-redefs.py",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bcb611361b08528b14d3c5827ee2c4b21de1199d",
        "description": "anv: implement gen12 post sync pipe control workaround",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8949d27bb8b4385e92049c18f728bdcf0a79b093",
        "description": "anv: implement gen9 post sync pipe control workaround",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19e7bcee1742a40981a0b1c06447bca22646c294",
        "description": "iris: implement gen12 post sync pipe control workaround",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c07e03b792d57ae807a6953f0d8ff5f4bcdffd0",
        "description": "freedreno: allow ctx->batch to be NULL",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "22d2cbe6856fea65bf01dc96941b5127f17dacab",
        "description": "freedreno: Allow UBWC on textures with multiple mipmap levels.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ecd62ff7665d0a731ead705321e4e1ee0757974d",
        "description": "freedreno: Disable UBWC on Z24S8 if not TEXTURE_2D.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ddb0b35b76dfee95a3bd472538bf9510c1cbd2f7",
        "description": "freedreno: Blit all array levels when uncompressing UBWC.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b586d5a48cc11ee216f18ac093a601917861cff",
        "description": "freedreno: Swap the whole resource layout in shadowing.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f9f5d3eb554e6096b762744125580a239d3809b0",
        "description": "freedreno/a6xx: Disable the core layer-size setup.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "17312b4a10718ee14a80e5c1b4e2e586d8a79920",
        "description": "freedreno: Rename the UBWC layer size field and store it as bytes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b6b4118bb06c5a38d7b7bf61ab67551c3129176d",
        "description": "freedreno: Include the layer size in layout debug.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "20357dfde85712503ae82aeedcfa9b2bf31f2adc",
        "description": "freedreno: Move the layout debug under FD_MESA_DEBUG=layout.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "65a6dc5139fddd5e01eaedcc57fc67e0a6a28c94",
        "description": "radv: Do not set SX DISABLE bits for RB+ with unused surfaces.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "e9316fdfd4899c269a19e106a6ffa4309ae48b27"
    },
    {
        "sha": "17303c9851e32194550f899399859944fa5b3009",
        "description": "mesa: implement missing display list functions while switching to the template",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "56de59b931ac162de932d650176fbd981cc68aed",
        "description": "vbo: move reusable code from vbo_attrib_tmp.h into vbo_util.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "052e8f758e68061adaee7f6f95bdbb01ae8f519d",
        "description": "vbo: use the template for save GLvertexformat initialization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9ec5e96ec8297216bcab4036deaa6eb714ca4e67",
        "description": "vbo: use the template for noop GLvertexformat initialization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d447a4888fe0089c0c3589ea68daf400e866de2a",
        "description": "vbo: move GLvertexformat initialization into a template header file for reuse",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cae609326678bd00702261f756ce0c16efd530d4",
        "description": "freedreno/perfcntrs: fix fd leak",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "5a13507164a26fc796f02c57a24468b834254b4d"
    },
    {
        "sha": "8a2c507a8abe2537df5bc1f4847c40e6d4314dec",
        "description": "util: Drop unpacking from int signed to unsigned and vice versa.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d367c3aa57da54f5dbd6871a38b9fc1d6cbcc45",
        "description": "gallium: Refactor some single-pixel util_format_read/writes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ab081970e07d97c4218a68341d8534693d27e474",
        "description": "gallium: Add and use a helper for packing uc from a color_union.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2a2cf492decf35e1e2c622e3c45e98333ec15d7",
        "description": "softpipe: Refactor pipe_get/put_tile_rgba_* paths.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8bc56551da9ce64be3e253c5131a572501ad44a7",
        "description": "softpipe: Drop the raw_to* part of the tile cache interface.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6cdf523f00398b98c73743f6eb4167409ff065e0",
        "description": "gallium/util: Remove pipe_get_tile_z/put_tile_z.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e986f2b7aff6c51e420fbb06553a748f15f55a01",
        "description": "mesa/st: Use direct util_format_pack/unpack instead of u_tile.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c574cda3c6a3f880f99e4e22967fc82e34609942",
        "description": "util: Make helper functions for pack/unpacking pixel rows.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "333c9d5bb054d5ac5518e830b535e8a4f3f80187",
        "description": "clover: add trivial clCreateCommandQueueWithProperties implementation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b064697af1dc8927756986f396c793e0e23c42e9",
        "description": "gallium/osmesa: Try to fix the test for big-endian.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dd899fd43ebc56fee6ad41126db340a9c2f7bc72",
        "description": "gallium/osmesa: Fill out other format tests.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a53918f025af606450ddb9df3d032191a82ce89",
        "description": "gallium/osmesa: Fix MakeCurrent of non-8888 contexts.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "655394c6ed2ef15c66ea8234d7ab388901f7e295",
        "description": "gallium/osmesa: Fix a typo in the unit test's test names.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "75c50d03422eb6a74f462419015a697f371468d6",
        "description": "osmesa/tests: Cover OSMESA_RGB GL_UNSIGNED_BYTE case",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d83abf1d378be059b4f41a6a44a9bf24c7394084",
        "description": "st/mesa: Handle the rest renderbuffer formats from OSMesa",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d1165ad18b5e1d8b137daff1b1ad3d11ba4445e4",
        "description": "util/os_socket: fix header unavailable on windows",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "e62c3cf350a8b169e6401d5f1e1f17388cdc4b77"
    },
    {
        "sha": "36126b6211f1ac2da0aa94411608b2320553dbb6",
        "description": "i965: Do not set front_buffer_dirty if there is no front buffer",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9afdcd64f2c96f3fcc1a28912987f2e8066aa995",
        "description": "gitlab-ci: Switch kernel for LAVA jobs to 5.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "162927e43cdb5d6c184a4064fbd0799012fc297e",
        "description": "panfrost: Use size0 when calculating the offset to a depth level",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "64541dd69875d043d90525769901d18fdde4b68b",
        "description": "panfrost: Only clamp the LOD to disable mipmapping when needed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "255227ececb4444fdf5cc2925fc1064d729021f4",
        "description": "panfrost: Fix decoding of tiled 3D textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd27fb511386615cd6b44b037f9f5117846b51d4",
        "description": "st/mesa: use uint-result for sampling stencil buffers",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "642125edd97384b88f491c1383a06c42ed16e11e"
    },
    {
        "sha": "9cdd89a34b89973fbe646de5976f190ec7bd8d1c",
        "description": "pan/midgard: Remove unused variable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0f3eb7989b38239d08d729a488ad6b737ec61ad8",
        "description": "pan/midgard: Check for null consts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ec4028d4057da19708b4f4bce88ee16f96f322a",
        "description": "panfrost: Avoid overlapping copy",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c32bd325e7688c781b7e5de58a2d0534c82f00a0",
        "description": "etnaviv: Destroy rsc->pending_ctx set in etna_resource_destroy()",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "9e672e4d20fb77e1b39aee29f9e8e76a5c2af68e"
    },
    {
        "sha": "df6a2a719798d706d60b508106da363311a43469",
        "description": "turnip: Be explicit about converting vk compare func to a6xx",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6dd57f0e3811d61c9d6179452a420f28008ca9ba",
        "description": "nir: Remove always-true assert",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3dfa8f4d694e7d64a6401752af1f973b0852aab",
        "description": "glsl: Use 'using' to be explicit about visitor overloads",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0bc516fceb742e4c1ce2d47f129d19d8bb005d13",
        "description": "spirv/opencl: Cast opcode up front to avoid warnings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "67dd51606ca1670e21ce414591cc48caaf2e2e9f",
        "description": "freedreno/fdperf: Cast away some ignored return values",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2be81a3bfa839e51b9719567236acaff70babd62",
        "description": "nir: Make unroll pragma work on clang",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "de856c6170fbfd57f480c04069feb2fac0099060",
        "description": "nir: Delete unused is_var_constant() helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "42f7e124cae38dc95e219097cc23f48d24e3071a",
        "description": "Revert \"gitlab-ci: disable a630 tests as mesa-cheza is down\"",
        "nominated": false,
        "nomination_type": 2,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "f38851d84c583b1c62ea95edbc42eb5e2ad14fa8"
    },
    {
        "sha": "0ccda2ebff83816cecf4dcb48f367a0d5c8f5fb1",
        "description": "clover: Use explicit conversion from llvm::StringRef to std::string",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5d83314945d5f286cbe4fff9b07d2756f36a64c6",
        "description": "zink: disallow depth-stencil blits with format-change",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "85d4b41f6830253b81b591fa401a9c5aea5e407a",
        "description": "zink: be more careful about the mask-check",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b550b7ef3b8d12f533b67b1a03159a127a3ff34a",
        "description": "panfrost: Fix the damage box clamping logic",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "65ae86b85422ae0d41624dd56f935d85b0164a13"
    },
    {
        "sha": "2b089e26bfe615cf616926cdddafd8439c835878",
        "description": "pan/midgard: Stop leaking instruction objects in mir_schedule_alu()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7e68d8625e4efcc776b5352de3b16b6951fabf7",
        "description": "pan/midgard: Don't check 'branch && branch->writeout' twice in mir_schedule_alu()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ef89a52fe58e85402d7652d863da1cc90b378772",
        "description": "pan/midgard: Lower bitfield extract to shifts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c68cd39eb3797eb34a049950cb34acfd0719cde7",
        "description": "pan/midgard: Make sure we pass the right RT id to emit_fragment_store()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "25946be4c451fe1cc645a6fd3cb5d59160e93f25",
        "description": "pan/midgard: Add an enum to describe the render targets",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e62c3cf350a8b169e6401d5f1e1f17388cdc4b77",
        "description": "util/os_socket: Include unistd.h to fix build error",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "ef5266ebd50e7fa65c56bdb623e12ca8c233b470"
    },
    {
        "sha": "f38851d84c583b1c62ea95edbc42eb5e2ad14fa8",
        "description": "gitlab-ci: disable a630 tests as mesa-cheza is down",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a4e627054167ff52742cf45b1aefccffb0de7071",
        "description": "nv50: report max lod bias of 15.0",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0021f7dc307f4852955359adb5ac2b7667e6d4ac",
        "description": "egl: put full path to libEGL_mesa.so in GLVND json",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d5fd8cd46eeedeabf8647c06489a755aea8f0080",
        "description": "radv: Allow non-dedicated linear images and buffer.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "38f963226bdf8277826e80848d2a6b44cbabddd3",
        "description": "pan/midgard: Implement mixed-type constant packing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a12fe52cbc86b2d33cd5a726ce1020cdcd6c064c",
        "description": "pan/midgard: Break out one-src read_components",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b74212e70153f3a199a60a95d003208144f5fac9",
        "description": "panfrost: Fix non-debug builds",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "226c1efe9a8b7a4f1802ab13f249dc06b2bd7d3d"
    },
    {
        "sha": "d7fe9af6202413aa4e6f0f53d89577ed8ea80027",
        "description": "anv/blorp: Use the correct size for vkCmdCopyBufferToImage",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "dd92179a72e5263b9db730d92a883e2536aa4474"
    },
    {
        "sha": "8ff613dc58782eab0fa915056255aedb838e3470",
        "description": "VERSION: bump after 20.0 branch point",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "02658df152d1a7fedd8ce61dbe6e84566c8c75d0",
        "description": "lima: Fix build with GCC 10.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d71cd245d7445121342a4933cc6ed8ce3fc6e568"
    },
    {
        "sha": "982d61e2cdd5a5e3f82444787634fa45ba2fd44f",
        "description": "freedreno/ir3: fix a dirty lie",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "752aeb7b3fe75b3c6ce8d9dadaba9c4111fa7254",
        "description": "freedreno/ir3: simplify split from collect",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d0e7d9a4c1cfe28b3cd2356e94e287e82821e1a",
        "description": "freedreno/ir3: create fragcoord instructions in input block",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fb09020ef23cc87c1c3024add572cf0a571e8ddc",
        "description": "freedreno/ir3: remove unused tex arg harder",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2ffe44ec0a5dba18e4a88ca7dd1042e823f9685e",
        "description": "freedreno/ir3: add RA sanity check",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2f4f46b7080a1087420939b2f4bf0bea414cd3ce",
        "description": "freedreno/a6xx: fix lrz overflow",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3e79c4f0edc4a263c29f8df6169d0ad74aee7c69",
        "description": "freedreno/ir3: two pass register allocation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b0293af7a5d821776e7e90e3892015581c497810",
        "description": "freedreno/ir3: don't precolor unused inputs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ad2587d3c8885ce4aa0403269268a1c0ab8c2cac",
        "description": "freedreno/ir3: add is_tex_or_prefetch()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4a7a6c9ef0eb6b26d8410591353142207689d085",
        "description": "freedreno/ir3: number instructions from one",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0f78c32492ed096649b015a4967d6d56c18dd14a",
        "description": "freedreno/ir3: post-RA sched pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3369406e44b0226295e7475e189da2e42efd7f22",
        "description": "freedreno/ir3: fix kill scheduling",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a9f78f1f9f0019687eb374aae5abcd3b0617cf4",
        "description": "freedreno/ir3/ra: make use()/def() functions instead of macros",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5f24f966ae217981cd39e867a0de1fee029e740",
        "description": "freedreno/ir3: a bit more optmsgs debug",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "300d1181c72043afe045a155079fc152fcd1283e",
        "description": "freedreno/ir3: move atomic fixup after RA",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "304b50c9f8f57a115ac251f022093c8adfb0823d",
        "description": "freedreno/ir3: move block-scheduling into legalize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "093c94456bc99308bd80bcc952d1f77ea71a831c",
        "description": "freedreno/ir3: move nop padding to legalize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c803c662f990621acefd2f002d9df0d42ad8a3a0",
        "description": "freedreno/ir3: split out delay helpers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "54c795f8297d5087b013777bddac32ed47941cb7",
        "description": "freedreno/ir3: fix crash when no non-input instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c1194e10b2dc4d14ea21eb9bc8e607056ebaffcd",
        "description": "freedreno/ir3: cleanup after lower_locals_to_regs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f0b792ea0602dd344b8a2dce4ab582b167f6fd35",
        "description": "freedreno/ir3: shuffle a few ir3_register fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "95831e2f66a16e2334cb1f972c9485b71955900b",
        "description": "intel/gen12+: Set way_size_per_bank to 4",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "00a84c170a0a495f21008a80557a1d2b8257ea56",
        "description": "intel/gen12+: Reserve 4KB of URB space per bank for Compute Engine",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0d8b373adebbf8396b16537bd4d633ab6659900",
        "description": "virgl: Use align_free for align_malloc allocated buffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d326d30efefd132255826ff33a9a4c51c216fe39",
        "description": "freedreno/drm: readonly cmdstream",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f93dfb509cbf9474befae9919dd8c135bbd67093",
        "description": "intel/fs: Write the address register with NoMask for MOV_INDIRECT",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a95abd0f755331503e283354b44b639865f1329",
        "description": "intel/tools: Handle strides better when dumping buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "51d7c42165d2344d0019299d42b34c07f7f5e8d0",
        "description": "intel/disasm: SEND has two sources on Gen12+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa3ef6a8370bf1ce121806e60ccdedb2ddc6aa83",
        "description": "intel/eu/validate: Don't validate regions of sends",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b323d66019bcbb56811b66947b39e77a2c7c3e0",
        "description": "aco: fix image_atomic_cmp_swap",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "71440ba0f5512fe455be66ca48b253ecc37478a9"
    },
    {
        "sha": "0d14f41625fa00187f690f283c1eb6a22e354a71",
        "description": "aco: fix MUBUF VS input loads when expanding vec3 to vec4 on GFX6",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "6aecc316c000c343b25963c1356525f95ea6cafe"
    },
    {
        "sha": "d8410fec4efa4fb8847342a15b021501e3e2341b",
        "description": "gallium/swr: Fix gcc 4.8.5 compile error",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8dacf5f9d1df95c768016a1b92465bbabed37b54",
        "description": "swr: Fix build with GCC 10.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "790516db0bfc056df0290c42565214d4148e901a",
        "description": "gallium/swr: fix gcc warnings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8405e1bef0cfa99a2e5e865cf5f933fddbd35222",
        "description": "zink: implement support for derivative-control",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f12b844e7c284f691323d4f77f2fd94c648e37e0",
        "description": "zink: implement load_instance_id",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0ced1e79b3311cf55f3c8852417825e3fe102ef",
        "description": "zink: enable texture-buffer objects",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "00edb82fde2cfebe97457cb7819e7e560c4d3a4c",
        "description": "radeonsi: Add support for midstream bitrate change in encoder",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d902e23d8094a01f752d3404ec484e0c059eb193",
        "description": "panfrost: Use DBG macro to avoid noise in the console",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "25042062215c682445a70b4527e8298b30996d93",
        "description": "pan/midgard: Handle nir_intrinsic_load_barycentric_centroid",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "226c1efe9a8b7a4f1802ab13f249dc06b2bd7d3d",
        "description": "panfrost: Add more info to some assertions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d5c433aeeeb083f1a5902d58e520614d2fe35be",
        "description": "panfrost: Print intended field when decoding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c5fd2942b4fb2005b3d01fb4cab86a4162c8a90",
        "description": "anv: Always fill out the AUX table even if CCS is disabled",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2ccdf881aba7c8cd0c7175995e351e783e0fd11d",
        "description": "iris: Plumb deref block size through to 3DSTATE_SF",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6b39850f092b387881c4fb4260c9465971422aa",
        "description": "anv: Plumb deref block size through to 3DSTATE_SF",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ce9c45a60ed51ddb27bd969bdc61336f18121a07",
        "description": "intel/blorp: Plumb deref block size through to 3DSTATE_SF",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fdc0c19328fd8e02e4b1bd5c62b93ce6c4597ca1",
        "description": "intel/common: Return the block size from get_urb_config",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e340a79b9c4b6ee35eaa10a685395a67d0b0b440",
        "description": "anv: Emit URB setup earlier",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e928676b69bf9cafce1c0304dd473c926b9f2854",
        "description": "iris: Consolodate URB emit",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "09e4c33085f15ffa691053143bec9dbf4aecfeaa",
        "description": "intel/blorp: Always emit URB config on Gen7+",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "73a684964b392c4df84373e8419e355267d57ff5",
        "description": "intel: Take a gen_l3_config in gen_get_urb_config",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9d05822cb8b5d3fd066c64722b76b3507a7fd24f",
        "description": "i965: Re-emit l3 state before BLORP executes",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bff7b3c7bd56c25544ea6e3ea9452358374db10a",
        "description": "iris: Use the URB size from the L3$ config",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "99f3178a249525d333c5b27d755a0f99a81b3c17",
        "description": "iris: Store the L3$ configs in the screen",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6471bac99ec11c7901d6fc9bda908c047e621f5f",
        "description": "iris: Set SLMEnable based on the L3$ config",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "73434b665b2ec50cbd1060ce831aec3b2e21517c",
        "description": "intel/genxml: Drop SLMEnable from L3CNTLREG on Gen11",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e1bdb127b6875df602bd736465d597725f326621",
        "description": "anv,iris: Set 3DSTATE_SF::DerefBlockSize to per-poly on Gen12+",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9da9abf8a7a605cc9b79bd4240ff715b79ac774a",
        "description": "genxml: Add a new 3DSTATE_SF field on gen12",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "21dd0a151401956523d7facaccfa8e8cdf915c18",
        "description": "docs/release-calendar: 20.0.0-rc1 has been released",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    }
]