summaryrefslogtreecommitdiff
path: root/.pick_status.json
blob: 8791d9dd64b36e1166861bf886eb65bc4ed264a0 (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
[
    {
        "sha": "c74d93cf0187e07cdfacc448a947a8cae485eb41",
        "description": "freedreno/fdl: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "60509762329e63a37111c9b1b51fe8090705349a",
        "description": "freedreno/perfcntrs: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d26a224ca90b3dca5fb8f204f654acd6c40ea0fd",
        "description": "freedreno/ir2: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2dbf09c2b4f8b14cc003430b905fc5f728ce17c1",
        "description": "freedreno/drm-shim: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "45856c5fbc68c942f3377e6784f15eec362979a4",
        "description": "freedreno/decode: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3894bc966424cad8dd393287137e5df028776414",
        "description": "freedreno/computerator: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ccd68b672aa91104875c4c7eba16ef83efcf7b3a",
        "description": "freedreno/common: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f5918f750f5172b891a834babc73c4907d6e6b4c",
        "description": "freedreno/afuc: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b94db11708ccf48765de007cc9c0fdcaf95368aa",
        "description": "freedreno/drm: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a1653854f50aa429cb1a5e0ece063900cc988554",
        "description": "radeonsi: fix automatic DCC retiling after compute image stores",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "1d64a1045ea205ee0297d2f741a824811570fc6d"
    },
    {
        "sha": "4d7dd094e3607ad628847bf01b6ab92442f94d1b",
        "description": "radeonsi: fix automatic DCC retiling after DCC clear and DCC decompression",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "d4f7962d48b46d34319f75bba03fad22c30efdff"
    },
    {
        "sha": "a0771e6b27ebd35a599916f061c5b9d3c10c8c5b",
        "description": "radeonsi: fix incorrect comments in culling code and NIR lowering",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e0ffd1f9281c8f009f21ec5a8d97db3c6d502124",
        "description": "radeonsi: don't decompress DCC for float formats in si_compute_copy_image",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 0,
        "master_sha": null,
        "because_sha": "1d64a1045ea205ee0297d2f741a824811570fc6d"
    },
    {
        "sha": "ec1ddb976a133bc6e504693373b0920e28ab2868",
        "description": "amd/registers: rename IMG_FORMAT to GFX10_FORMAT to disambiguate the meaning",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3e0ce4af4f6d310a762ca850694ae16a298b5f75",
        "description": "amd/registers: clean up gfx103.json",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a142925b7a0908de900dee56aa7c4b84ae7a7e0f",
        "description": "amd/registers: fix the kernel header parser with latest headers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "418da19f9103469e7a43b88ddcaaa06b0e01db35",
        "description": "venus: add vn_wsi_create_scanout_image",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b7db6598df10a05e061167c0b1319a1044ad9cde",
        "description": "venus: add vn_image_create",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e1787ec77dc57aa460326d159ad855df6825eb07",
        "description": "venus: add vn_image_init_memory_requirements",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5de3cbbb2e66fcdb7d6219b78b89ad932ecadbd5",
        "description": "nir: Generate load_ubo_vec4 directly for !PIPE_CAP_NATIVE_INTEGERS",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "cf3fc79cd0ab55776bbbabe76237c272ab07133e"
    },
    {
        "sha": "71d6d1b1ab917cff0f2f442391964e0ea8fc222b",
        "description": "nir_to_tgsi: Use ARL instead of UARL in the !native_integers case.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "cf3fc79cd0ab55776bbbabe76237c272ab07133e"
    },
    {
        "sha": "5b9c3cb7b9daeae04c1211c4124038fc2327ad94",
        "description": "zink: compare against screen batch id when determining which semaphore to use",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "fa36a16c68489c7a8a7223c39fb0078f7d745bcb"
    },
    {
        "sha": "20e2c7308f67412234847fd66fb330969ae30de0",
        "description": "iris/gen12: Work around push constant corruption on context switch.",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "aea6f8effc2e6c95c6ea40232748c1a1931c3756",
        "description": "microsoft/compiler: Propagate access when lowering SSBO loads",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "474824bf3d80b17d83277fc90a445aa29ce16ccb",
        "description": "microsoft/compiler: Support raw SRVs in addition to typed SRVs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a5f402f002fe39a64308ebc198a37b28241c4cd2",
        "description": "microsoft/compiler: Store nir_shader in the ntd_context",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "50d7e97c1d67b38157654824b16599fce83eb407",
        "description": "microsoft/compiler: Better support UBO/SSBO references to descriptors",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d6b5aaaff8b47ebdc3769a2d47cf137618b6b6a4",
        "description": "microsoft/compiler: Split Vulkan resource_index / descriptor processing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8a821e2b8bc960711c5aac9a36eb487a79d540c1",
        "description": "microsoft/compiler: Emit SSBO variables",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "15de7122706e08da39582e74785ea34615058d4c",
        "description": "microsoft/compiler: Emit CBVs via variables for Vulkan",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "debdc81ccf385f5f75750a5ec0d6c2b31a35dd94",
        "description": "microsoft/compiler: Support arrays of UBOs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "88ff88bb7d01857ed9687e11608d151cd28cc56c",
        "description": "microsoft/compiler: Support raw SRVs/UAVs through dxil_module_get_res_type",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0c8220685e056398967ceba50e20f0cf6cbddee8",
        "description": "microsoft/spirv_to_dxil: Lower loads/stores to DXIL",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "14997c7e9652e97cebebffa6d296ca70c1c82e8a",
        "description": "microsoft/spirv_to_dxil: Lower samplers from deref to index",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0a71aaa29d78a3490940bc0bd287136b3e3774ee",
        "description": "egl/android: include \"util/compiler.h\" for FALLTHROUGH macro",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "2928c21eb73b66d22d1f383abf62de583547f81f"
    },
    {
        "sha": "5613984fd944a150d48e6a582daaeb8b2dde7e32",
        "description": "st/nine: Fix compilation error on non-x86 platforms",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "d9e79bfe4f03eb0412a5535fce2a98c10623f53d"
    },
    {
        "sha": "db538bde71bf3c7b76df3b65679124b24afb930f",
        "description": "ci: Add test which occasionally times out to lavapipe-vk skips",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ebab3109876113f86ed189f26f409529c7abed67",
        "description": "frontends/va: improve surface attribs processing",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6c80b084f26dfe60e86c80dcc10da3544244b79e",
        "description": "v3dv: better tracking of dirty push constant state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "30f125f04fdb5e281884db5a625ed1959568fe40",
        "description": "v3dv: dirty viewport doesn't affect fragment shaders",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "35ff75701f0ecccb5c97ebddec2a8a61fe52afcd",
        "description": "v3dv: improve dirty descriptor set state tracking",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "505d176a8ebfb6a2c7d0b0a51753332036ae6f75",
        "description": "anv: disable baked in pipeline bits from dynamic emission path",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "4ad4cd89069bfc98533182d2ae9151fa74fb5414"
    },
    {
        "sha": "30bc562bdaec2efbfae4cc01548b2adbae2c0c4b",
        "description": "anv: fix 3DSTATE_MULTISAMPLE emission on gen8+",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "4ad4cd89069bfc98533182d2ae9151fa74fb5414"
    },
    {
        "sha": "d29b5b9f20f84d60f69f7c8547008a60806f8307",
        "description": "v3dv: avoid dereferencing null value",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "86d903e88ddab658c4806bdbc0656a2eeaac949c",
        "description": "radv: fix clearing DCC-compressed e5b9g9r9 images",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7ae2ba5da9a014bd1dbde842d4c24e16d24e3554",
        "description": "glx: Remove some ancient backwards-compatibility typedefs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0e77a23a34a3867f2d4765fe8b15377cf407543c",
        "description": "glx: Fold client_gl_only array into its one real user",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9f97f994c3f65e44e46b464d3257adfeafac87e5",
        "description": "glx: Enable pure-client-library extensions explicitly",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e5d3cfb597a372274c876386904e18b22a9be077",
        "description": "glx: Remove redundant client_support field from extension table",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3f6996acfd747d9c36e5d1a99418f0a9d8e458a6",
        "description": "glx: Generalize __glXGetStringFromTable a little",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2014e1fe05bc547c2d50c7fe6aea5a5af39343bf",
        "description": "glx: Remove some non-functional GL extension from the table",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "896c650b1b4bbab67a39ae2bb6e30d08f2b62d8a",
        "description": "glx: Mark GLX_{ATI_pixel_format_float,NV_float_buffer} as supported",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fcc9ce09d431de35667a58ff603e387d6de7ad29",
        "description": "glx: Remove major/minor version tracking from extension table",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6b6a1ef07503fb89c2f706a413a2433fbc19add4",
        "description": "glx: Remove some truly ancient unused code",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b2ecd0d589470635f35bf029fdf5290e24d6a016",
        "description": "glx: Remove silly __glXGetGLVersion() indirection",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "66e1b42d066480301de8ba669f015b03d22f1541",
        "description": "radv: keep DCC compressed for clears on compute with image stores",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "84895dba7fd607c2691f4b70d31f02516ebb89d3",
        "description": "amd: remove some references to older LLVM versions in comments",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b878444c3a3819386697361a976b5df30a96cf1f",
        "description": "amd: drop support for LLVM 10",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2747332723652b3915436a5b039123c5bc7545e1",
        "description": "amd: drop support for LLVM 9",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "936b58378c4cc6f2b6bfc3328ef7d5c2ba489992",
        "description": "amd: drop support for LLVM 8",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ac2ab5c895480d4705d783728f12cb9a2e72c385",
        "description": "ci: don't build clover with LLVM 9 on radeonsi because it's unsupported",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "566dc4d74021e7d7a50e30a34a7061b12f65160f",
        "description": "intel/eu: Add instruction compaction support on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a2572a9da49561af2d8dafce44bbb50c80505531",
        "description": "intel/fs: Add more efficient fragment coordinate calculation.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a0e0dfe1743c703e718e509e7c2096d1b6e3dc95",
        "description": "intel/fs: Introduce lowering pass to implement derivatives in terms of quad swizzles.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "635ed58e527f1a1c0b11eca0552e892f56f8ccf6",
        "description": "intel/compiler: Lower txd for 3D samplers on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "515ee73b4e2320daa18a6918d896847bf236d189",
        "description": "intel/fs: End computer shader with message gateway on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "262cb08557550dc9276522649b2ce1acd15df560",
        "description": "intel/fs: Disable 3-src immediates on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "02ce55d2b19b91503eaa4b12894f757fb9a3bc71",
        "description": "intel/eu: Allow 64-bit registers on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "262b647b25f3c36fc40628734f6d73b12c582f58",
        "description": "intel/compiler: Lower integer division on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "49b2d9f428cc7a8d4010c78c4a1ae5238434f413",
        "description": "intel/fs: Lower dword integer multiplies on XeHP.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3f50dde8b35a117137617a862b3f0a6c4e1d35e0",
        "description": "intel/eu: Teach EU validator about FP/DP pipeline regioning restrictions.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f3e5cd813ae6a840e7d7364207d56dbbeb050589",
        "description": "intel/fs: Handle regioning restrictions of split FP/DP pipelines.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0dc16965a99e2583202a2be4ef9fb7947b6828b2",
        "description": "intel/fs: Fix repclear assembly for XeHP+ regioning restrictions.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "05cce1f97d87cff14f7e869f4fa5bd39d3faef29",
        "description": "intel/fs: Use CHV/BXT implementation of 64-bit MOV_INDIRECT on XeHP+.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d57f3ced6caa48691f29bfa47eb957042eb9f3f2",
        "description": "intel/fs: Calculate SWSB cross-pipeline synchronization information.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "3f063334fc30df17015253c9308b89f41cddc9ed",
        "description": "intel/fs: Represent SWSB in-order dependency addresses as vectors.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "78b643fb7f7ad6f48062714a23b0d6d9f213c8cb",
        "description": "Revert \"intel/compiler: Silence unused parameter warning in update_inst_scoreboard\"",
        "nominated": true,
        "nomination_type": 2,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "a80e44902f66244d257c523afe77558cf334d624"
    },
    {
        "sha": "d4537770bbf6c78d49dc71abe2f79099448339eb",
        "description": "intel/fs: Add helper functions inferring sync and exec pipeline of an instruction.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "12479abded50e7caf5544776f7b7ecf161c6c487",
        "description": "intel/fs: Implement representation of SWSB cross-pipeline synchronization annotations.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d53fc2240b6b012951692e172682d6799d78b802",
        "description": "glx/drisw: Enable GLX_ARB_create_context_no_error",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1cf36797bf9d63b33c405d85ce720dcd5e75a47c",
        "description": "v3dv: fix sRGB blending workaround",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "08ea0076641a40bb24e8e3975671f41b9ecda6fa",
        "description": "ci: disable initrd support",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "757a711f396e42c6080563ef7fe589f173e38fb6",
        "description": "venus: fix virtgpu_bo_init_dmabuf for classic resource",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "23159f1a7a4524769616f656035e78a7689314b0",
        "description": "ci/freedreno: Skip some precision tests on a530.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "afa965b7c5f556ada4e0626abe933d2fd6874035",
        "description": "ci/virgl: Mark a couple of new Crash tests as flakes.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "55fb9417a6a3fd5908a459b94de5f38b6e3a14ba",
        "description": "mesa: texparam: Add a clamping macro to handle out-of-range floats returned as integers.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "53c36dfcfe3eb3749a53267f054870280afb0d71"
    },
    {
        "sha": "31dba8d51b08ef160537c37d381b304c09091ee3",
        "description": "gallium/xlib: Fix for recent gl_config changes",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "4daef7ffe373f067249e052d96dcac145984b6e8"
    },
    {
        "sha": "3af12216e38ac9c4bdc4d8dc370d969e2a2b2976",
        "description": "panfrost: Unset shared/scanout binding flags for staging resources",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "e00d94f14f7f75d4974c1d48b4ec177f052723d3"
    },
    {
        "sha": "716ce3cc1aaa1a9013ab08694a5a6ffdf63f3f4b",
        "description": "panfrost: Assert staging resource allocation was successful",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fc9b3b260e08677aa78f74c0b4cf574175bd5d4d",
        "description": "Revert \"glx: Lift sending the MakeCurrent request to top-level code\"",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "80b67a3b444f31462890a8e390650fa77c4d2010"
    },
    {
        "sha": "d148540e5ab2faf59890c1c41571f03a0b14db7e",
        "description": "venus: cap api version to 1.1 for Android",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7d234da6ee3693286c2ad796c5c4c24856a86573",
        "description": "freedreno: Fix YUV sampler regression.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "de17b4aab568aca2fcf243bfb5871fc465b0ccee"
    },
    {
        "sha": "1bccefb3fc0c3a19883d3bdc71a0cba96dbdd3a9",
        "description": "ci: Move -Werror enabling from job definitions to meson build script",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "63e4bdd90cc86c503a480838feab3be95acab25c",
        "description": "ci: Enable -Werror for the remaining GCC build jobs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bf480cc9c28b0c3f488eea2fac08996a74be2e1a",
        "description": "osmesa: Replace default case FALLTHROUGH annotation by following return",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2391ffc9d4b49845a60492b515d178e49dd203df",
        "description": "ci: Enable -Werror in clang jobs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d200f458751ad84aaec6015467bc8ee4efe69ad3",
        "description": "Use explicit break instead of fall-through to break-only case",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8d4c31b3c7059565f0b4e952dfa1171506cb63ca",
        "description": "iris: Drop unneeded default switch case",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a8a88a8d39982cd304808df51028e5ff14eca359",
        "description": "llvmpipe: Drop switch with only default case",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9ef53724412dc0e90bb0a207c7d86f88225da11f",
        "description": "Guard FALLTHROUGH annotations after assert()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2928c21eb73b66d22d1f383abf62de583547f81f",
        "description": "Convert most remaining free-form fall-through comments to FALLTHROUGH",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "96f0f46350715860ece0f2233a73eccf95ffba57",
        "description": "util: Remove unused Android options_tbl_lock",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7e5911846e497c373d1f68749f057d6e1fe34831",
        "description": "lima/ppir: Cast pointer to uintptr_t instead of uint64_t",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cf727e6ba44272b278e3c32536aa34af26ab1121",
        "description": "tu: Expose VK_EXT_robustness2",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0fb14420da1dad6d839f1633158890dd078eba78",
        "description": "tu: Handle null descriptors",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f58ece08da1d48eddb92678d8241d481a2efcf50",
        "description": "tu: Handle robust UBO behavior for pushed UBO ranges",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cb02a48f831da750c4124ea6fa7c95861a4f4609",
        "description": "tu: Correctly preserve old push descriptor contents",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "6d4f33e469b301b2fc4f398f62c81ef66f9150be"
    },
    {
        "sha": "c68ea960a781f1e59e906eb9c1a82330db7f2c9c",
        "description": "ir3, tu: Add compiler flag for robust UBO behavior",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8f54028479b691a217128f6154d8b641224b8634",
        "description": "ir3: Reduce max const file indirect offset base to 9 bits",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "8e11f0560e80e6057d1149bca0b40c7e88a4d981",
        "description": "ir3: Fix list corruption in legalize_block()",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "adf1659ff5f07d907eca552be3b566e408c8601e"
    },
    {
        "sha": "f601fd635bb254003bf6ac0664f70f5410497154",
        "description": "gitlab-ci: enable Intel AML-Y as experimental",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e8bc0a28a4a90793c49ab1530628f91a4daa4579",
        "description": "traces-iris: fix expectation for Intel GLK",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bed3f31fc66280b39dbba81a83fa41c2231a6653",
        "description": "v3dv: don't use a dedicated BO for each occlusion query",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a43da5c9994639820f466dfcf8a84fd5660ff77f",
        "description": "docs: update GL_ARB_texture_filter_minmax for zink",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "cca616ebd505f3480d8950ca3033d6216521a871",
        "description": "zink: export PIPE_CAP_SAMPLER_REDUCTION_MINMAX_ARB",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "92f5006814cf4a34b5cf2d034f02ccd2422e174b",
        "description": "zink: handle minmax sampler creation for VK_EXT_sampler_filter_minmax",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "22e1ed57221288e77ed58cf9f9a7f9a2e140d54f",
        "description": "zink: support format queries for VK_EXT_sampler_filter_minmax",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b62633c599f85d9f6d5923a76c04b08fa951b1a4",
        "description": "zink: hook up VK_EXT_sampler_filter_minmax",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ec70882238683a95bc93387a12c2439488e2c084",
        "description": "radv: fix barrier in radv_decompress_dcc_compute shader",
        "nominated": true,
        "nomination_type": 0,
        "resolution": 1,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "08fdaec473c9596aba2fe9947eb800b0282bdf26",
        "description": "radv: Allocate buffer list for MUTABLE descriptor types as well.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "86644b84b94910ddb78b7a1117b8bcf55bb76265"
    },
    {
        "sha": "b60bc59180abbe4277c72fb25b085896ae7744d7",
        "description": "radv: Take image alignment into account when allocating MUTABLE pool.",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "86644b84b94910ddb78b7a1117b8bcf55bb76265"
    },
    {
        "sha": "f945cca9837815fe1fb2c7eba543ee33630fc9ca",
        "description": "clover/llvm: handle Fixed vs Scalable vectors explicitly starting with llvm-11",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "917049e7d65ab6ebd2418339b4c6b4faf1325eb0",
        "description": "v3dv: fix array sizes when tracking BOs during uniform setup",
        "nominated": false,
        "nomination_type": 1,
        "resolution": 4,
        "master_sha": null,
        "because_sha": "002304482ceeb4812607e5ed8ee6bb0e1fe7747e"
    },
    {
        "sha": "e7e8464d94f0ab90d6695ac2d74e29fed87d9939",
        "description": "v3dv: fix descriptor set limits",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "cbd299b051a7a6a7192a9d87ee0a1afbbaf1d0cc"
    },
    {
        "sha": "a0152c594814c810768d7252cf0d4446b5b2f22d",
        "description": "v3dv/debug: use gl stage when checking debug flag",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "98698c4d01ffc3c14a2e7170fd0059598b04d26a",
        "description": "v3dv/debug: print correct stage name",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d510fd4736a2b93c77f003b246ffb636e68a7d8",
        "description": "ci/freedreno: Merge a630 piglit to a single job.",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "35e25ea1d07c5af7ec99c65db06010338af369aa",
        "description": "ac/surface: allow non-DCC modifiers for YUV on GFX9+",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "979e13869538e79e8b56e18dfb4e7ea8816443f4",
        "description": "radeonsi: stop special-casing YUV formats in si_query_dmabuf_modifiers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19378dfe3c2a27ab2f9ed737d5553306233faf30",
        "description": "ac/surface: use blocksizebits instead of blocksize",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6e697b595f8a46348a41be673a37bc0a39a8e032",
        "description": "util/format: document block depth field",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b26a546b2f828990c109e3fae991b5cf50c4ffdd",
        "description": "radeon/vcn: handle tiled buffers when decoding",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "029bc53be696a9387fe5ca47d6f91aef1cc5c83f",
        "description": "turnip: fix typo in tu_CmdBeginRenderPass2()",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "d52917f858f49fe13842abff7648f1490a6d52a8",
        "description": "turnip/lrz: added support for depth bounds test enable",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2161aebf8dc5d2b31a61461a7ff2255d511e2b41",
        "description": "turnip: document GRAS_LRZ_CNTL's UNK5 bitfield",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "54cf12774ae66a2c3fc354af10c061fcbfba7136",
        "description": "turnip/lrz: add support for VK_EXT_extended_dynamic_state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d6cbb73619b1244086914d2a1b83806a0482f5a",
        "description": "turnip: refactor how LRZ state is calculated",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "43ebba4e8838a63ec5b8456b4a21843b0edca4f0",
        "description": "turnip: initialize pipeline->rb_{stencil,depth}_cntl always",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "1f9fb7677bb7213e4b1b27021a8de5e02d01a5c9",
        "description": "turnip: move pipeline gras_su and rb{stencil,depth}_cntl_mask initialization",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b8403192edd267b99f0709cb73fe587c40492c5a",
        "description": "v3dv: use a bitfield to implement a quick check for job BO tracking",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9e76240f8423aa2a9522fe2792581a23f984e464",
        "description": "v3dv: optimize a few cases of BO job additions",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "493a316e4016a37b9d38fd402a890296032339d7",
        "description": "v3dv: avoid redundant BO job additions for spill / shared BOs",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "002304482ceeb4812607e5ed8ee6bb0e1fe7747e",
        "description": "v3dv: avoid redundant BO job additions for UBO/SSBO",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fa170dab4c54e38ab260f20e17ba0dcf87a67ee9",
        "description": "v3dv: avoid redundant BO job additions for textures and samplers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "e7ea5e500f6e1ca92be52735e85ae88e9f3069ef",
        "description": "intel/blorp: remove tile flush from emit surface state",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "c85ea824bcab971dc2d9052b5dc937ee4b139cf5",
        "description": "iris: reduce redundant tile cache flushes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "bfe2c5f667b594108d151e754da6289086495538",
        "description": "iris: only flush the render cache for aux changes, not format changes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed8f2c4cbee1096c67cae288b85302ffadfba2bb",
        "description": "iris: Cache VB/IB in L3$ for Gen12",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ed94528711d6584374478c76fe77f7f10b942efb",
        "description": "intel: add L3 Bypass Disable to gen xml",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "376c878c16219f3cbeffc621cec0918c0a634445",
        "description": "mesa/st: plumb GL_TEXTURE_REDUCTION_MODE_ARB through QueryInternalFormat",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b122beaff362ad9601d063b0d047b66b01df8a20",
        "description": "gallium: split PIPE_CAP_SAMPLER_REDUCTION_MINMAX into modes",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "59ad872458c99df8b99d176e23be8f1e4c200897",
        "description": "gallium: add PIPE_BIND_SAMPLER_REDUCTION_MINMAX",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "19322079026b498bd3f4a37501728edc154d008f",
        "description": "venus: implement dma_buf fd import and properties query",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "001549c92ce26e6a0cb5be85d25b3213ecbe5dac",
        "description": "venus: update venus-protocol headers",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "31782330da78e368d66c0e09e700acbccec67273",
        "description": "freedreno: Add missing foreach macros and update indentation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "9b71154353ddcfc8a0a2681671f7935f33bf2dbe",
        "description": "venus: remove vn_renderer_info::has_timeline_sync",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "37f03a2c4c5e4e2844e04042c790e7f45a64a771",
        "description": "venus: wait on vkQueuePresentKHR",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "7253e61d9d1a82f1fa0eac087a80c4a0957e1d14",
        "description": "venus: remove vn_ring_wait_all",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "f69c8f042ae0d1270894d6488a512fee0a987e64",
        "description": "venus: remove vn_queue::sync_queue_index",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "b6d819c3481d72330957c50515d0a51e6883e01f",
        "description": "venus: remove VN_SYNC_TYPE_SYNC",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "974af6df32524708bfd9b18fe720ad307a79f155",
        "description": "venus: remove vn_renderer_sync support from vn_queue_submission",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "0d848dcb0dd87dd21ad2c57efa0e522fe42ee7e3",
        "description": "venus: stop using vn_renderer_sync in vn_queue",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "6d2454ad3c11fd6e99837001e98abfcdc991706c",
        "description": "venus: stop using vn_renderer_sync in vn_semaphore",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "4ffb0265cc3b922b866ea2a10503f26a9d316939",
        "description": "venus: stop using vn_renderer_sync in vn_fence",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2a51b8cf9978b5835e6dbbe93ea0562fe1e50e50",
        "description": "docs: reset new_features.txt",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "a4f8c8ca3cb18e74a3af724ae0ebf2424b0fb9dd",
        "description": "VERSION: bump to 21.2.0-devel",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "be2d9c113b070c7783f106821d0ad558898b7d4b",
        "description": "anv: Avoid corrupting indirect depth clear values",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "ca01d68fb314507e513c6dada255a750e3774588",
        "description": "anv: Set correct fast clear value for depth during blorp operation",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "660b4d6e25011a2479538928419eed981a4cdf2f",
        "description": "panfrost: Don't advertise AFBC mods when the format is not supported",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "44217be92134b03e7426860b42918b1d4602e08e"
    },
    {
        "sha": "cd749d2c1a8563f84c1344836157aac53497ac28",
        "description": "freedreno: Manual fixups",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2d439343ea1aee146d4ce32800992cd389bd505d",
        "description": "freedreno: Re-indent",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "fdcae5b5b8925e00779ce1b4d499ca71907b601f",
        "description": "freedreno: Some manual reformatting",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "2fb3984805a4715c740e6f7847fbd6dc120c2794",
        "description": "freedreno: Add .clang-format",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "75d8998f7c8a38c2299fd8d0fa65da8e322438ac",
        "description": "meson: Fix winflexbison warnings",
        "nominated": false,
        "nomination_type": null,
        "resolution": 4,
        "master_sha": null,
        "because_sha": null
    },
    {
        "sha": "5b8a4516e6bd384ef20624624d0139931dc23037",
        "description": "aco/ra: remove live-in temporary from live_out_per_block when moving it",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7c64623e9489a37297808f7346e6e80bd1c78587"
    },
    {
        "sha": "11fde1247c291f836b28ad57984104a038e5cc51",
        "description": "aco/ra: use original names when renaming loop carried phi operands",
        "nominated": true,
        "nomination_type": 1,
        "resolution": 1,
        "master_sha": null,
        "because_sha": "7c64623e9489a37297808f7346e6e80bd1c78587"
    }
]