-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pick_status.json
15257 lines (15257 loc) · 488 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": "472a20c5fc0feda0f074b4ff95fd7c7a6305c8cd",
"description": "radeonsi: Only call nir_lower_var_copies at the end of the opt loop",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"master_sha": null,
"because_sha": "283ad85944b5d9082f0ede7ab41fb353db53fee8"
},
{
"sha": "7971918924dd84c2f33a5b7f0a8bf0c23ed994d8",
"description": "zink: reorder create_stream_output_target to fix failure case leak",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"master_sha": null,
"because_sha": "37778fcd9a352430af0cd3b28a8776479a7c8380"
},
{
"sha": "bc5c0433be806e458d0a91a9a7df342c70a5d1ee",
"description": "zink: apply viewport count when creating pipelines",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "cc939fe9b7013b8d9c043cfae3444ca0a35e5f98",
"description": "zink: correctly set up fb-sized scissors for each viewport",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "8a2ddcb4a940196a1698fe15a96963875bab47f0",
"description": "zink: set multiviewport cap in ntv when gl_ViewportIndex is a written output",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "09be30b9e4c1d9246fb2084b6f30feed35f80c62",
"description": "zink: move viewport count to zink_gfx_pipeline_state",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "818bd610992f1808f4d680a2e98aaa445dc8f442",
"description": "zink: implement ARB_instanced_arrays",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "00515517016d3759543c097db68013fe287d8342",
"description": "zink: verify that src and dst aspects are the same in resource_copy_region hook",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "6feec2d40e0acef6b2b1950fd960a9bfc84258b2",
"description": "zink: clamp min created fb size to 1x1",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "9ce1e99913dac4ccf323c786a0555e2b1e032188",
"description": "zink: use correct layer count when creating framebuffer",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "e30367a27361bc561c2d1ab513f7d522ce9ada33",
"description": "zink: use correct number of samples on framebuffer in set_framebuffer_state",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "f6c87216d3190bef3c5cbe66a934d0f72fb2fd64",
"description": "zink: use correct value for color buffer sample count when creating renderpass",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "140f53e64646668c09dd4f09d2df9c17ce5d0d5f",
"description": "Revert \"nir: replace lower_ffma and fuse_ffma with has_ffma\"",
"nominated": false,
"nomination_type": 2,
"resolution": 4,
"master_sha": null,
"because_sha": "939ddf3f67de2ed1700c093e60cf95c1b72ff20b"
},
{
"sha": "d8cdcd4adf7a1209da7afe47056118183e2b3529",
"description": "radv: use syncobj for wsi fence",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "1aa1b9f86ce89519ea0150a61cfc53c5e5ddb7ea",
"description": "radv: fix incorrect ResetFences path for WSI fence",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "90b98c06493f8a9759e5496d5ec91fb60edf7b92",
"description": "amd/tmz: move uses_secure_bos to radeon_winsys",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "24796899685c0be3cd99fef02a7ec3ebb7b1b63b",
"description": "radeonsi/tmz: add workaround for mpv/vaapi subtitles",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "2c6643546ad85f4e19aa3728a96fa4d6ddb571d9",
"description": "radeonsi/tmz: add a tmz variant for sctx::eop_bug_scratch",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "133895574c97af369a26b6ab820c65347f7042a7",
"description": "radeonsi: disable primitive discard if tmz is in use",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "8e2768bbfb1b0e9d70bb5a4d0267c6eb387d1c30",
"description": "radeonsi/tmz: add tmz variant for sctx::tess_rings",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "2589888ce969fe0254cd69c200afe535e2cdfb79",
"description": "radeonsi/tmz: add tmz variant of sctx::wait_mem_scratch",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "de088daccc2b5d0c7dca1d09d827f225ba8e4d53",
"description": "radeonsi/tmz: fail si_texture_transfer_map if tex is encrypted",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "55b018b634be8409a8a3f421082827509d23ac03",
"description": "amd/winsys: add RADEON_FLUSH_TOGGLE_SECURE_SUBMISSION",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "1b0d660cbc7a0b4e856295eeb5350dfa9b45f405",
"description": "radeonsi/tmz: allow secure job if the app made a tmz allocation",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "f5ec61767743b091e60740a1ec177829a1786682",
"description": "ac/gpu_info: add detection of TMZ support",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "846e3931428385d82ec65dc552d2b3f8dfa7cc5c",
"description": "amd: add AMDGPU_IDS_FLAGS_TMZ definition to amdgpu_drm.h",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "5e4aecec93204c832dc7756286f79fd8f1e4f8d2",
"description": "radeonsi: introduce SI_RESOURCE_FLAG_INTERNAL / RADEON_FLAG_DRIVER_INTERNAL",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "131412cc4d09d2853da9e31a30542ddb97d9e678",
"description": "radeonsi/tmz: allocate depth/stencil buffers as encrypted",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "0a59d2a3e9ed9965b303abd469065486ced5da77",
"description": "radeonsi/tmz: add safety assert when tmz is enabled",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "59b267dea4510d4b828711acb08979222be20955",
"description": "radeonsi/tmz: use secure job if using an encrypted z/s buffer",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "5bc24fe2833b1d7d5d482787c452b92b214d9abe",
"description": "radeonsi/tmz: use secure job if framebuffer has dcc",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "cec0bc73e550859635a71d330625bccdf71e87ee",
"description": "turnip: rework fences to use syncobjs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "c23206757a1821738f112b59a698d95f8526b8e9",
"description": "turnip: require syncobj support",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "89ffe859a8fddaa12c25099da30aa7008d8969e6",
"description": "turnip: add a fd field to tu_device",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "ec4fe92c834d9290e42c2e78b7b4227bfe38dbf3",
"description": "turnip: delete unused tu_fence_signal function",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "9e13a16c974b239eedc121c647f1d54a1fe4d9e4",
"description": "mesa: handle GL_FRONT after translating to it",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"master_sha": null,
"because_sha": "e6ca6e587e7f88d6b06c0a5c966438beac6cb18e"
},
{
"sha": "005d9d22190b3cc80480b98f78b7a6d7c7b979ae",
"description": "ci: adjust RadeonSI rules",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "4c71cda9abc78312442d451b58b0163ae09adb88",
"description": "vulkan/wsi/display: add option for display fence to signal syncobj",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "32d754825c45a17b60aefb45d0e0606ab1f2b6e7",
"description": "radeonsi: always inline draw-related functions that have only one use",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "f24b5894f8c6aef66adbed944ef0bfa3001a40f8",
"description": "radeonsi: lift the conditional for skipping si_upload_vertex_buffer_descriptors",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "0b2f75f9ac2ac0f7cd7755cdd0799385c86166c6",
"description": "radeonsi: add unlikely statements into si_draw_vbo",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "8ab15c9e33a71923bb1b2c338544393b0e7bcffb",
"description": "radeonsi: move si_upload_vertex_buffer_descriptors into si_state_draw.c",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "12b1e8a35d2cbbb614136d0b2b7b72c8075c5cdc",
"description": "radeonsi: reorganize the code around the gfx9 scissor bug",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "532259b8a3b8a92c79a1c6ea8d367394d1b39052",
"description": "radeonsi: don't call emit_cache_flush after uploading bindless descriptors",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "d647065b069d232ba41aa1512b5aa259feadd596",
"description": "radeonsi: move a displaced comment in si_draw_vbo",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "816a867bbd071d8b119023d6769164cdca218faf",
"description": "radeonsi: call si_upload_graphics_shader_descriptors before the big conditional",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "0051f2cb2a6092a9907cc6a491a19ce63fc5f0b9",
"description": "radeonsi: use optimal order of operations when setting up a compute dispatch",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "e560028c8e76727b6459cc9e7769200792dc68a7",
"description": "panfrost: Remove redundant casts of viewport position",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "3d0ae7a9dab839823a47da228c40935667e05ca0",
"description": "panfrost: Handle non-positive viewport positions",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "2aa48bb5a8dbf3cc6584011ee2b869c586402d34",
"description": "panfrost: Clamp uniform buffer size",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "939ddf3f67de2ed1700c093e60cf95c1b72ff20b",
"description": "nir: replace lower_ffma and fuse_ffma with has_ffma",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "f1284505f0fae78dee2af06e2d8a194d1bc5b442",
"description": "radeonsi: fuse or lower ffma optimally on all chips",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "771aad30276397d6388c147b93c9e298fe30b72b",
"description": "nir: split lower_ffma into lower_ffma16/32/64",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "21174dedec43df155309653764d76b4acd4d5f86",
"description": "nir: split fuse_ffma into fuse_ffma16/32/64",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "c58b46edf0e96f927c3d7401229479046e57dc7d",
"description": "radeonsi: force linear for textures with height=1 (gfx6-8)",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "5f27777379f5939871d4a5fdedc64b27a592d82a",
"description": "radeonsi: add a tweak for PS wave CU utilization for gfx10.3",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "b5debe180efd3a8b2cd02a3c452a8917473a312b",
"description": "radeonsi: break a binning batch on a new PS if bins can use multiple state sets",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "972fb0368cbe85d52a0f65973b76607b02a32d69",
"description": "radeonsi: move binning parameters into si_screen",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "8b134fb915d8ca5ae1aefacc25d91de88862d46d",
"description": "radeonsi: set KEEP_TOGETHER_ENABLE if needed",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "28a76161e5d4ef79381206b734e8ce415675a3ca",
"description": "pan/bi: Remove old register mode definitions",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "7a0f3b607ed5891eb980ea4fd90afd8b5c7b5032",
"description": "pan/bi: Use canonical register packing",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "514da97ccacc766eccb9a3e32ef08b6c318c9a39",
"description": "pan/bi: Rename port -> slot",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "c749803dbbed4f7bfed9e0d6298956a10e0b984a",
"description": "pan/bi: Decode all 32-bit register modes",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "bdb33f75297a04caf52774869b2206bcb4f01a68",
"description": "pan/bi: Pass 'first' through disassembler",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "4d3d5a66c92d26b092800544b2a1f168c84b195a",
"description": "pan/bi: Add bifrost_reg_mode enum",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "b392c07983441456c824688ba30b3c8e77995604",
"description": "pan/bi: Disassemble PC-relative addresses",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "08a9e5e3e892e9acc7fcfc2cefb45990efa62e40",
"description": "pan/bi: Decode M values in disasm",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "9de34e16e0e0d6af8bdcb906961320b46d08ff1b",
"description": "pan/bi: Track M values of disassembled constants",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "43c6623c9eb106ef54191b7f404db669f8c9aec4",
"description": "pan/bi: Inline dump_instr",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "5ff3feab88a1e8b187267bdfbbae86d45a87b489",
"description": "pan/bi: Annotate disassemble with format names",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "ab5cc3e717dc7cfe26127cb206b5305fb8a35f45",
"description": "pan/bi: Annotate stop bit (canonically \"Z-bit\")",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "24a74b352c8f2c06e47ce32192df5cbe125e77d7",
"description": "radv: add a tweak for PS wave CU utilization for gfx10.3",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "6865a6a74cf4b55e289786dfe303c35dacffed3b",
"description": "radv: set KEEP_TOGETHER_ENABLE if necessary on GFX10+",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "68bb91ee11125c563ddaaa7580f351a27f85e1d4",
"description": "radeonsi: don't use nir_opt_access",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "87f91e20143eae314c2a93b7f676413a08cd5c11",
"description": "st/nir: call nir_opt_access before gl_nir_lower_buffers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "e893102bcf5d6632f36399d745481639344e5526",
"description": "radv: Add VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 rendering support.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "43735c06df439ec5c1254c153a21813c5b230094",
"description": "radv: Simplify radv_is_hw_resolve_pipeline.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "bf0c82b7f8cd8acece2adf63a32590711015864d",
"description": "radv: Disable NGG on APUs.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "12128fb1351eee6ec681039fe8483b3c39db7c8e",
"description": "lima: add natively supported vertex buffer formats",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "c669db0b503c10faf2d1c67c9340d7222b4f946e",
"description": "radv: advertise VK_KHR_copy_commands2",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "0401507b77db041cf1364dfd37973bf3bd2597e0",
"description": "radv: add support for CmdResolveImage2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "9a700af65cf8d34b44dae1fbf2cef9d5a8f7d7d1",
"description": "radv: cleanup selecting the hardware resolve path",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "fe819710adcc337ff87bb8eca259f0235ba9a1ed",
"description": "radv: add support for CmdCopyImageToBuffer2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "f9915ac465b2926df8f12a7221062e42e57cc494",
"description": "radv: add support for CmdCopyImage2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "69dfcfbb24af13a32a58aadaa231d10238d8f1cc",
"description": "radv: add support for CmdCopyBufferToImage2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "22a08da7370e581d71a8c19dee028be4c7c07a86",
"description": "radv: add support for CmdCopyBuffer2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "eccc73ff780da0380067690f81ca9db93d67b66c",
"description": "radv: add support for CmdBlitImage2KHR()",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "cc709a07f27c6d0ac2b8a8c98a15fb00014a8efc",
"description": "radv: add VK_KHR_copy_commands2 but leave it disabled",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "93f158fa2ea6f05cd96304a48b8eeb7c6ba1173b",
"description": "radv: bump the advertised patch version to 145",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "43c7de6b910d965962d83877eb9560a027c1350c",
"description": "radv: remove useless assignment of MAX_API_VERSION",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "e8a40715a8bcd479c0c33eab411d276777153a0e",
"description": "gallium/util: add blitter-support for stencil-fallback",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "2970d388a2a956b6c2571dccc2612d71aa666612",
"description": "gallium/util: add shader for stencil-blits",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "924e27647e47d51111bca12bce470aba4fd85e37",
"description": "nir_lower_system_values: Fix load_global_invocation_id to use base_work_group_id even with no base_global id",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "ee4cee6dbdfcafb0ec88fe010d4ae05ce06e2e52",
"description": "android: Disable trying to read/write to the disk cache.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "25b36d900acb0d3d923bd0b99a6d8443b4616c73",
"description": "mesa: Make the android_stub be a set of non-installed shared libraries.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "283686ad6762182037b708f1b5187129aff0a5dd",
"description": "amd: add VanGogh support",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "d7495bd123a6215f85a5b9a01e2c3ab5bc203c53",
"description": "amd: add Dimgrey Cavefish support",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "40a50e939851c7b1a3c7d3fe92bf7706a1f28025",
"description": "radeonsi: remove KILL_PS_INF_INTERP/CLAMP_DIV_BY_ZERO, use screen::options",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "98188409d115d08f3b4e99cdb942118acdf71513",
"description": "radeonsi: move debug options from si_disk_cache_create to si_get_ir_cache_key",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "cd12fcff96cc7db794047e2a045142ea861254a2",
"description": "radeonsi: set TRUNC_COORD=0 for Total War: WARHAMMER to fix it",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "a1f46d7b6943699e5efb60fbcfdd1450db85adb1",
"description": "ci: Use ignore_scheduled_pipelines anchor in .radeonsi-rules",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"master_sha": null,
"because_sha": "6c8b921572a542f5de62475a76501a9db73dae4d"
},
{
"sha": "e781cc702557f1102fc6253f5654696490742e06",
"description": "tu: Expose shaderStorageImage*WithoutFormat",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "37054a3ef5d2d177eac90e24852742a04afd3dd4",
"description": "ir3: Don't use the format to get the image type",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "6ebc20fd884153db7cb9390692190664d993b640",
"description": "tu: Expose shaderImageGatherExtended",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "205f4e9a577ab9eef5a22b7857e877c35bd75fec",
"description": "tu: Expose shaderStorageImageExtendedFormats",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "5d3a72cd61702633bb58e53bb98a93c0d087e25b",
"description": "r600/sfn: Be a bit more verbose when logging skipped FS outputs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "2abb9e5ac09c76dd56431e9623c71f7146e4ccb6",
"description": "r600/sfn: Acquire the number of FS outputs and the write_all info early",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "c2c5f71e962d4035cea89e72fb782cc759a27a95",
"description": "r600/sfn: Take dual source blending output indices into account",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "44b45a38649e504ba46cd21a4a6ea2c6c15b4812",
"description": "r600/sfn: Handle number of color outputs taking dual source blending into account",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "234891cc042b9e88dcf512ef9f4db6b6e557f957",
"description": "r600/sfn: Keep info about dual-source blend in FS",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},
{
"sha": "0a59530d0db817a1431c4f6d9075767bcf4a76d2",
"description": "r600/sfn: Sort the outputs of the FS according to data index",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"master_sha": null,
"because_sha": null
},