summaryrefslogtreecommitdiff
path: root/.pick_status.json
blob: 1c23f560d7c6fa6749cfde81215b638a15f64603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
[
    {
        "sha": "c1c0cf7a66905e8d7ad506842a41b0ad0c5b10da",
        "description": "aco: fix consecutively written vgprs from vmem instructions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c7bed72f7948d51a2109f181e7a2d3c77dbd19e",
        "description": "aco: simplify consecutive ordered vmem/lds writes optimization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6beb051aff4f11784cb974a1dc3647e74f2389c",
        "description": "gitlab-ci: correct tracie behavior with replay errors",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "efbbf8bb81e97a2b2d2e6e018750ef36cd460676"
    },
    {
        "sha": "8546d1dd789b58bd0aff5ca0a231efb35c09c1ac",
        "description": "gitlab-ci: create always the \"results\" directory with tracie",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "efbbf8bb81e97a2b2d2e6e018750ef36cd460676"
    },
    {
        "sha": "1ef03dade12b4d5056c3fe5637f9dfd98a42aae6",
        "description": "radv: add a LLVM version string workaround for SotTR and ACO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "91c757b7963f458f678226f9637f04a490085405",
        "description": "turnip: use the common code for generating extensions and dispatch tables",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ddfae50b67e20895c908c9c0721d0b4cfdb18d20",
        "description": "anv: use the common code for generating extensions and dispatch tables",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "857051c5c63e238f606652acb1e1f9610de68758",
        "description": "radv: use the common code for generating extensions and dispatch tables",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bee8a57942787b4a7a2ca5c375d911288ee16cbe",
        "description": "vulkan: import common code for generating extensions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9b1138e3f0e960119a46dc08794132719c93173e",
        "description": "radv: implement VK_EXT_private_data",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "178adfa6a8e5694a077c3e11fdcc5bc0802839ab",
        "description": "radv: use the base object struct types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "65458528fc169ab80c99cb115bc6f86ae7b43d12",
        "description": "radv: use the common base object type for VkDevice",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2b535ac61b92cdf5f1e5adca3f2a4a43e7384e1a",
        "description": "etnaviv: Disable seamless cube map on GC880",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "8dd26fa2f065e78f3204357d8b474656b9ea81db"
    },
    {
        "sha": "f079c00ffc1c9e85321955f679e656196f724848",
        "description": "freedreno/a6xx: fix max-scissor opt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d6706fdc46fc895b3b3d4446af3d4a9ab1e700c0",
        "description": "freedreno/ir3/sched: try to avoid syncs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d95a6e3a0ca2d4a420306dd078cea05d3f21c865",
        "description": "freedreno/ir3/sched: avoid scheduling outputs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "488cf208d5d90b0f3b3c346e0abb92e71597202f",
        "description": "freedreno/ir3/postsched: try to avoid (sy) syncs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "25f4fb346e1fad34ce1f2e9e39b062a303db4ce3",
        "description": "freedreno/ir3/postsched: reset sfu_delay on sync",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f351e1d137603213b5daacece5ff67ad0786d982",
        "description": "freedreno/ir3: limit # of tex prefetch by shader size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d69f6fd8529b1dcefa443a8cb31bd362bb64a28c",
        "description": "freedreno/ir3: fix indirect cb0 load_ubo lowering",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "fc850080ee304c2a62f7313c4b7ebe121c3ebb53"
    },
    {
        "sha": "c4dc877cb5df63a6a86013e32695f72c604625ad",
        "description": "freedreno/ir3: don't allow negative const_offset",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d8ba7fb44f8130f7ded5459dbac5484cc9202a9",
        "description": "panfrost: Run dEQP-GLES3.functional.shaders.derivate.* on CI",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b7bd021c700961b6eb3f9ee5b7777f4c7e1bab45",
        "description": "pan/mdg: Fix derivative swizzle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bac29316b06a5bbee396c70c53ed0640af67c064",
        "description": "pan/mdg: Set types for derivatives",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "69e4d4fabe728e49b22ddcff49153deb3bc43e94",
        "description": "pan/mdg: Remove texture_op_count",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "344dd914972f9ddcef814a3cf08f832708c33146",
        "description": "pan/mdg: Use analysis to set .cont/.last flags",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a7f0e268b7baeb92d8d7d2989beb43550262406",
        "description": "pan/mdg: Use the helper invo analyze passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d429187bf3988fca190fcbd53e416b8a46506b25",
        "description": "pan/mdg: Analyze helper execution requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3228b3106a672e79093f2186f3e040a7579cd7b4",
        "description": "pan/mdg: Analyze helper invocation termination",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0da03c68ae3e16a339e41b967fcb689666f02296",
        "description": "pan/mdg: Explain helper invocations dataflow theory",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "95fd950d35717dda29cb7876ac2f2b7852eff1c4",
        "description": "intel/compiler: fix alignment assert in nir_emit_intrinsic",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "c6439792287f11f25cb2b62d699f52daefe54a44"
    },
    {
        "sha": "a663c595bc19d627d2fd28081412306b91554d96",
        "description": "freedreno: Skip taking the lock for resource usage if it's already flagged.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "356f99161df36223091cf9721dd49e52cb9e5e3e",
        "description": "freedreno: Move the resource_read early out to an inline.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d393837332a07f53b9622ca55149e63947e0f937",
        "description": "freedreno: Add an early out for preparing to read a resource.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3e424bcdfcef19682f9b651f7c1a04e32f18be5c",
        "description": "freedreno: Split the fd_batch_resource_used by read vs write.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fdcadf611e03f0dc8878fb032b62510c38fe069b",
        "description": "freedreno: Add a nohw flag to skip submitting to the kernel.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a43e9740646a42e3c2d914ad7e0eb20f4113d153",
        "description": "turnip: Execute ir3_nir_lower_gs pass again",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1bd38746d5a2d21a2f77e2bf1c6fec17ca5eb6ac",
        "description": "freedreno/gmem: rework gmem layout algo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c46f46befe67f2e64f1492e5b46974e277ec6ac7",
        "description": "freedreno/gmem: relax alignment on a6xx",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ad6e06621b15908d5f3f4c63ce4d84612e5a761c",
        "description": "freedreno: add gmemtool",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ef5f238fd08bb470e0f6327ec76723d37704f13f",
        "description": "freedreno/gmem: add helper to dump GMEM layout",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6a49d9c396b61ef2556afba59c495c45bfab0202",
        "description": "freedreno/gmem: add div_align() helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "96b5a70f45612642265d7192e04e90206a4c260f",
        "description": "freedreno: initialize max_scissor",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1387e778018527f1ea85f616130a2b0d59dcff19",
        "description": "freedreno/gmem: don't assume scissor opt when estimating # of bins",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c87618d357a4f75a4f47b2638c8f89939fd6c61",
        "description": "vulkan: Handle vkGet/SetPrivateDataEXT on Android swapchains",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "51c6bc13ce3a70b1948ce5c4edbc1d29c5460986",
        "description": "anv,vulkan: Implement VK_EXT_private_data",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d76e722ed63607ecead2c66ef9f3a37a12b62bab",
        "description": "turnip: enable tiling for compressed formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f543d87f23555912110e2c0f67a57dcb99d94e08",
        "description": "turnip: update \"fetchsize\" value to match fdl6_layout changes",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "a34b3fa198a4f87f8e07c718ec2f2e07927c6d7d"
    },
    {
        "sha": "f789c5975c83f12216cf915d9a791e654b3c9e15",
        "description": "freedreno: Fix non-constbuf-upload UBO block indices and count.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4553fc66a5f23607c2e872d8ac8755c747bd0bd2",
        "description": "nir: Fix count when we didn't lower load_uniforms but did shift load_ubos.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "4777ee1a62f0620efa2a105215eb589fc44dfa0f"
    },
    {
        "sha": "0f2e44d55b01b3637fb96ce18840b8ab9250d508",
        "description": "freedreno: Drop the \"write\" arg to emit_const_bo now relocs don't care.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "51d7a71bd4f086b42340b0d601d2c3ff4bc7de37",
        "description": "freedreno: Replace OUT_RELOCW with OUT_RELOC.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "064f395a890158ea5502f685ef6c22e504e3f0df",
        "description": "freedreno: Tell the kernel that all BOs are for writing.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2c23b1e48f043edee1a6aaa3c132c13edba032e",
        "description": "freedreno: Mark all ringbuffer BOs as to be dumped on crash.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "554b959df0d5b1117fb42d3d7d1e715ea318f079",
        "description": "freedreno: Replace OUT_RELOCD with permanently flagging shader BOs for it.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9d8d936dfcdab52361b9824cdd1f3ddb41486145",
        "description": "freedreno: Start moving relocs flags into the BOs.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4235624b6a1f1858a8f200c03b6492ed1b9f21ec",
        "description": "aco: optimize add/sub(a, cndmask(b, 0, 1, cond)) -> addc/subbrev_co(0, a, b)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5fc96b533418dc2d68f17f3f19ac5f82d59b978",
        "description": "aco: coalesce parallelcopies during register allocation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "38cc649fcb54baf87a974ca2dc29d92b50c86cfa",
        "description": "glthread: Fix use of alloca() without #include \"c99_alloca.h\"",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "2840bc3065b9e991b2c5880a2ee02e2458a758c4"
    },
    {
        "sha": "dc6c42dc77e4bf0cb07037e038c4a50afa5a8143",
        "description": "etnaviv: generalize FE stall before loading shader and sampler states",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8e5fc97be63e4c4296f16fe34523b68d39776fad",
        "description": "CI: Re-enable Panfrost T7x0 jobs",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "696bafac40f5f15ae140a2e844fb1b31d4918ebe"
    },
    {
        "sha": "8c6350d2bba852fccbda5e0534bdbb085882b3be",
        "description": "radv: update the list of allowed Android extensions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "021270cb3170ef38244d21cf3fe8780a3ef5fb3e",
        "description": "radv: handle different Vulkan API versions correctly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "69430921fc123b9016d5bf1779c0ab0ed4d95931",
        "description": "radv: limit the Vulkan version to 1.1 for Android",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7f5462e349a3f082e2944181cd610b1250d711cd"
    },
    {
        "sha": "50eabb7035fe361d870f504b73c15962ddf0b67e",
        "description": "r600: Fix nir compiler options, i.e. don't lower IO to temps for TESS",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "6747a984f59ea9a2dd74b98d59cb8fdb028969ae"
    },
    {
        "sha": "f7fcbe9830d160c9610fe641ed0202397ed9c31e",
        "description": "v3d/tex: use TMUSLOD register if possible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c3af695bb0bae8aea119a2d05983acd57366b0fb",
        "description": "v3d/tex: set up default values for Configuration Parameter 1 if possible",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "50c2c76ea31edf987594e8b811b7d62be71f5a33",
        "description": "v3d/tex: only look up the 2nd texture gather offset for 1d non-arrays",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ad8c5bba0a44774477a1b26523a14e8679521fc3",
        "description": "drirc: Enable glthread for rpcs3",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d1290e79489fb645fc73ebb365b684b7797f97b2",
        "description": "pan/midgard: Fix old style shadows",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "47bfc799da61aadd60ef9cc5c4bf0651c519cc77",
        "description": "gallium/util: Fix leak in the live shader cache",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "4bb919b0b8b4ed6f6a7049c3f8d294b74b50e198"
    },
    {
        "sha": "412e29c277774391c461d0f62c47e54d2f17814a",
        "description": "nir/algebraic: Eliminate useless extract before unpack",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bc0bbb8f0b45049e597d7d585999ae4954266347",
        "description": "nir/algebraic: Add some half packing optimizations for pack_half_2x16_split",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a2bf41ec6527fbedc2a75a8072d7222298bca347",
        "description": "nir/algebraic: Optimize ushr of pack_half, not ishr",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "1f72857739beed55276f263f49b3802c336b8c58"
    },
    {
        "sha": "ab16bff97d75301b56530c2c9a410960e2de8bc8",
        "description": "intel: Delete hardcoded devinfo->urb.size values for Gen7+ (sans DG1).",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0bea2a13212be10982e14617002a3ff851b84717",
        "description": "egl: Limit the EGL ver for android",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9c839e6394028a84c97ebd0a725ff512aeb75ce6",
        "description": "amd/common: Fix incorrect use of asprintf instead of vasprintf",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "39d59cf87a3974142cb69dd52386d96b5e6e7dd9",
        "description": "docs/features: mark GL_NV_conditional_render as done for zink",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5743fa6e709a01c5a6820320b2e87931af46e7cf",
        "description": "zink: enable conditional rendering if available",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c7dea394fc21d455cd00dff3d3881276427fc47",
        "description": "zink: add a GET_PROC_ADDR macro to simplify load_device_extensions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b8fd70eef2cb5936e8ccb4d237e50084d6ff2a7c",
        "description": "zink: load vk_GetMemoryFdKHR while creating screen",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c668bdf05cf3aa6907b678c35805962ea79b258b",
        "description": "radeonsi: do not use cmask with encrypted texture",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8873ea0e253b90eb91da514e36bd845d6a5f9734",
        "description": "radeonsi: determine secure flag must be set for gfx IB",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "92e64f4b41ed0ab0b9291d1de0b285733fd92307",
        "description": "amdgpu: use AMDGPU_IB_FLAGS_SECURE when requested",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c2ab36f5346a07b14ee85703316f323a77c2530",
        "description": "radeonsi: add support for PIPE_RESOURCE_FLAG_ENCRYPTED",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "413d91bbcb9f4a0db811c714d1cdcd731fee50b9",
        "description": "gallium: PIPE_RESOURCE_FLAG_ENCRYPTED",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c58cbe84d231b602d830f4d9e26ed8d42ddc145",
        "description": "radeonsi/sdma: implement tmz support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5d96c26b67da5a053d57782d42cb80447e4ade1a",
        "description": "radeonsi: force using staging texture when uploading to secure texture",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fe2a3b804bdf4773d853974a0a51584cd5a0f9d9",
        "description": "amdgpu: add encrypted slabs support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2853ed1a248d6be1f131a684cddaf4be5a2bb9b6",
        "description": "radeonsi: allocate framebuffer texture as secure when using tmz",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5a67b52de46e42c745af3672767d0271d5425230",
        "description": "radeon: add RADEON_CREATE_ENCRYPTED flag",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "856a03b4c1646cae36b0c2522a3a7b71ecec6fac",
        "description": "radeonsi: add AMD_DEBUG=tmz option",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "977e19d5cfe02227756aa022a7471570aa17edf7",
        "description": "amdgpu/radeon: add secure api",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "506f5d9bda64fc07ee1a216cb3aeef98491c6365",
        "description": "ac/surface: remove shadowing declaration",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "7691de0dcefd7a518ee1ecc4d2cd3803e42cc803"
    },
    {
        "sha": "266978f7cabe2c09e5538ef1b79efdd96b2cba00",
        "description": "aco: prevent invalid loads/stores vectorization if robustness is enabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "04718a9cd63cea9d815bffd91495069a79db8ac5",
        "description": "nir: do not vectorize load/store if offset can overflow and robustness enabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3fba0a7a6f01496344ddb93e774b2d4bc9195e8a",
        "description": "aco: fix 64-bit trunc with negative exponents on GFX6",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "56f955e4850035d915a2a87e2ebea7fa66ab5e19",
        "description": "etnaviv: drm: Normalize nano seconds",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "022327f7535a7d27f965af7c318005a56b44ab85",
        "description": "etnaviv: drm: Use NSEC_PER_SEC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a92a483ff7feee1a903fd1f4caab9c2a035882b8",
        "description": "freedreno: android: add adreno-pm4-pack.xml.h generation to android build",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "ee293160d7d7341e0ec5f0aaf1ceb6950f785ed8"
    },
    {
        "sha": "5dc3b22dd06c74cdb06cbc6cf3b6d073b221e7f3",
        "description": "freedreno/drm: android: add libfreedreno_registers static dependency",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "6c688ae81f4a6249cdccf1d218da5bebaf23e4f4"
    },
    {
        "sha": "e622e010fd838eb30eab46800015516703b76f4d",
        "description": "lima/ppir: rework select conditions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0c58867cddcf199cf85d270b42965678ad8af10",
        "description": "lima/ppir: add fallback mov option for const scheduler",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c47640731303ed2607d28ce2cf19a7e8f0f4006",
        "description": "lima/ppir: rework store output",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "570f1420dbf361cf889c21c119816e063ecc3cea",
        "description": "lima/ppir: rework emit nir to ppir",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b21b771f7b4bdd60089c784ed35e33622c8932a",
        "description": "lima/ppir: remove unused clone functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c4157138f331d5053036f756aefa7006bbb6fac",
        "description": "lima/ppir: duplicate consts in nir",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e6c3861182cbf481ce3d25d0bbbcad4916c92dd",
        "description": "lima/ppir: duplicate intrinsics in nir",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "09003ba0700ed0ddc57d85e82320f15a2a90c8dd",
        "description": "lima/ppir: combine varying loads in node_to_instr",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c6a3987f320fa26fa88e6d86cf236d7e426aab84",
        "description": "lima/ppir: do not assume single src for pipeline outputs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "741aa3439d7d38c26d0baf20be506cf79c30978d",
        "description": "lima/ppir: fix lod bias register codegen",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cef1c73634493ef9766baa0b6a898369eff7686f",
        "description": "lima/ppir: introduce liveness internal live set",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9e790fea7c178141b5bb1b82ab6bcf4034bfdb18",
        "description": "genxml: pack: deal with default field not being simple integers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "942d4538a46c3420570ccf5c5f5677380c75caf0",
        "description": "genxml: factor out utility functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d07f69413ebd1ad56e5bba86a1891bbf571ff710",
        "description": "genxml: fix invalid end value for video fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "af17e392b2e50c86dd9a11ee72ce119a4b0033a5",
        "description": "genxml: run sorting script",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "45c33313e6ee5ec85e585b512270c3f668eb149e",
        "description": "intel/dev: Add device info for RKL",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "54996ad49273641e20dbb2d7aff382199e27cd10",
        "description": "intel/dev: Split .num_subslices out of GEN12_FEATURES macro",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "07b0fbea92a66499ef7c0f9b748b1034831201b1",
        "description": "panfrost: don't always build bifrost_compiler",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "ec2a59cd7aa42652645e76e29a72335370c80e50"
    },
    {
        "sha": "727a0a53fdd4a1cf63a28c53f51d49a4164b2c89",
        "description": "radeonsi: remove emacs style config file",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6c998c7adfd386eede37de49080a043ef1ec0e34",
        "description": "intel/dump_gpu: Fix name of LD_PRELOAD in env append logic",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1a59590e5d686a11687151d57f2fd43d366d6720",
        "description": "ac/surface: fix broken pitch override on gfx8",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "441eaef6a9e5bb6d55bb3f875d60b35a5e70042b"
    },
    {
        "sha": "c9e8df61dc8737f167767f2bda8a56abcae8ad5e",
        "description": "freedreno: Initialize the bo's iova at creation time.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b3c4e6a597a45a0281cdcb8d70ec86ce8dabbb16",
        "description": "freedreno: Rename append_bo() in case it doesn't get inlined.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e1c74f3facce57555284d23ee11bc009928806f1",
        "description": "freedreno: Clean up tests around ORing in the reloc flags.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6c688ae81f4a6249cdccf1d218da5bebaf23e4f4",
        "description": "freedreno: Deduplicate ringbuffer macros with computerator/fdperf",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "094c7646a3ae4980f76605a922572fe2ed78f6f1",
        "description": "freedreno,tu: Don't request fragcoord components not being read.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ab5590e92bc36e2b785a088751c433d31989d778",
        "description": "vulkan/object: Always include the type",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "32f20783a512129fc2d7dd8a11ffa8670cef0068"
    },
    {
        "sha": "d11e4738a86ecac6bb4cfaf5cad5c1d32169b18f",
        "description": "anv/allocator: Add a start_offset to anv_state_pool",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "772b15ad3227e08bb4e18932ac9ecf4c29271160",
        "description": "util: Make process_test path compatible with mingw native toolchains",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "f8f1413070ae079443ab31a75679cfd10cb756ed"
    },
    {
        "sha": "696bafac40f5f15ae140a2e844fb1b31d4918ebe",
        "description": "CI: Disable Panfrost T7x0 jobs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "78d267e6dad9dbcc9e39d7d388075d15e67ba3c3",
        "description": "Linux: Change minimum priority threads from SCHED_IDLE to nice 19 SCHED_BATCH.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f66bf5ba444e95e82401d8f6fd726e5ef17b3db9",
        "description": "docs/features: add zink features",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8bcfce2fcd02e9b04b7edda5c0d8a0e4b77be39c",
        "description": "anv: fix alignments for uniform buffers",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a0de2e0090535bd49b70c52917e7bdab628d354a"
    },
    {
        "sha": "f105b69464d908ee8b54c0bddb51909ebde4d686",
        "description": "radv: report correct backend IR in hang reports when ACO is used",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "290d480c55199e013fdfb91e948046f23d9c704d",
        "description": "radv: do not print the LLVM version string twice in hang reports",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b1ef1c1211373f9336aaf87de865ef7f0c29fc44",
        "description": "radv: remove the LLVM version string when ACO is used",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee2aef3ea531a03dbd50a78c943ca6e7cc99c7a7",
        "description": "anv: call base finish only if pass given in DestroyRenderPass",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "682c81bdfb7ea28efccea1e8cbfeb7cfc67d02b8"
    },
    {
        "sha": "a885ee5258241d7ec4b9288cb15955e59d526d1a",
        "description": "st/wgl: allocate and resolve msaa-textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "947bb04fcc03c9c1b8a04a6b3cd7f86825e6f244",
        "description": "st/wgl: pass st_context_iface into stw_st_framebuffer_present_locked",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "808eb20186a23be1a1917668e374243151e6699e",
        "description": "radeonsi: Fix omitted flush when moving suballocated texture",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "5e805cc74bc52f97de8f6308fc06bc96623e7e09"
    },
    {
        "sha": "37e89e30276724932328edb7b8bf4909606052d1",
        "description": "aco: either copy-propagate or inline create_vector operands",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "2dc550202e82c5da198ad0a416a5d24dd89addd8"
    },
    {
        "sha": "c9e73624022a482ffe0a41d0cae007e04cc61dc4",
        "description": "ac/surface: override all offsets including metadata offsets",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "441eaef6a9e5bb6d55bb3f875d60b35a5e70042b",
        "description": "amd: unify code for overriding offset and stride for imported buffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c164ea86e193c710d41de769ddfb169ab53ced51",
        "description": "ac/surface,radeonsi: move the set/get_umd_metadata code into ac_surface.c",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7691de0dcefd7a518ee1ecc4d2cd3803e42cc803",
        "description": "ac/surface,radeonsi: move the set/get_bo_metadata code to ac_surface.c",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "56e37374ddbc3b66bcfa4d0dadcb1fd53074c822",
        "description": "amd: assume HTILE is always rb/pipe_aligned, remove ac_surface.u.gfx9.htile",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf61f635ff6a38aad344ebe30551eaaac6fec038",
        "description": "amd: assume CMASK is always rb/pipe_aligned, remove ac_surface.u.gfx9.cmask",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "127aaf0b9ac1eb46633df35c899b5d1a175a7220",
        "description": "amd: remove duplicated definitions from amdgpu_drm.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "25edf9b136415fc9c079ad8613b89ce261b5c351",
        "description": "amd: update amdgpu_drm.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "89d4b6b5c857e1efcff4d945fb83b4e77d26378d",
        "description": "llvmpipe: make sample position a global array.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b6449d45317f4441eef464b415f5c65e5103dab",
        "description": "nir/algebraic: Optimize some bfe patterns",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f46eabf84e6a3227ce846f6725ad16517d146dae",
        "description": "nir/algebraic: Split ibfe and ubfe with two constant sources",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d605a8bbfd0eb84e010bb9944df53b1f7242156",
        "description": "nir/algebraic: Recognize open-coded byte or word extract from bfe",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "58dfb38f784c70020fd57dc38a0fd6c7f0aed80d",
        "description": "gallium/swr: Fix crashes in sampling code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "58b66f82e648eaa9378699aadcc5862bb941483d",
        "description": "panfrost: Handle MALI_RGB8_UNORM in panfrost_format_to_bifrost_blend",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9c3e82296c8bfc96ac956918a69f917a954c1f12",
        "description": "panfrost: Don't trample on top of Bifrost-specific unions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e53cce3ba4bdbddcad5f740a915f126f2388dd6",
        "description": "pan/decode: Fix flags_hi printing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a4d41a151095f73b4b8a7ba06bf06adc7cedebd8",
        "description": "panfrost: Add checksum BOs to batch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4f17e9eef6f9f8a2986264b3da5157542983a1da",
        "description": "anv: don't expose VK_INTEL_performance_query without kernel support",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "2b5f30b1d91b98ab27ba21439cd8a40a0d1ece36"
    },
    {
        "sha": "6d513eb0db25a272da65822f35907456b544f172",
        "description": "tu: Support pipelines without a fragment shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7ba2333cc17e7f0a1520866bcfd60a991d34295e",
        "description": "util/os_memory: never use os_memory_debug.h",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "76f79db3f5d8492370c92080b5bbea7e31827b75"
    },
    {
        "sha": "905edc376dd1ace6ac2af0fc351606210a0141a1",
        "description": "v3d: Include supported DXT formats to enable s3tc/dxt extensions",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3ecf48dda2ddabfbabdad83e19d280d0edb8246",
        "description": "v3d: Fix swizzle in DXT3 and DXT5 formats",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "469bbd8387d11bbac2aae4c49765c748c2a9fd04"
    },
    {
        "sha": "17ed4a01ee2bdb773109cf06ea8f827737f88684",
        "description": "docs/envvars: update RADV_FORCE_FAMILY",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c6afd0f349b17aaa0b2e06ccee44fa709d6285c",
        "description": "docs/envvars: document ACO_DEBUG",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1aaec1f3f451c60456aa4b28699fd57c7b22d021",
        "description": "docs: add src/amd/ to sourcetree.html",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "38bbfd3a57d68abdc88a93b436eac9f30a397b0f",
        "description": "clover/nir: Check the result of spirv_to_nir",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "deb04adf2ae605a017d7ce4e81f57db679567dfa"
    },
    {
        "sha": "abc4a8285776dcded21d0b7f3035c9858d061611",
        "description": "nir: make fsat return 0.0 with NaN instead of passing it through",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d8a27c0bb3049963934c77d104db39ecf610e3b9",
        "description": "compiler/spirv: flag nclamp/nmin/nmax as exact",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a11aa4ece691ac9b6d8911cac6f3727ac3d7094",
        "description": "docs/features: Add ARB_clear_texture to virgl",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2e6bbab9aecd8e6cfb6e2e8dd408460a96365ada",
        "description": "virgl: Enable CAP_CLEAR_TEXTURE if host supports it",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e705a2a9f48d3247557d468216c797dfb1758826",
        "description": "virgl: implement ARB_clear_texture",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a6321c4b5a038db4682e49e098e9368df7ea18c4",
        "description": "r600: Fix warning regarding mixing enums and unsigned in ?: expression",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5469fcea75457542b699404b003bfb051a5fc6b0",
        "description": "r600: remove some unused variables to silence warnings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "79f20eb819e4ca4c09a5602c0d82ac905773cc66",
        "description": "r600/sb: replace memset by using member initialization/assignment",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee3f4ab2f439c1180067072cb943d2ba4a6c33b9",
        "description": "r600: remove unused static functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a244778f7304d47e40a10415e06607835f18a63",
        "description": "r600: Annotate some case fallthroughs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f9dbca8db5e2dc857410f1ab34f85ca6dc837413",
        "description": "ci: run radv-fossils with Pitcairn (GFX6) and Bonaire (GFX7) too",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a44cfac502f9a740d0c21b561f270e4221cb78d7",
        "description": "ci: set ACO_DEBUG=validateir,validatera global for RADV testing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5dbf862b13214cec4765811abba91111c4b0f04d",
        "description": "ci: remove unused .test-radv-fossilize rule",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0de2e0090535bd49b70c52917e7bdab628d354a",
        "description": "anv: increase minUniformBufferOffsetAlignment to 64",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e8cdf125112934b589d9682239e46bf196bd9de1",
        "description": "freedreno/a6xx: enable tiled compressed textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "193560c44bfe35655a111870773a8ff5f08ee5dd",
        "description": "freedreno/a6xx: compressed blit fixes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "85f2cd84ac14be7d44eb7d5deb9b9756bd7bacc2",
        "description": "freedreno/a6xx: Set tfetch correctly for compressed formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a34b3fa198a4f87f8e07c718ec2f2e07927c6d7d",
        "description": "freedreno/fdl: Align after dividing by block size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6292059662dccd3e151c731a3b108fd0b9e4c606",
        "description": "docs: update calendar for 20.1.0-rc2",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2637961d29b3828e07953159d075f8544ce3fae5",
        "description": "ci: Fix the nick used in IRC reporting.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2c50176dfea360775d36cbbb02027d959db6dfaa",
        "description": "ci: Improve the flakes reports on IRC.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b5e71cb181bae7646abe561a779b3d2062ba0cb",
        "description": "ci: Enable IRC flake reporting on freedreno baremetal boards.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c7bbc211d681696687a134eb158d55fcb674907c",
        "description": "ci: Clean up setup of the job-specific env vars in baremetal testing.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "29da52128090a1ef8ef782188c0f67c7f5ec8d19",
        "description": "radeonsi: fix compilation of monolithic PS",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "8832a884345686e6a8b2c0c8aa7515ad3f775b9e"
    },
    {
        "sha": "d5109741f372173d6e13bdb6fff06c75def19439",
        "description": "tgsi_to_nir: translate non-vec4 image stores correctly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "784358bd6e6d59c521133c2a31fa9b88f8e18598",
        "description": "i965: Fix out-of-bounds access to brw_stage_state::surf_offset",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7f6a491eec02d6c141e2b4849a3ba924926a482a",
        "description": "zink: lower b2b to b2i",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "c217ee8d35fcac8ab11e7b5bfd0e053e1fed7df0"
    },
    {
        "sha": "f457e1b6d5814e51cb9e0ae47e8fd5936139f42f",
        "description": "radv/winsys: do not count visible VRAM buffers twice in the budget",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f3e37f5d262606f1a0f5a3073835ac0ecc41f629",
        "description": "radv: display an error message if the winsys init failed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "701f2c3dfc9bd5b18b3103670f3946e723587f42",
        "description": "radv: use a linked list for physical devices",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d993c9d2c23d70d48248c9a8f8bc2855e12b18f",
        "description": "radv: don't report error with other vendor DRM devices",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f03abd504102fc71ec0b18704a2ea3a92542b5f8",
        "description": "radv: report INITIALIZATION_FAILED when the amdgpu winsys init failed",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9c62e63aca202bef07b20441618dd360b94b2f7d",
        "description": "radv: fix a memleak if the physical device initialization failed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b867a677e99f429d904021b37c5640d3eeaf0e8d",
        "description": "radv: rename radv_devices() to radv_enumerate_physical_devices()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5043287415179b9432a15b4a49e595c09513a28",
        "description": "radv: cleanup radv_CreateInstance()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dab8803af431ff2044b4d7b17bb505079bf63d1e",
        "description": "llvmpipe: enable ARB_sample_shading",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8a83db420401fd3a29cae7a8b6a49b67fd2ddf58",
        "description": "llvmpipe: add min samples support to the fragment shader.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d237e03a16b9e75a266799af24c2b9112f4d1126",
        "description": "llvmpipe: enable GL_ARB_shader_texture_image_samples",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f036643772fca7e2f2070ab83189b695b0977a13",
        "description": "gallivm/nir: hooks up texture samples queries",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d09d621373747235d90099adf5bed647090ec97",
        "description": "gallivm/sample: add num samples query for txqs (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3cc50cabf1459c6fd5db598de55ad02375aad880",
        "description": "llvmpipe: enable 4x sample MSAA + texture multisample",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "94c4577331490693a887916323dee843b69bd141",
        "description": "drisw: add multisample support to sw dri layer.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7898978377cfee74d69180d73118dc6b8b2d3579",
        "description": "llvmpipe: don't choose pixel centers for multisample",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8297513aa900a22853a1a12ad4e98e9098e9a1f7",
        "description": "llvmpipe: choose correct position for multisample",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b72f504e99307b5e9a153813f36ac08b9e9b1a05",
        "description": "llvmpipe: choose multisample rasterizer functions per triangle (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "26cc01cefda3595acf261fff4a073464fca048f3",
        "description": "llvmpipe: generate multisample triangle rasterizer functions (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8611a6b34b889d6ee9220767d6f19e4057dc2047",
        "description": "llvmpipe: fixup multisample coverage masks for covered tiles",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d13591ba4d9df28ef2e90f90b8eda4ff6c7fc98",
        "description": "llvmpipe: build 64-bit coverage mask in rasterizer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "88851c4798a5ee57441cc5ad71d439a5b6f1a609",
        "description": "llvmpipe: add fixed point sample positions to scene.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "78b7f2283879d1f952cd13534f4c666447b5b3ea",
        "description": "llvmpipe: add new rast api to pass full 64-bit mask.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c638a59fa890887ba4ef791c0186ec64a623110a",
        "description": "llvmpipe: disable opaque variant for multisample",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5021ebb15d2d4d29c9202bea01fe8d5acb62902",
        "description": "llvmpipe: fix multisample occlusion queries.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "335938cffd10a7285b98999ad7a6bc8a4ed92ba1",
        "description": "llvmpipe: move color storing earlier in frag shader",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "acba9a93ef23796b394b88d5352ec6ebdf14d123",
        "description": "llvmpipe: pass mask store into interp for centroid interpolation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "367332b0fce4a613676c0e6ea44c58b2c9c3b558",
        "description": "llvmpipe: don't allow branch to end for early Z with multisample",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d9276ae965aadf967ee8f2ca85dab1dd31881919",
        "description": "llvmpipe: handle gl_SampleMask writing.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "69009949e0418d0b1907fd31f486058642c90c92",
        "description": "llvmpipe: add multisample alpha to one support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "66a92e5d923a2e6b948c71f37a6b109a00938e9f",
        "description": "llvmpipe: add multisample alpha to coverage support.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "38e81938b65ebc32654f20a65fa8c3673c0c1cf6",
        "description": "llvmpipe: hook up sample position system value",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "210d714f46e72c954857ba32ca9ffcffbc264c9c",
        "description": "llvmpipe: handle multisample color stores.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "102558912be91fa7d0eb22666dc7784739ca208b",
        "description": "llvmpipe: interpolate Z at sample points for early depth test.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0195240c44f55f35b2c3d2c07b64c9f97775759",
        "description": "llvmpipe: handle multisample early depth test/late depth write",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f8c7e232e6c3cf73e809e663f558752817abaad",
        "description": "llvmpipe: multisample sample mask + early/late depth pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f12dac5e106b20704aa66f12c3783f5f005b4fe1",
        "description": "llvmpipe: move some fs code around",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e949b16c166c6e433307f25dd476d1f35fd6b7e",
        "description": "llvmpipe: add per-sample depth/stencil test",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d297f2ecf1b14f573dc425fae192b1013d175493",
        "description": "llvmpipe: move getting mask value out of depth code. (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "18fd62a26e1baa59b650968d798227c922c0352d",
        "description": "llvmpipe: add per-sample interpolation.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8154bdf25ba2f78dc905759e50adf840471e334a",
        "description": "llvmpipe: add centroid interpolation support.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5697b9c00c363568c16efbfe6289d58f233a3f11",
        "description": "llvmpipe: pass interp location into interpolation code.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "339a3a4dea48e1c174be4b544cec8fac50123313",
        "description": "nir/tgsi: translate the interp location",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "28cc2ed79c1ba7f994a3459de5d11102403e8187",
        "description": "gallivm: add mask api to force mask",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d89499063bd96bcc5d7d9239a1da43bf568c11fa",
        "description": "gallivm: add sample id/pos intrinsic support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "455c8e35842b6e149d5d390ab9692e214db63662",
        "description": "llvmpipe: add cbuf/zsbuf + coverage samples to the fragment shader key.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d2f488684ad398f5abffefb9b1424fcb1650a627",
        "description": "llvmpipe: change mask input to fragment shader to 64-bit.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "67ec1760eecbcb5c52992d9098a7e220f22c7d22",
        "description": "llvmpipe: add multisample bit to fragment shader key.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5463576b94fa51a55e180c71dfbc249c2a3cc6b",
        "description": "llvmpipe: plumb multisample state bit into setup code.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e47d39aee15e80976e62fec2937771b0b9346fef",
        "description": "llvmpipe/rast: fix tile clearing for multisample color and depth tiles",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "01e9779c004efa8acedff83d2560880be894e7fc",
        "description": "llvmpipe: record sample info for color/depth buffers in scene",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a30db60edeb7814415b04537cee8cc306ad11fd7",
        "description": "llvmpipe: pass color and depth sample strides into fragment shader.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "24cf7a2b36fa784cce9eee4ae8957d3d9dac98c3",
        "description": "draw: disable point/line smoothing for multisample (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4c72bb4a960e7362e7cf4cd6e3159af85c967614",
        "description": "llvmpipe: handle multisample render target clears",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "782271c0e1544c36fb53ddda1fc0bc055671f82b",
        "description": "llvmpipe: add clear texture support for multisample textures.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c8740cbf010f38878209c857e582260f7492976a",
        "description": "llvmpipe: add multisample resource copy region support.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "178df068210d8c5ff3dd23e925160179c65a5c28",
        "description": "llvmpipe: add internal multisample texture mapping path.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cab13f91747dc2acbb257b2d9067679b93b1e057",
        "description": "llvmpipe: pass incoming sample_mask into fragment shader context.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c070af85114e37e4e1e28791528f336266c93261",
        "description": "llvmpipe/jit: pass fragment sample mask via jit context.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a6150251a1ea2545826036aad9c198a61ce815a",
        "description": "llvmpipe: add get_sample_position support (v2)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f6383673c96de2102edae0e705f7960753fe848b",
        "description": "llvmpipe: fix race between draw and setting fragment shader.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6befeb66070498427e139d3ff86bfd0bd15b5668",
        "description": "gallium/util: split out zstencil clearing code.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bcbe5b3d268b325c1138ddc29785b6b002c38af9",
        "description": "llvmpipe: add a max samples define set to 4.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1b02eb1a4c99b1268da2c17420ece6f341b42789",
        "description": "llvmpipe: add multisample support to texture allocator.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "339aec7241f77fc027ee32d1537b30505c20028c",
        "description": "util: add a resource wrapper to get resource samples",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19703900260d51b709111206caebbad3a9578f7b",
        "description": "llvmpipe: add samples support to image jit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2e5cddacf7fb6e031540ae9f459d19cce5edefc4",
        "description": "llvmpipe: add num_samples/sample_stride support to jit textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bc3641d6162c0e876351ee36536f44581260dac0",
        "description": "draw: add support for num_samples + sample_stride to the image paths",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "026bf2659975817cb8fceb759eb80b2459df8c06",
        "description": "draw: introduce sampler num samples + stride members",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "609a3bea16b14cd5bbc59c702b91367ed768d629",
        "description": "gallivm/nir: add multisample image operations",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "be8a10e2651d362b61a5566092a13311ba1ffe26",
        "description": "gallivm/nir: add multisample support to image size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ae95a08b9c366d5a8558e20c2c3a11558a9c0610",
        "description": "gallivm/nir/tgsi: add multisample texture sampling.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "eb5919d9d8b09a40e5d5ce38f169b71b67661249",
        "description": "gallivm/sample: add multisample image operation support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c2545c9b15c98049e43904563c52079940bc4ee3",
        "description": "gallivm/sample: add multisample support for texel fetch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b6a20804ad5afb401f1d86dc28460e922d009588",
        "description": "virgl: Properly check for encode_stride when encoding transfers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "99fce3a6d71ee9970183b3545a4fbb8234b7fa35",
        "description": "llvmpipe: simple texture barrier implementation.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "870b6a60509e2dd547dc75fee9290224ad306779",
        "description": "llvmpipo/nir: free compute shader NIR",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "18f896e55d96c63b11de7ed0cbe484988a1184c5"
    },
    {
        "sha": "d1ad1be35a5ba609fd533f2a808a473a067028d8",
        "description": "draw/tess: free tessellation control shader i/o memory.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "0d02a7b8ca794a594c2e9cc5e6d63dc591593105"
    },
    {
        "sha": "a46aa3dc2e4c5462630d40e152904b7d163c9233",
        "description": "nir: add missing group_memory_barrier handling",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a6bbf4c80ee9fc4294ec70073e1602ea527963c",
        "description": "freedreno/ir3: Disable sin/cos range reduction for mediump.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aac964af4aa1a215196d6ae351a11c9b6b937a22",
        "description": "st/nine: Set correctly blend max_rt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d83e7f4b9887346e9b7b4d44c068d340aa04f28",
        "description": "radeonsi: enable TC-compatible HTILE on demand for best Z/S performance",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "39571d384e02848aff8c8fe635ff4b93d740aab3",
        "description": "radeonsi: allow tc_compatible_htile to be mutable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "04085bedc26535e47d81e333ee8969b7755421b2",
        "description": "radeonsi/gfx9: always use IMG_DATA_FORMAT_S8_32 for 8-bit stencil",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "345b8aed5cd85eab71b7c80bbf00d8ccc5659bb3",
        "description": "ac/surface: unset RADEON_SURF_TC_COMPATIBLE_HTILE if HTILE hasn't been computed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "266fec1307b26a544007423582afd8618791893c",
        "description": "radeonsi: don't wait for idle at the end of gfx IBs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ae4379d81e42dec4f93983dfa9f31cf30384789f",
        "description": "ac/nir: export some undef as zero",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0ee1a724bf78baa3fe514036d77d3e96abc998f7",
        "description": "gallium: add a new cap PIPE_CAP_GLSL_ZERO_INIT",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ea289d1502dc5739ec9bf69328c037b72dc02789",
        "description": "mesa: extend GLSLZeroInit semantics",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "679421628bf89067b4cbfa85530f196ca2835717",
        "description": "glsl: add a is_implicit_initializer flag",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa6b22d36a915f27dee576063aead9e2c577f966",
        "description": "glsl: rework zero initialization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "84f58a08634d0ea07f557ffa5b91c9c8777a2b04",
        "description": "glsl: init gl_FragColor if zero_init=true",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "547e81655a0b9f6d7742e25f2e353e22c3a3b393",
        "description": "radeonsi: don't print gs_copy_shader stats for shaderdb",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "dbc86fa3de6aba480f679a36b40227c0fe27c37b"
    },
    {
        "sha": "b0a7499d28dd5a7c89a70cea79cb14d943632609",
        "description": "radv: enable shaderInt16 unconditionally with LLVM and only GFX8+ with ACO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "64662dd5baeec19a618156b52df7a7e7adba94cf",
        "description": "radeonsi: add workaround for issue 2647",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7983d97174de10670fce5a422ce6c1cb5e783b88",
        "description": "zink: use nir_lower_uniforms_to_ubo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4777ee1a62f0620efa2a105215eb589fc44dfa0f",
        "description": "nir: Always create UBO variable when lowering uniforms to ubo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "354474b9e5a9e9fdbba1b113f36d7d119d4187c0",
        "description": "mesa/st: consider NumUniformBlocks instead of num_ubos when binding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8471f7a5fa1d5c00de9f314eaccd23dd0e62e71b",
        "description": "compiler/glsl: explicitly store NumUniformBlocks",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8059f206da88a7a2147c66b3057d60d775cbbfce",
        "description": "glsl: rename has_implicit_uint_to_int_conversion to *_int_to_uint_*",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "403eb507f586e62acd648778dc1e7d20b5e1fa2f",
        "description": "driconf: add force_integer_tex_nearest option",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "12fb7d700861fb0af639fa21c1e3b65981ee81e4",
        "description": "mesa: add gl_coontext::ForceIntegerTexNearest",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "90d9f9a37ed6a84292a96a247f70ffeb88a2ccde",
        "description": "aco: remove unecessary p_split_vector with v2b reg class",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b0cb38f36085ccee6e71b6e50cb4f094d7f03c58",
        "description": "vulkan: Update Vulkan XML and headers to 1.2.140",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "785803a2e5472bb497a598643b2386c60c60347e",
        "description": "turnip: Remove RANGE_SIZE usage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "24f9aea770711c8b968177b6e4ff15d8fb8fb48e",
        "description": "radv: Remove RANGE_SIZE usage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4d11ea3c43447da5add84bdd2e0c91786d9af9b",
        "description": "anv: Remove RANGE_SIZE usage",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "57796946985de60204189426ca8eb7bbfa97c396",
        "description": "android: iris: add iris_seqno.{c,h} to Makefile.sources",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "e31b703c4232fd59d512ab2a865161c9ce859706"
    },
    {
        "sha": "c4cdef64ad6d11e82894d24691348c38d7fad6ce",
        "description": "ac/surface: fix MSAA crash with FORCE_SWIZZLE_MODE on gfx9",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "3dc2ccc14c0e035368fea6ae3cce8c481f3c4ad2"
    },
    {
        "sha": "1dcf291e3bf7050a396cee74b6baca99a575d915",
        "description": "pan/bit: Add IMATH packing tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8fcc23bf28d2c533151465bdf1d1d0cecb59b8fc",
        "description": "pan/bit: Factor out identity swizzle helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "36e4ffa382f9f82ff6d7ed1dd4fc66010ed48fea",
        "description": "pan/bit: Use swizzle helper for round",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "118d53bf93d8ad39238fca6b43111675b1602725",
        "description": "pan/bit: Remove test names",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "52cdaaacbbb546abdbf654f06e413eb250bb019d",
        "description": "pan/bit: Interpret v4i8 ops",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "66163614dbfc546168bd44036669277f7a4a0209",
        "description": "pan/bit: Interpret IMATH",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1799435df0f2782671596dd34c1f1965931943ad",
        "description": "pan/bi: Don't schedule <32-bit IMATH to FMA",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2925e88996c6b819a6c0330fd61760a8be350837",
        "description": "pan/bi: Add SUB.v2i16/SUB.v4i8 opcodes to disasm",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "10c18c6f69ed6ea8d82b300dc93c55e3180c1c74",
        "description": "pan/bi: Pack ADD IADD/ISUB for 8/16/32",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a463b2c2ed452f1ee1497fbc19921c910de93237",
        "description": "pan/bi: Pack FMA IADD/ISUB 32",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf3c3563e0ead2b7050efd12de377b6b6d25dd2d",
        "description": "pan/bi: Use IMATH for nir_op_iadd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1a94daef589be2e95b12d30733d45b9ffeaad436",
        "description": "pan/bi: Rename BI_ISUB to BI_IMATH",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c81f51c3c7fb7aa86cee3d9ba4324b1610c726d",
        "description": "freedreno/ir3: Define the bindful uniform/nonuniform desc modes for cat6 a6xx.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "97b21110b8b845bb02596036bdbf9e9562cfa7a5",
        "description": "freedreno/ir3: Sync some new changes from envytools.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1e5b0c92c549b392065f4856a2e5370b2157d961",
        "description": "freedreno/ir3: Add some more tests of cat6 disasm.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b97cc41aa203fd9fb9f5cf5f5aa7fd40f567917d",
        "description": "Revert \"ac: reassociate FP expressions for inexact instructions for radeonsi\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "cf2f3c27533d8721abed4cdd4dfb00d4d53e8a0f"
    },
    {
        "sha": "5f01869f74a497ee56fd01eedbe0b2802beea63c",
        "description": "pan/bit: Add ICMP tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9bc684cad838094ae7d26a102079862246dc9eab",
        "description": "pan/bit: Add more 16-bit fmod tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "041ba62e8766aec2565234d56c0df02517c26ad0",
        "description": "pan/bit: Add swizzles to round tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "35c806e701d1557db7d97671030f50704bc7b833",
        "description": "pan/bi: Don't pack ICMP on FMA",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5cbdf29b7e931fcda52aa1a0e8a9551cd7309651",
        "description": "pan/bi: Pack ADD ICMP 16",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5bd417228020a670e73fc8bf43e9595d1118d085",
        "description": "pan/bi: Pack ADD ICMP 32",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "336d5128f9ba5036834fe1fb6420931b8aaad0ff",
        "description": "pan/bi: Structify ADD ICMP 16",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fdf154d24af8b5a3b3e1dc073e9db329c2e21c5a",
        "description": "pan/bi: Pack ADD.DISCARD",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a9b9859e72fefb0d994be81e7edb42eeaece969",
        "description": "pan/bi: Handle discard/branch in get_component_count",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8ab5c97895daa86d0ac777b60f31737e491a22f3",
        "description": "pan/bi: Fuse conditions into discard_if",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "201a11a13ad7c9fddd621602b729440532c9a11f",
        "description": "pan/bi: Add float-only mode to condition fusing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7d867f787f9ada8b67e4d8ee6e9e388b6d6bc9bd",
        "description": "pan/bi: Emit discard (not if)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9ab73296c1c80796b6a3e8cfc1affb486e4dd81",
        "description": "pan/bi: Handle discard_if in NIR->BIR naively",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6627b20de3511da153f2733a649b22c13d9e570a",
        "description": "pan/bi: Unwrap BRANCH into CONDITIONAL class",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6e5d2072939617bd6e0abe8b36cfadca83bed6f6",
        "description": "pan/bi: Remove BI_GENERIC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "20cb039457d79dd88aebff7e92cb223ae20b83d0",
        "description": "pan/bi: Structify DISCARD",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5c03340fd1a12c42fce43ba4060f39706663d541",
        "description": "pan/bi: Fix DISCARD ops in disasm",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "31a41bb6a62edf77e9c311064c43fffa1c8fcd8f",
        "description": "pan/bi: Disable CSEL4 emit for now",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e14e3065a9f037df5c877057cd53587b58208063",
        "description": "pan/bi: Fix incorrectly flipped swizzle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8415b3d552328de44d4602b1d85561af48ef302a",
        "description": "pan/bi: Fix missing swizzle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9634894a67d40c101f56f0f3e963359f271ed2a",
        "description": "pan/bi: Fix double-abs flipping",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ef9b4b3a0bea318bcc853f9654721b56d7e1c27d",
        "description": "pan/bi: Set clause type for gl_FragCoord.z",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "47c84ee73546f1b86df808c02aa509840e6158df",
        "description": "pan/bi: Lower gl_FragCoord",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5ef35c4334d7a9e6fdc10cbf10d6f90b963e714",
        "description": "pan/bi: Passthrough direct ld_var addresses",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "513c774d58044447e0c7c6169a30b9537e0f8e64",
        "description": "pan/bi: Print bad instruction on src packing fail",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0561fe3a06d61a182679eb43888797af5d8cc217",
        "description": "pan/bi: Futureproof COMBINE lowering against non-u32",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c48839086dbb04bbf23efc1d9bfee73f21f94561",
        "description": "pan/bi: Abort on unhandled intrinsics",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "94e6263c0b0ebb81c511452c7844394802bf37b9",
        "description": "pan/bi: Abort on unknown op packing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5a415259fc7404fa473722ebdb0773c8fec3cd3d",
        "description": "pan/bi: Add clause type for gl_FragCoord.zw load",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "30f07e0d843935fcb34fc28e62bc4c832219c06b",
        "description": "panfrost: Setup gl_FragCoord as sysval on Bifrost",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "89a41dae7702731bee298288f3acbcbd56096b30",
        "description": "etnaviv: do not use int filter when anisotropic filtering is used",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7aaa0e59086fa2bf9c5fa7db2774cb2aa32f95b9"
    },
    {
        "sha": "b38e51bd969e212cce90998bc283049e74f9b33c",
        "description": "etnaviv: fix SAMP_ANISOTROPY register value",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7aaa0e59086fa2bf9c5fa7db2774cb2aa32f95b9"
    },
    {
        "sha": "cb1e0db23e3fa17562bb276b125aeab0b85582cb",
        "description": "vulkan/wsi: Make wsi_swapchain inherit from vk_object_base",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "32f20783a512129fc2d7dd8a11ffa8670cef0068",
        "description": "vulkan: Add run-time object type asserts in handle casts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7628585dd709f3ffb18c7ca134fff1f375ad7b6a",
        "description": "anv: Refactor setting descriptors with immutable sampler",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "73fb7cdbe1c8ce476f21cb6d39944a96151ec4b5",
        "description": "vulkan,anv: Move the DEFINE_HANDLE_CASTS macros to vk_object.h",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "682c81bdfb7ea28efccea1e8cbfeb7cfc67d02b8",
        "description": "vulkan,anv: Add a base object struct type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "369703774cfa304f4881e0e379eb02ed98933dde",
        "description": "anv: Allocate CPU-side memory for events",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4ac4e8e11f36cdfa18562804931be59a4fe08544",
        "description": "anv: Stop clflushing events",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a9158f795143fb8b333e6fe33b25c2a4e4d2da15",
        "description": "vulkan,anv: Add a common base object type for VkDevice",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9d10bde5a878aac440ea34dfb304812cd00b231c",
        "description": "vulkan: Allow destroying NULL debug report callbacks",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "086cfa5652ec202f87c14d11e0f6c959d75987d8"
    },
    {
        "sha": "46b3cb011fd1c9198aeec33d453206846b579817",
        "description": "st/mesa: destroy only own program variants when program is released",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "de3d7dbed521c40344c9f8b2b505b6e2b13a7636"
    },
    {
        "sha": "7e7bb38bd8b12fec09afc0e515480bb6c5a8475a",
        "description": "radeonsi: fix export count",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "17acff01a00109c87d59b9d876fc735dd5fbe3d1"
    },
    {
        "sha": "af55bdd05d94eda59ee1c9331a50045000da5db5",
        "description": "vtn/opencl: native sqrt support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "337ff9c0889c86be398b10a2a962a40c1c2b2840",
        "description": "vtn/opencl: native rsqrt support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2ab6a58c197ca88d6c7e8a3f9fa841f0a594a96a",
        "description": "vtn/opencl: native recip support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a698c2eedba8195a6486cfb3a2a61dd9fcfa31bb",
        "description": "vtn/opencl: native powr support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "594c49be08002f2953a7a32bc774ce8f0fbfd6f9",
        "description": "vtn/opencl: native divide support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bce8a86b652981db3684da943c6cbb3fd7d7f1ae",
        "description": "vtn/opencl: native variants of sin/cos",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f76b379a9a68dd71e39a6ca270107384a64f67cd",
        "description": "vtn/opencl: add native_tan-support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aab1361d59555ffe084e9da15bb41452d8495f90",
        "description": "compiler/nir: move tan-calculation to helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "58bb8172574cf9a911af03326903034daa30a481",
        "description": "mesa: check draw buffer completeness on glClearBufferfv/glClearBufferuiv",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f1a40a26a90d65c8cb2881b9a2679ed089bf2ead",
        "description": "Revert \"ac/surface: remove RADEON_SURF_TC_COMPATIBLE_HTILE and assume it's always set\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "f6d87ec8a908250af5e805c8042524ac360094a2"
    },
    {
        "sha": "ee8f60da19d8e495483e5aa7a84717a8e941dd6f",
        "description": "i965: disable shadow batches when batch debugging.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2164320a06f98b5ab49cbcf9d9929c5dd9c9b14",
        "description": "i965: add support for gen 5 pipelined pointers to dump",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "df9629e593ee7faee617e90b644b52f049801e34",
        "description": "radv: Extend tiling flags to 64-bit.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "bfd9e7ff243a48873721fd57d9a159cc82f580d6"
    },
    {
        "sha": "b5f7b0ce194cb62eba35a95761b7a500478e4950",
        "description": "aco: add message to static_assert",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "c99107ece02b64916031883889b9e010c99e2435"
    },
    {
        "sha": "8e02de4d7fc3bc7ac1f7f9faf0e18f33fe0098e3",
        "description": "aco: remove use of f-strings",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "2ab45f41e08a3892138a1e9b20552621b4e18682"
    },
    {
        "sha": "49cc9e95266d547b89ea309798d54814d059285e",
        "description": "anv: Disable extensions based on Android versions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a77cf797f1209f70925b2bd3ceffce0ad9c3e963",
        "description": "anv: Limit vulkan version to 1.1 for Android",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "33c61eb2f10526c0b90c5ad376e5b0433aec296d",
        "description": "iris: Implement ARB_compute_variable_group_size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e645bc6939794a95ecd7b0f5dbd9de07332ef365",
        "description": "intel: Let drivers call brw_nir_lower_cs_intrinsics()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2663759af0edb1ebcee3aa1ff63f846911d16076",
        "description": "intel/fs: Add and use a new load_simd_width_intel intrinsic",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4b000b491a49afb12612a3cfeebeca9a528cd5e3",
        "description": "intel/fs: Add an option to lower variable group size in backend",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0edb58a84eb4a2b74b1ce55fea9dc06386c56bf6",
        "description": "intel/fs: Clean up variable group size handling in backend",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1800e4b58caaa89acfe45c95d0d22e533b50ee03",
        "description": "iris: Implement PIPE_FLUSH_DEFERRED support.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "df09efe8df40f39dc791f39fde07b37a48157eea",
        "description": "iris: Detect DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT kernel support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "615270502c7e7083e41080d3ea3cc57a29458f66",
        "description": "intel: Move anv_gem_supports_syncobj_wait to common code.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "07fb925ad82f2b61cbdd239956c16e752c64e05d",
        "description": "iris: Flush any current work in iris_fence_await before adding deps",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3dbde891118af0c64a16c729be5b551447aaae18",
        "description": "iris: Store a seqno for each batch in the fence",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd1907efb385a6f668971e9bb93af2f64d7b8cda",
        "description": "iris: Convert fences to using lightweight seqno",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e31b703c4232fd59d512ab2a865161c9ce859706",
        "description": "iris: Place a seqno at the end of every batch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fb95ac68552d84d5d4f587edfb38cdc1889ede87",
        "description": "iris: Destroy transfer slab after batches",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c94379c770e86f66f17d5747e1925bd65bed65c0",
        "description": "iris: Give up on not passing ice to iris_init_batch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4a1ed75b85b91f6eb1a796bf7dceb195bcfc1bcf",
        "description": "iris: Rename iris_syncpt to iris_syncobj for clarity.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "812cf5f522abd006fd9f3cb7bbcad797bd8730fb",
        "description": "anv: Include linux/sync_file.h instead of cut and pasting contents",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "abf8aed68047c1fa4d28e92a1aa2ccf74e0be5dc",
        "description": "iris: Include linux/sync_file.h instead of cut and pasting contents",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a807c9e91d1e80542eb35a68bc1951b85268d0c1",
        "description": "panfrost: Update dEQP expectation list",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "211dee42d000ef27e573263f4c5d7a65b03dc5bf",
        "description": "pan/mdg: Enable nir_opt_algebraic_distribute_src_mods",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1c2d469506c29cb114568b5b74f9e9c3fa00706b",
        "description": "pan/mdg: Drop `opt` in name of midgard_opt_cull_dead_branch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ba9f3d1702613e3d34eb0d36cb1f1935ef557267",
        "description": "pan/mdg: Drop forever todo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "23a20cfcf30d3c303b2c08ebc1e7557cb7a2e48b",
        "description": "pan/mdg: Move constant switch opts to algebraic pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1628c144a98b5bac11571fbdbb12538ce60dcd2a",
        "description": "pan/mdg: Rename .one to .sat_signed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f47c60b41123e19c443968af2a311d84d8c96ac1",
        "description": "pan/mdg: Ingest actual isub ops",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f8601110e4ecec7a1578e853f694796fe50b4e94",
        "description": "glthread: Add GLAPIENTRY to _mesa_marshal_MultiDrawArrays.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "2840bc3065b9e991b2c5880a2ee02e2458a758c4"
    },
    {
        "sha": "2a05ba541401ace1417aa57fab907abb4288baa2",
        "description": "intel/dev: Bail when INTEL_DEVID_OVERRIDE is not valid",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "65b05ebdda18c1cebd88c72cc8f50530addb80c6",
        "description": "anv,iris: Fix input vertex max for tcs on gen12",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "44754279ace72bc36b016f9ca519141ea4cad038"
    },
    {
        "sha": "8f01fa1fb3bbb94648ab3955860933aefbcb191a",
        "description": "freedreno/ir3: Set the FS .msaa flag to true during precompiles.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "812c55b07960918db8bb047031c214f77ab1a37f",
        "description": "freedreno: Immediately compile a default variant of shaders.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "29f58cfbd07b419bca2cbe1e455232c7319444f4",
        "description": "freedreno/ir3: Set up outputs for multi-slot varyings.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "88dcfaf0ee24b6c858f13b684212951d3077856c",
        "description": "freedreno/ir3: Stop initializing regid of so->outputs during setup.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c1c21890969ce0f6e0df28522f04cdcd7dd482f",
        "description": "freedreno/ir3: Improve shader key normalization.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6f1e3235f246048061d3126757d875d1ec05cccc",
        "description": "freedreno: Emit debug messages when doing draw-time recompiles of shaders.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a361567c4607cb1e7d1d440edbf95a1aa87b4d9a",
        "description": "freedreno/ir3: Remove unused half precision shader key flag.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "05be0659fe33727d2bd26b68994fdff4cad006dd",
        "description": "freedreno: Fix assertion failures on GS/tess shaders with shader-db enabled.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f91e49ee29b6c513f7b6837c8c169f0438dd1b50",
        "description": "freedreno/ir3: Skip tess epilogue if the program is missing stores.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd8f3b62a4b35a9ef2047cd45e9de3bd62436153",
        "description": "freedreno: Stop doing binning shaders other than the VS in shader-db.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b420d04e1f744d15622f89180d1e3e511d92a8ba",
        "description": "freedreno/ir3: Fix register allocation assertion failures.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "73f34e0d4677aaa705e49ba5bcf498d5e6d673d8",
        "description": "freedreno/ir3: Drop hack to clean up split vars",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dd8d257a30d94759fdb2891b58ec7552fcca5272",
        "description": "freedreno/ir3: Lower GS builtins before lowering IO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "79355fd9010888fefd1ce74b88aa1d000a302754",
        "description": "freedreno/ir3: Add ir3_nir_lower_to_explicit_input() pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b7bfccf08509ada02c3f5c2992f9983b7f5fc7a7",
        "description": "freedreno/ir3: Rename ir3_nir_lower_to_explicit_io",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a16ee14f37fca71c0c14d468db690aa410ac4ce4",
        "description": "freedreno/ir3: Pass stream output info to ir3_shader_from_nir",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "07f89126cde6d61825bc3e69aec0b1eed1a83751",
        "description": "freedreno/ir3: Fix the a3xx TF outputs stores.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b0b8011e3eab048a8a8c1a2f79ae003cddb62284",
        "description": "freedreno/ir3: Set up the block predecessors for a3xx TF",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7bd15135a6dc105939a3e1c349217e6346dcf729",
        "description": "intel/fs: Update location of Render Target Array Index for gen12",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7eb2bc8f52f0e4aaaac1add6236841484dabeecf",
        "description": "pan/decode: Properly print tripped zeroes",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "6148d1be4bb52039ccda57f25a9d27ecb7aa7541"
    },
    {
        "sha": "3a81abf3b2e6c08dea296d164d6e4429e5230d83",
        "description": "panfrost: Add Bifrost texture trampoline BO to batch",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d3eb23adb50c621f49000191e6c024df01f090b7"
    },
    {
        "sha": "c46731527a9c73454bd07e0b93986ff1a1193c59",
        "description": "pan/bi: Lower for now sincos",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3baf2514877f80c3d79c783caf4ab6a1d59479c0",
        "description": "panfrost: mali_attr_meta.unknown1 is zero on Bifrost",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4400b05be1aa68168e924066b9d05401745a879",
        "description": "panfrost: GPUs newer than G-71 don't have swizzles...",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c409428006447c5e942bee1bc917ecadababe242",
        "description": "pan/decode: Trace to stderr with PANDECODE_DUMP_FILE=stderr",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d6588b87bf72fc47a9028b1d03d7ed4c93452193",
        "description": "panfrost: Update Bifrost fields in mali_shader_meta",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "07b31f3437ef60779f0fea83425521da3b7441f9",
        "description": "pan/bi: Print shaders only if BIFROST_MESA_DEBUG=shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9c7d30fb4a0ca1625d16dffb3ff2359331783fe6",
        "description": "pan/bi: Enable lower_mediump_outputs NIR pass",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7104e286514500bedf495611a20413c0ea4eae2c",
        "description": "panfrost: Add a bit more info about some tiler fields",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4d581a4bc6ad51b3c5478d46dd2f52f7c86a2974",
        "description": "panfrost: Create additional BO for the checksum of imported BOs (Bifrost)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "28902ba87e7166688157ea3ba0593eb1a60a5d9b",
        "description": "panfrost: Split bit out of format.unk3",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7f130e76ea2b7925d6177b3baa57fe1f9dab55f4",
        "description": "ci: add lists of expected failures & skipped tests for RAVEN with ACO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "263ed2e7777875b21d3eff6939392a4a28d0ea5f",
        "description": "scripts: remove unittest.mock dependency when not used",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cc2c3b41b86d1dd8d23685c34be030f2607ed11d",
        "description": "ci: fix reporting the number of unexpected/flakes",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "b8c66aeb9341d695c79a2d69935016919c42f843"
    },
    {
        "sha": "23daa49d4ca6bdbba989b7dd2e46a979494bf588",
        "description": "gitlab-ci: Use YAML anchor for llvmpipe paths in virgl rules",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "60912f1ebd36c2bb235856ae7de9b1c3d66ef719",
        "description": "freedreno: we don't need aligned vbo's",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9a7c179473f7afd126110ce18243b7061b661887",
        "description": "freedreno/a6xx: add some more formats",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6f7d94580e3b603cb036bef9a1a235ee6b910bc0",
        "description": "pan/decode: Don't crash on missing payload",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bde19c0e7ba575f3c8ca8ea76c916034264a8713",
        "description": "panfrost: Fix tiled texture \"stride\"s on Bifrost",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bbecbedb4cae6ea646a2a387378daa086b0a9bde",
        "description": "panfrost: Fix norm coords on bifrost sampler",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "401409eff31ed4a47b165806a28c870f63498916",
        "description": "panfrost: Fix sampler wrap/filter field orders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6148d1be4bb52039ccda57f25a9d27ecb7aa7541",
        "description": "panfrost: Fix size of bifrost sampler descriptor",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "884f8699925b51f7032b4cd0e8d6ef1a8d48bc8c",
        "description": "panfrost: Fix texture field size",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d04be375ccdd5612f07689f9c883c4e8c3f159c3",
        "description": "pan/bit: Add round tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6bbedf8359a0dfb0c6165277eea2635e73e845f8",
        "description": "pan/bit: Interpret ROUND",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f1f4f1b816ae4fe6ca0ce96af24f949363ed7715",
        "description": "pan/bit: Add framework forinterpreting double vs float",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "130a3fba1c744dce5c052840b4f78437d4c73bf8",
        "description": "pan/bi: Pack round opcodes (FMA, either 16 or 32)",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5f35cdaa8dd78ee97bccdab82ef21b6ad6fe1108",
        "description": "pan/bi: Pipe multiple textures through",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fc634dc3b2792bd84acb0f5aafd83863ac3c4528",
        "description": "pan/bi: Add texture indices to IR",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f8424d3b9993d555115a82c7cea4931b89a94fea",
        "description": "freedreno/a6xx: fix LRZ hang",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "dfa702e94b96318696314dc3c73b2f934b755583"
    },
    {
        "sha": "0e51082cfa733b3b8255bbd77fc4af46f4108c1d",
        "description": "freedreno/ir3: Leave bools as 1-bit, storing them in full regs.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "769adc9546afcd72cbe7bb1caf14add5f6ac9f61",
        "description": "freedreno/ir3: Drop redundant IR3_REG_HALF setup in ALU ops.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bdd2f284d90b7f07ac5e878490be8d216d0d23c6",
        "description": "radeonsi: revert an accidental change in si_clear_buffer",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7b0b085c94347cb9c94d88e11a64a6c341d95477"
    },
    {
        "sha": "5afec9bc9fbab57afffb1cede8b8eaad8caac491",
        "description": "radeonsi: fix si_compute_clear_render_target with render condition enabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19db1a540c248e330284a6c9733633d0695677a3",
        "description": "radeonsi: add a workaround to fix KHR-GL45.texture_view.view_classes on gfx9",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d6acdbd9352bd4175191069139fd5f54cf2cc95f",
        "description": "radeonsi: implement and use compute-based DCC decompression on gfx9-10",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d3da73954a639f8e43e6d22ac3f16a786d5e37cb",
        "description": "radeonsi: add SI_IMAGE_ACCESS_DCC_OFF to ignore DCC for shader images",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "93d5c860812a2565348d07cc1a00bb973f37f034",
        "description": "radeonsi: bind shader images after DCC is disabled for image stores",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "44d27fd6fba92a3b11c10d06f1b3babeffbcd4bb",
        "description": "radeonsi: clean up and deduplicate code around internal compute dispatches",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e58dcc47c3bd4d3f22e9d0a943e339b4866bc616",
        "description": "radeonsi: unify and align down the max SSBO/TBO/UBO buffer binding size",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "03e2adc990d239119619f22599204c1b37b83134"
    },
    {
        "sha": "b7ffa1560c3eed9bf89d546a1d86d11476ad5f05",
        "description": "tgsi_to_nir: handle TGSI_OPCODE_BARRIER",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d35c3dc80e8ba99bb889b65fba3c28bca6d41128",
        "description": "tgsi_to_nir: handle TGSI_SEMANTIC_BLOCK_SIZE",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2840bc3065b9e991b2c5880a2ee02e2458a758c4",
        "description": "glthread: upload non-VBO vertices and indices for non-Indirect non-IBM draws",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1485a3ff7b52eed21cdc199aaa76ee1692dfa3c8",
        "description": "glthread: handle gl{Push,Pop}ClientAttrib{DefaultEXT} for glthread states",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "57bf51a97357b0cce293659123a3353d1b726487",
        "description": "glthread: handle POS vs GENERIC0 aliasing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "09f94632e033805bee57a963ca15df131e7c7f7c",
        "description": "glthread: initialize VAOs properly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "47cf310a671b75b1552a7b5d8accc8baa8ecdefb",
        "description": "glthread: track primitive restart state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9037005d6034d6bcbeb508e0f783622e2351b957",
        "description": "glthread: track instance divisor changes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9c9f57b022ab47251c260825e81241fdad9b3ea",
        "description": "glthread: track pointers and strides for Pointer & EXT_dsa attrib functions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "befbd54864d2959b83e3d2d46d0825f19cb4fc46",
        "description": "glthread: don't use atomics for refcounting to decrease overhead on AMD Zen",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7f22e0fd29369f478da1d36520049f001cd698d1",
        "description": "glthread: do glBufferSubData as unsynchronized upload + GPU copy",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "70847eb0a95f1e1b0fbd435aa0ef4091ae5bef88",
        "description": "mesa: add _mesa_InternalBind{ElementBuffer,VertexBuffers} for glthread",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a82889e53733ffe11bf3c7a8be5fe53e382d02aa",
        "description": "mesa: add glInternalBufferSubDataCopyMESA for glthread",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3707cef4fb3c4a2f5e015ea2525fcd41d8875f0b",
        "description": "mesa: inline vbo_context inside gl_context to remove vbo_context dereferences",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "42842306d3c7ba71f89022a1ebb09a4454a1b6e0",
        "description": "mesa,st/mesa: add a fast path for non-static VAOs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2e3a9d78289ace1928e2dc093fc743cad81c911c",
        "description": "mesa: don't update shaders on fixed-func state changes if user shaders are bound",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "256d5ca80af0b742d4b2bf156180a22b1976fb80",
        "description": "mesa: don't set unnecessary program flags in _mesa_update_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2b4afdc17294d628532593b084bd6105dd995a5",
        "description": "mesa: set _NEW_FRAG_CLAMP only when needed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "21ff963c3a1738b44b4e0fb0b9df193103e4d255",
        "description": "mesa: don't call _mesa_update_state for _mesa_get_clamp_fragment_color",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f1538002b81493b5e4754746745db565cf6fe810",
        "description": "st/mesa: Move _NEW_FRAG_CLAMP to NewFragClamp driver flag.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "eb04db734429971ddc240ba9dc6726a991cc0a14",
        "description": "mesa: optimize glPush/PopClientAttrib by removing malloc overhead",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "beb02a781ca9a4918b7ac777aab65cc31338ee87",
        "description": "freedreno/a6xx: don't set SP_FS_CTRL_REG0.VARYING for fragcoord",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "612e35c8d94241b07b32a6010ccd1a3edd473439",
        "description": "iris: don't assert on unfinished aux import in copy paths",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d56b8c45547086ce23873a58de58484f59ad3a9a",
        "description": "freedreno: sync registers with envytools",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "200765457ec6db1d4fc4aea9e1b98e03efd79b61",
        "description": "freedreno/a6xx: more OUT_REG()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f62cad6b7f8d6061dccc1fe548aee1477805d3e8",
        "description": "freedreno: scissor vs disabled scissor micro-opt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "373e9ab27c767b13846c81d1c20102bc583415e4",
        "description": "freedreno/a6xx: convert const emit to OUT_PKT()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "710537b19c04492939b11b2a19b010552c937477",
        "description": "freedreno/ir3: inline const emit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aff93f54190f4c934e25b9210d59db22bdd38ec7",
        "description": "freedreno/a6xx: split out const emit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "58fd1d7ecd38daf5bcbaa225175b43b8c722b0d0",
        "description": "freedreno/a6xx: convert draw packet to OUT_PKT()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ee293160d7d7341e0ec5f0aaf1ceb6950f785ed8",
        "description": "freedreno/a6xx: add OUT_PKT()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a142bb899291ae68d00f552959cf6ee1cbb9e6c2",
        "description": "freedreno/a6xx: skip unnecessary MRT blend state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5d554987c2b856fe463afab3bd9103c2d1e41b97",
        "description": "freedreno/a6xx: combine sample mask into blend state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "880edb9dc5761aa19d89b2a40481e8c2771ff862",
        "description": "freedreno/a6xx: move blend-color to stateobj",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "dfa702e94b96318696314dc3c73b2f934b755583",
        "description": "freedreno/a6xx: limit LRZ state emit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c268afd296375f678e53fed302eea07a74af741",
        "description": "freedreno/a6xx: limit PROG_FB_RAST state emit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "46e177389fee7f5eed90e5debd122bfebb772ad4",
        "description": "freedreno/a6xx: move scissor state to stateobj",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8cfa765049d571a95b14ea006f900de8a7bf5cae",
        "description": "freedreno/a6xx: move const state to single stateobj",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "89dbdb806faaf1a4b3da0ce0ab597f9ced40d549",
        "description": "freedreno/a6xx: avoid unnecessary clearing VS DP state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f583dc68e5586fd468475ae833ee3ce8fab5a95b",
        "description": "freedreno/a6xx: small query cleanup",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e3fc8dd0018bbba42325a2bdf378fd96bfd67a6c",
        "description": "freedreno/drm: inline the things",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "75435d5e2a27466eef6452fda44098405a9aa202",
        "description": "freedreno/drm: drop atomic refcnts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4715502975410855cf9997075fa9c598df0c5211",
        "description": "freedreno/ir3: Initialize the unused dwords of the immediates consts.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3fac55ce0d066d767d6c6c8308f79d0c3e566ec0",
        "description": "Revert \"anv/gen12: Temporarily disable VK_KHR_buffer_device_address (and EXT)\"",
        "nominated": true,
        "nomination_type": 2,
        "resolution": 2,
        "master_sha": null,
        "because_sha": "c61ad77cd260ce7666b257ce411e512e0ca12ec8"
    },
    {
        "sha": "4985e380dd776ac65c4ae5627138211f9d9f03ce",
        "description": "intel/eu: Use non-coherent mode (BTI=253) for stateless A64 messages",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0edc29020b2830497f31b06898ca26715ecfd001",
        "description": "pan/decode: Use correct printf modifier for long int",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "03963febeffadefc4f47adaf0bbd3618d5692b25",
        "description": "pan/decode: Check for correct unknown field",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bc11deb86d8bc037d842a04f8782461a5472ecf1",
        "description": "panfrost: Don't leak temporary descriptors array",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3c98c452f012d20bcca3038af88bcbe7278d9c68",
        "description": "panfrost: Emit blend descriptors on Bifrost",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "33b13b9fbd2998977f76bfeeacf63900b0ed9cba",
        "description": "panfrost: Enumify bifrost blend types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5e9ae4043004e5505f3c7e327d38911330c04dcb",
        "description": "gitlab-ci: update tracie README after changes in main script",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "90a39af5f65e5fa01beeec526594f7e04143e7cf"
    },
    {
        "sha": "bd86399db012d93e81d1a7734214ee8d52ad43ce",
        "description": ".mailmap: add an alias for Andres Gomez",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3cde4c3a0804347cfc5a8a2b4958a6e6a4b69a27",
        "description": ".mailmap: add an alias for Iago Toral Quiroga",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a70fee7dc9a212a0ab345b11008212f8d62cad3",
        "description": "ci: Add intel to shaderdb runs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0f4f1d70bfe96fc9e218ef5c2196bb677aaa251b",
        "description": "intel: add stub_gpu tool",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c3c1d8a9906f3a45cbe50012b2ca60a3bc21fe8",
        "description": "intel/dev: print out error when platform is not found by name",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd3c0146723043f66bd18e376fa6526126ff18c0",
        "description": "drm-shim: silence warnings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "764ef4bf1a6fe0c256859d275c5f922d46217dbc",
        "description": "drm-shim: don't create a memfd per BO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b34c8d35f5c8cf8febc1310012de67e6f41b09f",
        "description": "drm-shim: move handle lock to shim_fd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f78af3372131e4c2f0344396d3490abe816992cf",
        "description": "gallium: extract out logicop helper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "51a82ec3e437d1d2dc4c688578640d25b3e7f0a2",
        "description": "gallivm: fix half to float conversions with llvm 11",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ec6565bb2614afe605afae516a2f1dd8ada5bcad",
        "description": "cut 20.1 branch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0842758ec0fe716f6559ca630cb8704cf7fb97bf",
        "description": "intel/ir: Update performance analysis parameters for memory fence codegen changes.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "f858fa26b4cca8834c8687f01d2ba431fcc8e006"
    },
    {
        "sha": "82aa4460492200c621a2f35c93519230b69dbc18",
        "description": "docs: update calendar, add news item, and link releases notes for 20.0.6",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "06b5a646e865200aaee36be2d11aea57eca85aca",
        "description": "docs: Add SHA256 sums for 20.0.6",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "55bb55e93c72b8519f9f50c9eb78951d67cf68e8",
        "description": "docs: Add release notes for 20.0.6",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e70cfe47b3e94684fed79feff7da1cf94ac63e73",
        "description": "pan/mdg: Be a bit more pedantic in invert passes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "074815ca0e96c25df55879af9031a13bc4c20106",
        "description": "pan/mdg: Track more types",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0fe98b478767e90cc5ed976e4e953117fe38308",
        "description": "freedreno: fix buffer import",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "5a8718f01b3976e1bc82362a907befef68a7f525"
    },
    {
        "sha": "2efa76f795cb2b2bf00b317c580aeeeddd1e9bc2",
        "description": "i965: remove unused variable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "85fe0e551fc045d03aa7739d0f1d887484ec6d12",
        "description": "radv: Fix implicit sync with recent allocation changes.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "bec92850270a046524056b8d43bbd2554ba9f2e0"
    },
    {
        "sha": "27cafa9a5173cae48781b724da2cc5be682eac83",
        "description": "freedreno: switch to simple_mtx",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "336a8cd82a4070674ecc056be0af791bf6c7d042",
        "description": "freedreno: add screen lock wrappers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8aacaeca685c4e705a3237c2187f2f9bcef23339",
        "description": "util/simple_mtx: add assert_locked()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    }
]