summaryrefslogtreecommitdiff
path: root/.pick_status.json
blob: 45a8e66a85f7c314175909124a03e156de46a191 (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
[
    {
        "sha": "27534a49cf3872646cb8ef9371707d74a81b1986",
        "description": "iris: add tile cache flush to iris_copy_region",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b0fba89cf61a79235a9c8442a00b32391a31dee3",
        "description": "nir/lower_subgroups: Handle down-casts in uint_to_ballot_type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7b8bb81e827997c5012732795bddf88dd25fed45",
        "description": "CI: Disable LAVA devices",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f3fde6f362acb1841e1af634a2e65f3811ca314",
        "description": "intel/compiler: Use GCM in nir_optimize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c742a99fb6cf96ffa9c8c5fffc7d6a9057c5671d",
        "description": "intel/compiler: call nir_opt_dead_cf() after we have finished all opts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5cc36887abf9a8d47d15ad3098c6bd4bd0d33007",
        "description": "nir/gcm: be less destructive with instruction order",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "436668874a1508edf127be16873c6811fe13a3e6",
        "description": "nir/gcm: Clear out pass_flags before starting",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "8dfe6f672f4f3e226089c6cc8d392fcd39dff5cb"
    },
    {
        "sha": "3ab74d0ffa3bb14ef6971d8e9d94514e0ff2671a",
        "description": "nir: add nir_imm_ivec3 builder",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1d8e9430d267d872941fe2af7c1336e58f089101",
        "description": "aco: include <cstddef> in aco_util.h",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "59fdaa1985f9269c40f0ca4704fbeb3fb05c4c2f"
    },
    {
        "sha": "7c81a9d56f7f308c494cbe971f00eaaf786834af",
        "description": "gallivm: fix pass init order on mips64 with llvm 8",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2f07c675b911ff4d630556608e5d7d867c7e690c",
        "description": "pass egl-symbols-check test on mips64el",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "88b234d7a7cd71fcb4955428010f238ec9530431",
        "description": "gallivm: add basic mips64 support and set mcpu to mips64r5 on ls3a4000",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6455ab6e5ac5b1ad815d3e67e72d9adef7ffd21c",
        "description": "egl/wayland: Allow EGLSurface to outlive wl_egl_window",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0e2464d26bace803aad575c117686412be82388a",
        "description": "egl/wayland: Error on invalid native window",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3870c52159f89545fbe14967c395ebc73ad4cf5b",
        "description": "aco/ra: don't allocate vector space for MIMG NSA operands",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8250f2ae29eecf21a3270f4e45282f0612cdddf0",
        "description": "anv: share some code between vkCmdDrawIndirectCount and vkCmdDrawIndexedIndirectCount",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dcfc4bb89a28849f7891bd5944bc2e2024f65038",
        "description": "ci/v3dv: update expected results",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b6843d990b3ca6910954093b7837a8fd437cbc18",
        "description": "intel/tools/aubinator_error_decode: tag hanging instruction",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "18fa8205063b5dc07d1e253806070ba008793e1b",
        "description": "ci: actually run piglit tests with virgl",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "f1b952fa739998f87cec16d09799a65ea7c631be"
    },
    {
        "sha": "2608ee4031bc6fec24ebb66773c871513800b352",
        "description": "v3dv: fix I/O lowering for GS",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c6196e7e88a51a87f62d28e9f34197ff57cf5b8",
        "description": "crocus/gen4-5: fix ff gs emit on VS vue map change.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "f3630548f1da904ec6c63b43ece7e68afdb8867e"
    },
    {
        "sha": "74245ca0372cef6850791d454d2490304df68a65",
        "description": "docs: update anisotropic info for softpipe/llvmpipe/lavapipe",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a54cd0a83e6340afb83400e3deaf3be84b1de716",
        "description": "llvmpipe/virgl/ci: update traces for aniso",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1769ce34048495eb28d647914c66b90886796dab",
        "description": "lavapipe: add support for anisotropic texturing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d4d7594d14c06168ab8c75f67d4b32b359552f8",
        "description": "llvmpipe: enable GL_ARB_texture_filter_anisotropic",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0bb23ed6dba2abf05568e738eedd02f05ecb1b2c",
        "description": "draw: add sampler max_aniso query.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9cfcf3783ba904e89f99d131e1f8ad7d450e3296",
        "description": "llvmpipe: add support for max aniso query.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ce2b711c0a5d2c1d595f783e7a7bc92388cef4e7",
        "description": "gallivm: add support for anisotropic sampling.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a672f9ebf02645e66797357cd4b7db3b415359dc",
        "description": "llvmpipe: add filter table shader accessor",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4366a77daeaffab87747f13e9a7d379f37a0e352",
        "description": "draw: add shader access to aniso filter table.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "848d4e7e4361fc39a687be3d218515214edf428e",
        "description": "gallivm: add anisotropic filter weight table.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3a3748d999a988923813e50c64c51884218a988f",
        "description": "gallium: add pipe_sampler_state::pad member",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "393ee837fb29b24ebb72fbe7e3b493b8539c06dc",
        "description": "nir: Add a format field to _deref image intrinsics",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0b57272af8dc4d44fc7f026e203a6d836a5cfdd6",
        "description": "nir: Set src_components = -1 for image intrinsic deref sources",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c0afb60258faa66771569b7ce36f6feb591102c9",
        "description": "nir: Set IMAGE_DIM and IMAGE_ARRAY on deref intrinsics",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ea7fcd5a9774b2d0500bea35f7f2c36c06e11f55",
        "description": "glsl/nir: Use nir_ssa_undef() from nir_builder",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0b9562a94ae3969c595e38b21758be828a08212c",
        "description": "anv: Allow unused VkSpecializationMapEntries",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b5e782f5f43185076acbbea1e42000fd1fb48aa0",
        "description": "aux/draw: use nir_to_tgsi for draw shader in llvm path",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4c36224f95b61c71a79e00ddf8ef0f02dd1085eb",
        "description": "zink: Fix unused-variable warning",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "9b40fc4892c24a5eb5558719682fad6bfc3dd79b"
    },
    {
        "sha": "50f9519ea5fbdb48d14a570f307c1ef6d22a9e6e",
        "description": "nir/lower_point_size_mov: zero nir_state_slot::swizzle in new variable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1132df843cc71dd0773d3180e218a73230674367",
        "description": "freedreno: use new tc util for setting bytes_mapped_limit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c3914bb2e891faa0409638c6f5f6a5b8a80176ae",
        "description": "zink: use new tc util for setting bytes_mapped_limit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "01414d435c40931fe319c11beff2633e164d536e",
        "description": "radeonsi: use new tc util for setting bytes_mapped_limit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "671d579b46d79905a4daa2e3e59ee0d29a95708e",
        "description": "util/tc: add a util function for setting bytes_mapped_limit",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3db856689decdd435f8f3b766d7b8521ca477e49",
        "description": "zink: add changed flag for blend states",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "df243d009485703cd9980207ef9bcc2da6bc16e7",
        "description": "broadcom: don't define internal BPP values twice",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "dc40157888a8825fe5c411f20029466c7c2f1d47",
        "description": "broadcom/compiler: emit TMU flush before a jump",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "197090a3fcae47a4aa0faa06ea3a45e1bb64a458"
    },
    {
        "sha": "54e1ec017d7852bfc4ba46b54c3ab516f96102f7",
        "description": "st/mesa: always use PIPE_USAGE_STAGING for GL_MAP_READ_BIT usage",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5bfd1a7e19ec1c510c2ba4adadad98d78f712eaf",
        "description": "radeonsi: Check aux_context on si_destroy_screen()",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8be61e8a9e49190593e0c90077a8ce100b5743de",
        "description": "mesa: fix bindless uniform samplers update",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "736f1f70ab8a7995041a707d28d0e1a5f2940f4c"
    },
    {
        "sha": "9b1a296172df38561d650abf98ee2e1c77ac6fc2",
        "description": "aco/optimizer: ensure to not erase high bits when propagating packed constants",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "66213ab2de023250ceb6ea98270065ee9de02f79",
        "description": "clover/il: return IL only for spirv and correct length",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "59e69e8ec5b2df124b2a9c23fec53a5988563676",
        "description": "zink: remove screen info stuff from draw templates",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "9bafcde42f15fde030c20ddc81b5695a0bfd662b",
        "description": "zink: add a ctx flag for shader reading basevertex",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "37ee123063da2c679616248f0170d1dc38bc97f4",
        "description": "zink: use drawid_offset directly during draw",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "405d45f00963b142d56ab3d2c9c1e5405cbace2d",
        "description": "zink: flatten descriptor_refs_dirty into BATCH_CHANGED template",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "96559e7418bc9b68a750ac764b3d100e39d56611",
        "description": "zink: add a ctx flag for drawid reading",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a3321f1b856c87e1d44b8b3d5a4d52b4652b3f5e",
        "description": "zink: don't rebind vertex buffers if pipeline changes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c6d268d1a0f1a1bed8603e711b4562443803602a",
        "description": "zink: stop flagging pipeline dirty for line width changes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "eb3b75868672854222b8e5bf3bcab1c9c7770e11",
        "description": "zink: split pipeline_changed to use template value separately",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b37a2c6ef2a1aec00a48bea8d3442b7f98f4c5e0",
        "description": "zink: add template for starting new cmdbuf",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c88ce857995e304ffedd9002ab4dc62733cbb443",
        "description": "zink: if descriptor updating flushes, re-call draw/compute",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f2f1892e621c892606db73df493ad21f708bbb92",
        "description": "zink: make descriptors_update hook return a bool if a flush occurred",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c5ccc41ca5e9f5d3a8f76490ecf0bf04e1197da8",
        "description": "zink: add draw template for dynamic state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cfcc2ff03fdda14c218c96c658eb81642df3ad44",
        "description": "zink: start adding C++ draw templates",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "15c7e3e9225ee692c8302e26592c2abddbcf5b8f",
        "description": "zink: ifdef out some context prototypes/inlines for c++ compile",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c4702204bc342ef1d8b383554e3be9715419099d",
        "description": "zink: optimize shader recalc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "785b4728cfec8d55b00f65d41d3fe27fbaf46ee2",
        "description": "zink: set dedicated allocation when needed",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a8727ec8568f4e0d96ce731151095b5cf5db6b43",
        "description": "zink: hook up VK_KHR_dedicated_allocation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e9516a4edd510a72c334d392229c95c45899c274",
        "description": "zink: check for dedicated allocation requirements during image alloc",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bda26dfcfc5f9012ab1bd22f2bbaa664315e2671",
        "description": "freedreno/ir3: Reduce choose_instr_dec() and _inc() overhead.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "56dd1adf3b8b377b301e5973bf19c540c757ac54",
        "description": "features: VK_EXT_color_write_enable for lavapipe",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "578190c0fedd6cb0e348f3512ef1fab365713214",
        "description": "lavapipe: implement VK_EXT_color_write_enable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0115fab46b9185d3d6bf2b4ca6dc12311f6e07fc",
        "description": "lavapipe: add a padding member to rendering_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a296cc268471fa0dfa092aebc0dd5e092494075c",
        "description": "gallium: Remove dead pb_malloc_buffer_create function prototype",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "75aa8524ec22888229e5849b5715d7111a0885b4",
        "description": "wl/shm: don't fetch formats if not requested.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fd5fa73e6c8deeb8e09062e412d7d05fe57d0c59",
        "description": "v3d/driconf: Expose non-MSAA texture limits for mutter and gnome-shell",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ff55412f40a7d588e47e2c35d175aea0ac3cfe95",
        "description": "nv50/ir/nir: fix smem size for GL",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "dc667b1f192d33d073832a50b0e920734f9fb8ef"
    },
    {
        "sha": "d6dd13a62ec5f21c58e4251e6d7d872b31a55c86",
        "description": "v3dv: implement VK_EXT_physical_device_drm",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8413c57a3ffe2ea2d4bedd9efe5524686720495f",
        "description": "nouveau: Support nir_intrinsic_*_atomic_fadd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "57dcfb4e55346ee2d7e3da79e93a7d36a8a5ca17",
        "description": "softpipe/aniso: move DDQ calculation to after scaling.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "2135aba8d99d5b0b5f73d97d4aac6a25d69de57c"
    },
    {
        "sha": "7de5293b897080a2a954d54e076b2c1e55f08c53",
        "description": "pan/bi: Shrink live array to 8-bits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bbf2ef6b4a60d8aa3c45c22ebb8ae68e56b8b548",
        "description": "pan/bi: Clean up liveness freeing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "84e2e5f23c7d01f09d68c10a95e59a35f37939af",
        "description": "pan/bi: Clean up useless casts",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1fcea302954c97d53cfe836ffae707664585f7b1",
        "description": "pan/bi: Copy block bi_block",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a372368e228ac587c5fad74d381dd16b072da245",
        "description": "pan/bi: Copy back bi_foreach_successor",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8bee48a635be1ec1397416b9099a5f86767949cf",
        "description": "pan/bi: Copy back add_successor",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a667e1bb6ddaafedcd1db16e1ff520c805338a9c",
        "description": "pan/bi: Copy liveness routines back",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "55d57b828f7669a1fd5e4c6c9cc04370a88d31a2",
        "description": "aco: Fix how p_elect interacts with optimizations.",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "e66f54e5c83fd545e1a4062e683b584a35dacc00"
    },
    {
        "sha": "749251391d967ce5450a6adfeb64cb773cce2508",
        "description": "glsl: replace some C++ code with C",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed57666a5c10a601b89868fa986d9ef215b908ed",
        "description": "mesa: fix incorrect comment in draw_gallium_multimode",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "4566383ae4bf28b99576ae9d293c50decc771888"
    },
    {
        "sha": "73a03d12e953f037555e06406681c67c5c710968",
        "description": "mesa: remove unused drawid_offset parameter from DrawGalliumMultiMode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "703279e6da2168aadde4407a8b97a1f54bf3250f",
        "description": "st/mesa: inline st_setup_arrays on MSVC too by adding a wrapper",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "2850db0a9ef3751b1b3429d9b7e75ed22dc4e59e",
        "description": "util/foz: stop crashing on destroy if prepare hasn't been called",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "eca6bb9540d8d1b260511cd0a71bdddb00ff4a3c"
    },
    {
        "sha": "d27f7fa1b334f799bcb75d185bf359a4c5091572",
        "description": "anv: fix feature/property/sizes reported for fragment shading rate",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "790ff1ceac8a406467b38c929e0ae75200da59f0"
    },
    {
        "sha": "8f0385c12c0360e72744c286fca64eb8a8433986",
        "description": "util/tc: make clear calls async",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1abc480b5a00e3707370caf6cdd1f8774c99d724",
        "description": "radeonsi: document a missing synchronization for bindless textures",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7f9b3a70986b66a799145b461af4df74652078b7",
        "description": "radeonsi: set scratch_state dirty only if ctx->scratch_buffer allocated",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "be9ca622478ac4ef1eda9c1ce6244d7bed7e02f9",
        "description": "radeonsi: remove redundant setting scratch_state atom dirty",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "86ff5b7ddb60ee82b04eea143b9cc7efa3ff8183",
        "description": "radeonsi: don't expose no-attachment MSAA 16x on all 1 RB chips due to issues",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "59e923e5a1fecfb17fc3dc0f912baa9cede2c2ca",
        "description": "lavapipe: don't read line stipple info in pipeline creation if stipple is disabled",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "11f9ad92382d92d6e6e16ae650003c448ef187b8",
        "description": "gallium/ttn: Add a debug flag for dumping the shaders.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "8c36022e0d5c00f6b4c18b67e87c5be2874152cf",
        "description": "nir_to_tgsi: Fix image declarations.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "46cc332025b62484baf8f510f285d4749118dde6",
        "description": "anv: Stop reference counting semaphores",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d44ea09e61f4e385bda1280e388cc60dcd4e11cf",
        "description": "anv: Drop unused sync_file and BO semaphore code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3b363d5b552d4acca40251254edf5848654ea7bc",
        "description": "anv: Assume syncobj support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a62973580b7846f2213cbd2589e9473c26596683",
        "description": "intel/eu: Start validating LSC message descriptors",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "89b7a40212880bc104758be5895f1ad915052854",
        "description": "intel/compiler: Enable has_iadd3 option on XeHP",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "06ab73768612084b0ea614c0da87f2f63587b788",
        "description": "nir: Add optimizations for iadd3",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e6db2299a8e872336b5d43f78e78222c0f9cb279",
        "description": "intel/compiler: Allow ternary add to promote source to immediate",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cde9ca616d7bd2ecdf3281f087e9c7acccc85192",
        "description": "intel/compiler: Make decision based on source type instead of opcode",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "705285b9f4a11b19c550ef3acbb40eb0a1d6bc41",
        "description": "intel/compiler: Add support for ternary add instruction on XeHP",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e8dff256c07fac1484b66c7f7a71f1b9c5ffe1dd",
        "description": "nir: Add new opcode for ternary addition",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6e17931d2120148dd71d5014421303816611df60",
        "description": "radv: Use pre-computed viewport transform for NGG culling state.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c9a478f1cd1d911431b619e0db5551207131dfc1",
        "description": "radv: remove unused variable from radv_emit_viewport",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a2ef92d7a58ee07d6b44131712b6b85700503e38",
        "description": "radv: pre-calculate viewport transforms",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1e13cb1965ae608a48f7fd2579f8a27119f4e04a",
        "description": "radv: merge si_write_viewport into radv_emit_viewport",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "53d4485a028525f9a041e527e50d79ecd3e999fc",
        "description": "freedreno: fix wrong tile aligment for 3 CCU gpu",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "78c8a8af80d5b0ccd68dd85ff7ecbb699be31f7d"
    },
    {
        "sha": "60c5abf6857b57893f313e2228e2ec0fac8f1995",
        "description": "aco: Remove s_and with exec when all lanes are active.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e66f54e5c83fd545e1a4062e683b584a35dacc00",
        "description": "aco: Allow elect to take advantage of knowing when all lanes are active.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b12318f26c2440bed3cc0cc9261666d1253a05ba",
        "description": "aco: Swap s_and operand order for ballot.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5008a48d39fc7df788ce15eac0154f428632022",
        "description": "intel/perf: Use intel_i915_query_flags instead of hand-rolling it",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "ba99d2a3288d87245ce9787106b6118595bd4fb4",
        "description": "intel/dev: Use intel_i915_query_alloc in query_topology",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "3fa6b8d0417f215a859386c9c41aca3cd4ec201e",
        "description": "iris: Use intel_i915_query for meminfo",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "e60114b2ae117b0f9cc55de57ab397804c8d6bf8"
    },
    {
        "sha": "35ec1d9730cd1d0e3d8f212d5edcea53fe7cc518",
        "description": "anv: Use intel_i915_query_alloc for memory regions",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "65e8d72bc106b0cce62d2037aa0e7f1babf42d13"
    },
    {
        "sha": "ffdf4d76838b906030f17d7d1b50fddd1c8679f3",
        "description": "intel: Pull anv_i915_query into common code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b664481ba91603d69b294ca5b1243e42c86a5863",
        "description": "anv: Handle errors properly in anv_i915_query",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "c0d07c838a9fcd67e4ae8cf948ced2daa3edf8c6"
    },
    {
        "sha": "d07e5bde751a7f85ded96b35660075d8f782b49c",
        "description": "radv: Remove num_viewports from radv_skip_ngg_culling.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "9a95f5487f5ab83fa44bea12afa30cf1a25fc9db"
    },
    {
        "sha": "aa247403703b27938fd86ff60428c91a0e76aa6c",
        "description": "radv: Don't compile NGG culling into shaders that write viewport index.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "f30e4351de2f562955435a04cf75dd641639d31c"
    },
    {
        "sha": "e56d5db341eaf2112be366ee015a9956b2c3b704",
        "description": "iris: Re-emit MEDIA_VFE_STATE for variable group size shaders",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "33c61eb2f10526c0b90c5ad376e5b0433aec296d"
    },
    {
        "sha": "d7e1c0ec2e1d467b9f71e97544428910f235bea8",
        "description": "v3dv: don't emit frame setup more than once for multilayered framebuffers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "51d0d83667c31ed33992175c9d07a7eb05d6714a",
        "description": "v3dv: don't overallocate tile state for meta TLB operations",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7fcc518473f7c5de9a34af397f77018dc5a211e9",
        "description": "v3dv: allow limiting amount of tile state allocated",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "93e7534a66a42d1b14d3ff1b6dc532abb1c2c62c",
        "description": "v3dv: improve TLB layered image clears",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "308041095c4c12263ee7df2784572eef0e61c73e",
        "description": "v3dv: remove unused layer field from struct rcl_clear_info",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0b637919a8a30041c64a201f62aba032254a0e0d",
        "description": "radv: fix specifying the stencil layout for separate depth/stencil layouts",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cadf2d63b736b610728d508ed507551dd74ba16a",
        "description": "radv: report APUs as discrete GPUs for Red Dead Redemption 2",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "7a1cc56e405b247702e91180c1143ca96b96b5bf",
        "description": "radv: fix bounds checking for zero vertex stride on GFX6-7",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "0ee322acdb633a0935f542494f7113d86df3f78a",
        "description": "nir: Better document the Boissinot algorithm in nir_from_ssa()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cb589ee394287fa1291cc7ce564f946d8af73583",
        "description": "intel/dev: Drop a bogus assert",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "c24ba6cecbacf2d81345c1112f083006f22b65ea"
    },
    {
        "sha": "fce0027d913f6538cb1f1d40675191d2a9ffadfe",
        "description": "anv: Unbreak wide lines on HSW/BDW",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "004fcfe6985e6573de62f7482386a51b0750f3dc"
    },
    {
        "sha": "dfcb47bcec0fb0e7cd812015640706a445acf065",
        "description": "anv: Zero initialize pipeline structs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "34aae6a1f2221bdd6ae812c11fafaaca10ca2419",
        "description": "vulkan/util: Add and use vk_multialloc_zalloc variants",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "49a7c92793ebcc4e2814ef295e51673dc4c9674c",
        "description": "vulkan/wsi/wayland: Initialise wl_shm pointer in VkImage",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "6b36f35734a9ffa2c6fde475933eb46d7f4fb6f4"
    },
    {
        "sha": "1061ebb6da6435caf4f38d6d0a592ab6d1ca7bdc",
        "description": "vulkan/wsi/wayland: Cosmetic alignment fix",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "b3d2642ca4fe10faf05d51962339a598e622028e",
        "description": "draw: handle resetting draw_id between instances.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "ce0b1f23c30e1943be67d81231722e76e074f823"
    },
    {
        "sha": "5447330a25f82eff4b449fb5a0304e1d4a762821",
        "description": "lavapipe: fix indexed multi draw draw_id increment",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bb35195b73824d2aa4ac89aa80ff84f54bc9b108",
        "description": "nir: Validate after deserialization.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f855b25fd0091d76a2ed6dc9f5c873d75a1c78d8",
        "description": "docs: mark mesa 21.0 as done",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "004fcfe6985e6573de62f7482386a51b0750f3dc",
        "description": "anv: fix some multisample lines_wide CTS tests",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f40a08d25c91256cd3dff0211b8e10d5bbb3734e",
        "description": "anv: Don't advertise unsupported shader stages",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "19c828372975573d0e83b8b11c0a7cf9d73b55ed",
        "description": "radv: Use 128-sized vertex grouping for NGG shaders.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "17e62a3c23f68df802bcbfdab947dff4226fa281",
        "description": "mesa: (correctly) flush more in _mesa_make_current",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "34342cce895b4d666c3f6a1cbf3f3b7da859afc2",
        "description": "glx/drisw: Nerf PutImage when loaderPrivate == NULL",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5c8761edab0f3982ab22de774afa81148b47795",
        "description": "asahi: Move assignment after null check.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "dcd2d8ca5008ec619732c21f9ff0ed4f7ee7f7f6"
    },
    {
        "sha": "8351ad17193224a2b6c0bc635b405e677a31c7c1",
        "description": "Revert \"ci:  disable Broadcom CI\"",
        "nominated": false,
        "nomination_type": 2,
        "resolution": 4,
        "main_sha": null,
        "because_sha": "87cdcf56455b78b0ca799adccb20c7d23d1b3a51"
    },
    {
        "sha": "f62ff2e7dc934179ebc1eaa412adbc449351d138",
        "description": "util: document that workaround also fixes Riptale",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f481c290b0edb9deb009674bf9e29905511ce4cc",
        "description": "v3dv: refactor meta copy/clear code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "18642987fdd4dd69ce64852228afa022cedfd1e1",
        "description": "v3dv: remove more dead clearing code",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "5ba7f64b454b78c71be0827c74f37497fd135822"
    },
    {
        "sha": "87cdcf56455b78b0ca799adccb20c7d23d1b3a51",
        "description": "ci:  disable Broadcom CI",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1ea156f44c7ce8d6880217ef4d46692cc7ac0219",
        "description": "radv: only init the TC-compat ZRANGE metadata for the depth aspect",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6e4e6d952715fbcbf92dfcf8ded366274e4ab1a4",
        "description": "nv50/ir: Initialize Value member id in constructor.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "4a3269dff65e198ac3d493b676800978ce0c01e5",
        "description": "lima: handle fp16 vertex formats",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "12128fb1351eee6ec681039fe8483b3c39db7c8e"
    },
    {
        "sha": "12d18abfe7a523d91739a6f0fb0f59c66d0478f3",
        "description": "venus: refactor vn_EndCommandBuffer",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f144d914966eba2fd816b2948d5832b14f01a947",
        "description": "lavapipe: fix multi-draw regression in shader parameters test",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bedbe35d6bb176475dbe9c4d8345e5774270a196",
        "description": "pan/gen_pack: Use 1U for unpacking log2 to avoid undefined behaviour",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "04c02418d74703812a39405df14e130c2d6fd098",
        "description": "pan/decode: Avoid undefined behaviour on shift in bits()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6642749458b6a2e0800bb5e606dcf15e4db0c479",
        "description": "intel/dev: Add a max_cs_workgroup_threads field",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "915e5a8cc306c35dad2f7e3a83c18ce72b16e3d6",
        "description": "intel/dev: Handle BSW naming issues",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "56d70ba6861545d13071a6c3be46648c668091f6",
        "description": "intel/dev: Put the device name in intel_device_info",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "c24ba6cecbacf2d81345c1112f083006f22b65ea",
        "description": "intel/dev: Handle CHV CS thread weirdness in get_device_info_from_fd",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1744372714421d741f256f99148e792796888562",
        "description": "lavapipe: Use common Vulkan format helpers",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "b38879f8c5f57b7f1802e433e33181bdf5e72aef"
    },
    {
        "sha": "376fb4f55f080929df8ca5a2a975fc88a00eec06",
        "description": "docs: drop duplicate `21.1` branch name from release calendar",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "e1fe0bb0ca28a1aefcd81a9b909424124ff30b25",
        "description": "docs: update calendar and link releases notes for 21.1.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "cd3d8f0f7abef7427e0ea870b395d5f627859435",
        "description": "docs: add release notes for 21.1.5",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "6689c3917e876bf1719b5808e2c0832ee4d50aed",
        "description": "lavapipe: increment drawid for multidraws",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "f99f7c06e71d6194d4206bde58a8acb5a42d90ed"
    },
    {
        "sha": "d08c84ab0c3ab1f8061e5d9ea1bcff2ed8b6cf57",
        "description": "zink: improve detection for broken drawids",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "2d32d123e5624e631fa1eda02da647d0065b7ae8"
    },
    {
        "sha": "28c5e88931a0d5a37df50915686d027e2ca81f0d",
        "description": "docs: update calendar for 21.2.0-rc1",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a3271b3f73d40dbbfa9e733498b7ded8810a6d17",
        "description": "lvp: fixup multi draw memcpys",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "main_sha": null,
        "because_sha": "f99f7c06e71d6194d4206bde58a8acb5a42d90ed"
    },
    {
        "sha": "a18f434d58b8f1be4edf212a6aa2df4cedc13413",
        "description": "panfrost: Warn on transitions to linear",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "d5fc0ceafda78420094b00d43b6c81c5ea38858d",
        "description": "panfrost: Warn on get_fresh_batch",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "f2e3ac5c6277f8bd18277a311e8ee7c2d43589e3",
        "description": "panfrost: Warn on get_fresh_batch_for_fbo",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "a266a0fbbb1cf7b5653807c86db8ddfe60cae495",
        "description": "panfrost: Log reasons for flushes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "bcd915622b23ed194e92f810ceb9bd89c27fedd5",
        "description": "panfrost: Warn on going out of AFBC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "5bd91a632bb2ce13f03ab4d78a114ca110270348",
        "description": "panfrost: Warn on software conditional rendering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "256f4a5b02a06ffc701baa3e4fd150796b33b28a",
        "description": "panfrost: Add perf_debug macros",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "fae28b0fce7b36b3f31713758025e4ab8d73046b",
        "description": "docs/relnotes/new_features: empty for next release cycle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    },
    {
        "sha": "1a05c595a3a09ea2e764d5d6f18c1dc55601fea3",
        "description": "VERSION: bump version for 21.3 development cycle",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "main_sha": null,
        "because_sha": null
    }
]