forked from maurossi/mesa
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.pick_status.json
5843 lines (5843 loc) · 185 KB
/
.pick_status.json
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
[
{
"sha": "97be8e42e42f3b739c3de808553094f86ad8879f",
"description": "intel/disasm: fix missing oword index decoding",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "daba2894ffc3000b76ff5f3d8c767119d6a8eeae"
},
{
"sha": "b4e5bf0637e10d0f7c191d4772f06d0432d87415",
"description": "clover/nir: Set constant buffer pointer size to host",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "7c6f1d3bf9903fe403b31a995c4dfce726fd3a27"
},
{
"sha": "54dcccd535cd8c2ba35ab2a68a9b784f3eca7a1f",
"description": "clover/api: Interleave details in dispatch table",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a6c26a6ad94d16ad044c3b64d72ff9daf863b3be",
"description": "clover/spirv: Properly size 3-component vector args",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "2147386505015e3089d51e3e5bf58489ab912aa6"
},
{
"sha": "f69d1c1c56138093ccba2490b3c2b4fb359d43ec",
"description": "clover/spirv: Increase max amount of function args",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "5ffe059fd2c373734c91e85bc809a6cc32ba8f3d",
"description": "clover: Local memory needs to be aligned.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "8061dfef6bf6f524712d13bba9adfd4dcbc73eb5",
"description": "clover: Do not advertise OpenCL x.y when unsupported",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "cd79351f02af898b0b01997f0b8b77007ed88135",
"description": "d3d12: split up root parameter update and set",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "12082905582fe291da939f024661f2c505111dc2"
},
{
"sha": "06edc6adc88bfa5a5df7cd2756225671471fef37",
"description": "ci: Use crosvm to run dEQP tests for virgl",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "481e7508becf1ac639e942cf2a56eb28b8f46b3b",
"description": "ci: Increase crosvm version",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "0da2ebff274ba9e4c34da3ec3af5ee9e80bdb5f2",
"description": "ci: Increase the default Rust toolchain version",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "33d9954bc120e6122b8f2417b5aaa34359b269b1",
"description": "ci: Disable llvmpipe optimizations when running virgl CI",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "10541d1fade07e57441b591a36b0bf02f5eca299",
"description": "gallium/hud: initialize query",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "c91cf7d7d2c8cc377945c79be87799c31ce9ae59"
},
{
"sha": "ad83c06a5f880a1d836e17ef76e7382eb9b6222b",
"description": "radv: fix missing cache flushes when clearing HTILE levels on GFX10+",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
{
"sha": "ebea075feb820fb4e2118690da8258aa830ba3a3",
"description": "radv: fix selecting the first active CU when profiling with SQTT",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "d26bcc0f5cba8e578ba0e1f052e76abf61919ea8"
},
{
"sha": "f395057a82801b252d9455f89d2c8e6d8e9d7ed6",
"description": "gallivm: remove pointless no_filter_hacks flag",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "4f56ded36263bf18545627764d5af63194bb8ec8",
"description": "ci: Stop disabling filter hacks for llvmpipe.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "34423391e02a148518a4e9f640d61c609957282d",
"description": "gallivm: make rho-approximation opt-in instead of opt-out",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "6538b3e56614914dd47ee7822586ba1b91d785f2",
"description": "nir: add heuristic for instructions in loops with GCM",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a7f2e683ded4387febd8529bb0a3fa8c691fcce4",
"description": "nir: move nir_block_ends_in_break() to nir.h",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a9ed4538abf1247b82adce5cfff9f2bde0b76a05",
"description": "nir: add indirect loop unrolling to compiler options",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a654e39f1559edc06eb12bdd6f2372694dcd8911",
"description": "intel/compiler: make sure swizzle is applied to if condition",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "1edf67fc3f6b944935506146de02348afa1003ff"
},
{
"sha": "4f7043fc0ce158a5f555b6c0ec7f9818a60b8ce4",
"description": "v3d/simulator: implement performance counters",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "685281278ebd39114c3007e76443eaaa66cf8335",
"description": "v3d: implement performance counter queries",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "e928aece5087e8d70bef5ad7d21bf264f52e4d47",
"description": "v3d: add fence wait function",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "c59d8a179831fa9fe867c3547839e95f41774b8f",
"description": "v3d: move queries to pipe queries",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "9969703547244b4b3aee4f940c434bca9d6e4c36",
"description": "v3d: attach performance monitor to jobs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "6b9fcb01930c80436bb492f2f0b37ba65405a1ea",
"description": "v3d: check if device supports performance monitors",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "ca13868098ebadb4c65c01e122f3ff4dde726186",
"description": "drm-uapi: add v3d performance counters",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a49b397041244e5fdbd04c5c9576feaf75682ab8",
"description": "ac/surface: implement CmaskAddrFromCoord in NIR",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "eedc0b59b710c9e7c284e3ceaae5a43e2f19bcb0",
"description": "ac/surface: copy the CMASK equation to radeon_surf",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1f12c3ccc1db533485a020af1891d1ecd65ad12b",
"description": "ac/surface: store CMASK pitch and height to radeon_surf",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "132b2055662d3c1b1f1e1afde5173cbbc4eda641",
"description": "ac/surface: add tests for CmaskAddrFromCoord prototype outside of addrlib",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "96e12644f3a8e7bd594ba9177630810420e7c36c",
"description": "amd/addrlib: expose CMASK address equations to drivers on GFX9",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "501db877793f848d3cedafdd44717c09cba3e99e",
"description": "ac: introduce a structure to store DCC address equations for GFX9",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b705114d9cde511b7fba140fda0a78d69ccda57f",
"description": "iris: mark the workaround_bo as asynchronous",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b9129496a295f3aef7d96540556eced25961f66a",
"description": "freedreno: Unleash the dragon!",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "8813dfab8306dc63cbe0b71eb7513964fc0ba02d",
"description": "freedreno: Support per-device driconf overrides",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "7094cc78a442eacabd68b22e9ca8468c1437075e",
"description": "driconf: Add force_gl_renderer override",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "6edf0d8e9022e0072c0ed5c3ce78fdca528c4cb4",
"description": "driconfig: Add support for device specific config",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b080aa94664e23b4be4f565e442eac0292fd3e9d",
"description": "gallium/driconf: Allow the driver to parse the driconf options.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "fdf9ebf317da2607f9d4315998439f4713cad0cb",
"description": "gallium/dri2: Make dri_init_options just init DRI options.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "23a9339985d37db8c94fc71fe5ee6a11d368a1b9",
"description": "v3dv: Implement VK_EXT_custom_border_color",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "0a464f2e076b1ec54add863d7c5a3d7fc39b4ff8",
"description": "v3dv: Add is_unorm, is_snorm and is_float format functions",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a753f50668e9b97351f30ac985202bcfcd10fb7f",
"description": "venus: break up vn_device.c",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "22cb100ea0a26ca8083c3e30bab4268750ffba4d",
"description": "venus: break up vn_device.h",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "4b364ab4bcd70c821c6830e1a4858a2a7ce143da",
"description": "venus: update venus-protocol headers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b4214adefc3ab5eb5e6bc456413cb2449d98a444",
"description": "iris, crocus: add idep_genxml to per_hw target dependencies",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "521651d1064a42feb9d21fc1799479619ce50729",
"description": "st/mesa: remove st_vertex_program::input_to_index",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b5c9a695b95b159ed63b8315266ecc2e2e6afdf3",
"description": "st/mesa: remove st_vertex_program::index_to_input",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "77c2b022a0c52d84b289bc836f30ce186a374d0d",
"description": "st/mesa: remove lowering of 64-bit vertex attribs to 32 bits",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "8b6fd3f786d3cf1d9b1ee1dc5be1c8cb885ed77a",
"description": "gallium: lower raw 64-bit vertex formats in cso/vbuf instead of st/mesa",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "7b23b7c88e5de2a542cfaa2d99c40aa1a2547c5c",
"description": "gallium: add pipe_vertex_element::dual_slot to move lowering to CSO creation",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "4a713c568bbf1bbd82d59900007bc71f0f9d5c10",
"description": "gallium: add multi-component 64-bit UINT formats for raw double vertex attribs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "e002f5a086c7fc8314d3c28a603875f5ec5e5cef",
"description": "gallium: change pipe_vertex_element::src_format to uint8_t",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "df5a2bbb41552cb030000ca4421fd1a4036ca974",
"description": "shader_enums,mesa: move VERT_ATTRIB_EDGEFLAG to slot 31 for st/mesa",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "842b8c8965327615f4692384a905dd63f1fba63d",
"description": "crocus: add support for set alpha to one with blt.",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "f3630548f1da904ec6c63b43ece7e68afdb8867e"
},
{
"sha": "de625dddeea4c134a713a96efa4fd8d19fdee823",
"description": "intel/genxml: fix raster operation field in blt genxml",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "4d80ec8fcfaad3f8e29aeb1f2e07042333ebcb6b"
},
{
"sha": "c12444ab8894e7d755401eb26523bb0e2ae63697",
"description": "crocus/gen45: fix mapping compressed textures",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "5bf6ec31ccf6c24a407df9443a534f8036d26861"
},
{
"sha": "48980b7b7a9f03da5ce33ac4c4de9fd33c7cfced",
"description": "lavapipe: Fix 32bits windows build",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "94a4982805164f87ec5ad7cb22251315c0577d71"
},
{
"sha": "c2a614375598953906c7ea9c9658314d939cf1ae",
"description": "turnip: Fix assertions on checking mutable combined samplers support.",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "ee3495e46504d93c019bb3406a89deaee8a4c774"
},
{
"sha": "ea7a42775bd6e4d02d5e7c99c03ed5b08da98b1b",
"description": "turnip: reduce maxComputeWorkGroupSize",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "e08960482a1330f93d6c6c7b0654b08bc29537f0",
"description": "venus: cache ahb backed buffer memory type bits requirement",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
{
"sha": "5ed5d08141a49486344b3d79d85d1770631b3b6d",
"description": "genxml/gen125: Update debug register fields according to HW",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "910d5f19730103130c17612bdcfe42695b367554",
"description": "genxml/gen12: Update debug register fields according to HW",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1ff53359cb580d7a63af9a2c67e122b84a328778",
"description": "radeonsi: add expected tests results for Navi10 GPU",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1c8f23cf9365d5c9b1c74b98ba82bed1dd441346",
"description": "radeonsi: add a script to run piglit/glcts/deqp tests",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a6110f3c3aad6e73523040bb71f60c1b4a3209ee",
"description": "ac/nir: Remove unhelpful nir_opt_cse from ac_nir_lower_ngg_nogs.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "da9f4b2e6780525846ee7c7aa376583fcaa4021a",
"description": "nir, aco: Remove vertex and primitive count overwrite intrinsic.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "4b540aef2cf837f1f6e31bf96f09f7b3f7df7f3d",
"description": "ac/nir: Don't count vertices and primitives in wave after culling.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "a2d02c0c11009a7018e9760ed44d38131ccfd195",
"description": "ac/nir: Use gs_accepted variable after culling.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "8159868699c1b64ed7f3935b57c890908b66e897",
"description": "ac/nir: Use es_accepted variable after culling.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1bbea90f50947f208d20a725e8043a73ce7494c2",
"description": "aco, nir, ac: Simplify sequence of getting initial NGG VS edge flags.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b157a5d0d68ee8a1b4cb862a56b97bd881841413",
"description": "tu: Implement non-aligned multisample GMEM STORE_OP_STORE",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "7948c4b0b43a2a0c15c834f1e066c1e5262146b8",
"description": "tu: Make tile stores use a dedicated CS",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1815a76e3d7dd1b05da360f177a22e36f202748b",
"description": "v3dv: handle IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "98044fd7e3111fef3ccb225b01c857268c4a7aa5",
"description": "v3dv: fill in drmFormatModifierTilingFeatures",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "0460f01fdc0c13deebf0d9bb8ee2a6ec5a74ffec",
"description": "ac/llvm: implement v2f16 fsat",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "b83da28863cf427e329c4799ed39f1588affcca3",
"description": "dlist: implement vertices deduplication",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "e012b34e610f2ef64ebf97227e6c16339ef14136",
"description": "dlist: upload vertices in compile_vertex_list",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "f86faee9f4925c0c90ef27518c570a4282b46d4c",
"description": "drm-shim: implement stat/fstat when xstat variants are not there",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "027095065dfb79c05f08e8da2052c407c4d66aaa"
},
{
"sha": "5cee8434fd281ddae949883738e58e83cd577bfc",
"description": "mesa: Fix tiny race condition in _mesa_debug_get_id",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "5ffbee84a4b9ccfb9ba1cb7d054590cf4030353d",
"description": "intel/compiler: Add id parameter to shader_perf_log callback",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "043c5bf966a276c02c536846f44a1335e082789c",
"description": "intel/compiler: Add id parameter to shader_debug_log callback",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "42c34e1ac8da3a000087c02cfd9f6fcb83e84fbc"
},
{
"sha": "80160a67ab1700aabfcc0aa2c58b0fc73fdbd925",
"description": "meson: dont use missing dumpbin path",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
{
"sha": "a2b37e95926f52b597dd0cf440092bd296efa434",
"description": "pan/mdg: Analyze helper termination after scheduling",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "9a7f0e268b7baeb92d8d7d2989beb43550262406"
},
{
"sha": "e79a78a16ff0cdc7bc9d3d5c9e42cc530588bc46",
"description": "intel/decode: add gfx4 vertex shader decode",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "0dec873f2a6f6107de4f5ffc47d337e8a5f2c842",
"description": "intel/decode: add gfx4 constant buffer decode",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "490d09f1a4971cae64ba393a27fc3ce52794a686",
"description": "pan/bi: Fix infinite loop parsing arguments for bifrost_compiler",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "c6be4f85e3c443f4ec46e60e25054601e8af979a"
},
{
"sha": "1acc3394c434891233cb67fd587f6cbbf2677514",
"description": "pan/bi: Use padding bytes for checking whether to stop disassembly",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "8574ca4491815647e69ff529d8c81391080de4c1",
"description": "pan/bi: Print the clause of branch targets",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "f5b9d16823a72a4e6bd1cd594f2e8b7729f750bf",
"description": "zink: add locking for zink_shader::programs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "5c8673d67fd9fb9bf8b4bc8392aea7337c17bc69",
"description": "docs: update calendar and link releases notes for 21.1.6",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "ffb95954bf39c27e6398b5d887d6ef5e9d754c28",
"description": "docs: add release notes for 21.1.6",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "dfccbdff98116778f3ae429729e2d974230ff8af",
"description": "ci: update to VK-GL-CTS 1.2.7.0",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "6336df3a6266a30101ec81aa5b8af58de85dc156",
"description": "ci: Re-enable piglit trace for virgl",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "86250c7251b5652acc794a8b0efe2ad98cfec840",
"description": "zink: make codegen compatible with python 3.5",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "f1432fd3e2d915f09a295f1ffb878471ce4e4d73"
},
{
"sha": "57ff4caf7f02691ab9fc9d8e88cacbfbd1919c29",
"description": "radv: init radv_image::l2_coherent when creating the layout",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "87b0962fef4e447a2ea9c76a611aa20b109a259d",
"description": "radv: do not use radeon_set_context_reg_seq() for only one register",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "f693b94d2fac4590475a4ff95deab3c639cc14b4",
"description": "radv: reduce number of emitted DWORDS for contiguous context registers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "4374e7fb4598dcf09a6a8c137db854fc4f5ab328",
"description": "vulkan/overlay: Fix violation of VUID-VkMappedMemoryRange-size-01389",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "175bc33da7a722969d17ae377e019c4e40725fc6",
"description": "gallivm: let nir_lower_tex handle projectors",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "3914bd457b6e91c805a6ed9977ed984205f8acae",
"description": "amd/registers: fix fields conflict detection",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "e6184b089240b76942650e847b8a4879821caaa6"
},
{
"sha": "2ea88d7cea070c3288c252064cae9236bd462646",
"description": "gallium/va: don't use key=NULL in hash tables",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
{
"sha": "f376597d00d732778c446179b13033695ebec079",
"description": "freedreno/ci: Move rules for restricted jobs to test-source-dep.yml",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "92f9141f009f9ffe98bea42ba002a8c4bd7a74bd"
},
{
"sha": "c8783001c7350960a63bff0dc93a4e744c22b911",
"description": "intel/fs: restrict max push length on older GPUs to a smaller amount",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
{
"sha": "d9a4a0aebd7bef166b5a89ce398e91a371dd0d0d",
"description": "tu: Handle multisample vkCmdCopyColorImage()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "1e29f57b3ac4ec6560d0d355576be3cd784cf131",
"description": "pan/bi: Validate the live set starts empty",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "7d60a8881d7d37812d532db5b5a91fcc8d3eb9aa",
"description": "pan/bi: Stub 64-bit in count_write_registers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "502ffe6fbf3e96a72fd3533e41aea26f3b6f570b",
"description": "pan/bi: Handle asymmetric staging in bi_count_read_registers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},
{
"sha": "e3f14b9850e4452742aab7e08f725a4b8858904a",
"description": "pan/bi: Add bi_entry_block helper",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"main_sha": null,
"because_sha": null
},