-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pick_status.json
23514 lines (23514 loc) · 760 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": "9f44a264623461c98368185b023d99446676e039",
"description": "nir/divergence: handle load_global_block_intel",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"because_sha": "dd39e311b336dddcc7343c5119ce05af410d8dc5"
},
{
"sha": "a501b3b614ae52121170ca60aec574251f889be1",
"description": "ntt: Split 64 bit vec3 and vec4 local variables and phis",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "496fd59d711b9a0744878918caeeaafb961e3deb",
"description": "nir: Add pass to split 64 bit vec3 and vec4 variable access and phis",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d48c10fab38217264045064b3f48ecac0c24b7bb",
"description": "r300: Print warning when stubbing derivatives",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"because_sha": "e1c640c3a43d741719864b35cbf855aa82be0611"
},
{
"sha": "68e8f00c441dc38f5a18a4aa5a30916c53fc986f",
"description": "ci/zink: Add glx-tfp to skips",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "c9214768faa8b411da1ec5affb6760792865c381",
"description": "radv/ci: add a Van Gogh dEQP runner",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "669a3f399121c26429c40cb1a5827911373b5bc2",
"description": "ci/b2c: update b2c to enable monitoring support",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "e38d23a39654cfb3b070f9bfd5360f8da59d8f8d",
"description": "ci/b2c: bump the kernel to 5.17.1",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "c672464844eb47d6cebd6f35d28bcc66c6bd90df",
"description": "ci/b2c: fix the generation of the IMAGE_UNDER_TEST variable",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "7d474c100e159393dce471f64b08e8f3b3411b9d"
},
{
"sha": "ea7cda93f3db9863e678ae9e5808a44ee6583698",
"description": "misc: replace `#ifdef\\s\\s__cplusplus` with `#ifdef\\s__cplusplus`",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "9aa094d1b1184026fa0e18a8967c32baa1a5922e",
"description": "misc: Replace `#ifdef\\t__cplusplus` with `#ifdef\\s\\s__cplusplus`",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "30aab0af07c5bcfab7f0341bba815162ee5f2049",
"description": "nir/lower_int64: do not try to clamp floats to int-range",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "25acf1d8697ae62a2eead1bca9e5f8ca6eb2b372",
"description": "spirv: fix OpBranchConditional when both branches are the same",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "64cb143b922b4c074a8404359e7ed9b790941744"
},
{
"sha": "4b7ba3869be3f706efc717d40535c61d5c7a20c7",
"description": "util/stencil: fix stencil fallback blit shader texture types.",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "f05dfddeb1adad9f6d4ca18f5e066b3ae23d3e28"
},
{
"sha": "dbc264f50418306650e9ec5a0b8613fe0aabb228",
"description": "u_blitter/stencil: take dstbox x/y into accounts for dst fb width",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "b4c07a8a87d06f2c347f204cac9fe708428e272d"
},
{
"sha": "e0e5cbd5a4a5edc442e2b7277b5893a7fbdfd597",
"description": "pvr: replace p_compiler.h boolean with stdbool",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "ec4baed0eeff7c679c213b4a97bfe885cfb910e9",
"description": "ci/windows: Eliminate duplicate script definition",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "0606c7b0dbc6415811ff3ddf87c2185cae1e48e9",
"description": "ci: Also disable Windows container builds when down",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "f2ddd59bf68271ba744738d28e705ecacfc9f1ea",
"description": "ci: Allow lima jobs to be globally disabled",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4300b5d914719a1af975ef4766b311d5261f4e2e",
"description": "dzn: remove stale cpp_args",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "85d0d3fede5f140debbae1790777088a6ee7a1d7",
"description": "dzn: fixup indent",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "dee89ea027a27576dd901ef3c34abd0882ac8078",
"description": "dzn: drop needless enum-casts",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "785b6579ae55e1320aa331de945366e18f41bf12",
"description": "anv: Fix geometry flickering issue when compute and 3D passes are combined",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "3501a3f9ed92831ed039f0d54bf295af41ed0195"
},
{
"sha": "f854e6ec9bc9e1af6689072713baf6a4238c9118",
"description": "dzn: add space before += operator",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "52cde4a1ad870848f5fc9b4ccbfd5264e5525018",
"description": "dzn: clean up pointer syntax",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "92964d2bfdd66341d7a3981934dc55eb2c528005",
"description": "dzn: remove some needless casts",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "b8d41d5919a4216898f5f42938a312b6ce79a227",
"description": "dzn: Add support for KHR_descriptor_update_template",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4da5524c9b43b488f7572a3516a8fa045a456cd4",
"description": "dzn: Split the write desc helpers in two halves",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "31dc341f3aa10d0e6f5a2164d6697ab26c920b99",
"description": "dzn: Pass layout objects to various dzn_descriptor_set_ptr_xxx helpers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "fe68cfe82aecf23df89731ac9965703bb2a2828a",
"description": "dzn: Rename a bunch of dzn_descriptor_set helpers",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d257494ec4d826aec8841845479215820e612917",
"description": "intel/dev: Add device info for RPL-P",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"because_sha": null
},
{
"sha": "3af6631c6d1c88d7efc4709f7e0a52aff09758f3",
"description": "dzn: Add support for EXT_vertex_attribute_divisor",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d01a149b8b46fe33ae16ff0f43d31c2325a3e5b2",
"description": "ci/windows: Split the windows-related tests",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "cf930db39cd4126e5ca242edc49181fb25fa5c16",
"description": "d3d12: Move the D3D12ResourceState code to the gallium driver",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "5c4906dc0f0b9609760dc0a18805045e568b2d0b",
"description": "crocus: export GEM handle with RDWR access rights",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"because_sha": null
},
{
"sha": "092ac67bb9f34091844932d662bbf1f0fa5b3ccb",
"description": "zink: unset PIPE_CAP_MULTI_DRAW_INDIRECT_PARTIAL_STRIDE",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "0f28da9cd4779f705ebe18061e98e9e53be5c1ff",
"description": "gallium: add PIPE_CAP_MULTI_DRAW_INDIRECT_PARTIAL_STRIDE",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "ec124916206fbae63ee9e3c2c73de8255c807c98",
"description": "util/draw: fix indirect draw count readback",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "3eb99323172902d34c80782aaa2d110567749cd9"
},
{
"sha": "07437fa3bdd88a51c497aeaa7ee4dce8c2724579",
"description": "util/draw: handle draw_count=0 when reading indirect parameters",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "3eb99323172902d34c80782aaa2d110567749cd9"
},
{
"sha": "efca37d4154496f9318064ff40e931233a4e5748",
"description": "util/draw: fix map size of indirect buffer in util_draw_indirect_read",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "3eb99323172902d34c80782aaa2d110567749cd9"
},
{
"sha": "31727f114a909d2ec84a943de0340ba48c6a2915",
"description": "venus: use linear modifier for legacy common wsi path",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "09cee71e80d26671d3ab6374a7a2535885c497dc",
"description": "venus: override aspectMask for internal tiling modifier",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d7256043b3ac3652a070ed0384db80effc99ed96",
"description": "zink: handle device-local unsynchronized maps",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"because_sha": null
},
{
"sha": "e509598470c000498c3e1328e012142d9047e292",
"description": "zink: remove xfb_barrier flag",
"nominated": true,
"nomination_type": 0,
"resolution": 0,
"because_sha": null
},
{
"sha": "fc5edf9b68159288baa22c055e471de958812312",
"description": "zink: fix xfb counter buffer barriers",
"nominated": true,
"nomination_type": 0,
"resolution": 0,
"because_sha": null
},
{
"sha": "a056cbc691843861da417b5bcea9f871fdceeb19",
"description": "zink: fix synchronization when drawing from streamout",
"nominated": true,
"nomination_type": 0,
"resolution": 0,
"because_sha": null
},
{
"sha": "dd783d7144932d79ef761810d46e45c3df7148cf",
"description": "zink: nv ci update",
"nominated": true,
"nomination_type": 0,
"resolution": 2,
"because_sha": null
},
{
"sha": "7af76d1aaec345dfb934ffd0c184f455f190bcf0",
"description": "zink: NV_linear_color_attachment",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "373c8001d6615d70d112c7526ea4f4953257b6b9",
"description": "zink: set VK_QUERY_RESULT_WAIT_BIT when copying to qbo",
"nominated": true,
"nomination_type": 0,
"resolution": 0,
"because_sha": null
},
{
"sha": "02370e22f7841d84a4e6dc74a4f8c45fcf958832",
"description": "nir_to_tgsi: Make vec_to_movs avoid unsupported coalescing for 64-bit.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "cfbdbbfcab32ce0cadc5f5ad7058a6a0e6d3c258",
"description": "ci/dzn: Cut the runtime by running 1/3 of the enabled tests.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "b8fd1e8844f46c830aed455feb891790600e5ba2",
"description": "dzn: Report actual device limits",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "6c877cb00f4c5469e78fab73f36478ddfae826c2",
"description": "dzn: Use core helpers to fill physical device features/properties",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "69e3f35435c7ee1468729dba9dbec6651a71eb2f",
"description": "gallium/ddebug: implement pipe_vertex_state callbacks",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "f29706a25fb6315e603c5cbcc15dcc2cde28738c",
"description": "nouveau/nir: Set the input for vertex/instance ID like TGSI does.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "801dca3c400547c20f5cf16fe3a240a09ffc9f03",
"description": "nouveau/nir: Fix edgeflag input detection.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "af718674ab50eebd2a97b85455214bda3864fb1b",
"description": "nouveau/nir: Fix the inverted sense of usesSampleMaskIn.",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"because_sha": "9f3d5e99ea601ae4bc492ff47738290eed520651"
},
{
"sha": "d9b6b2acd7b4f81e315e762ed1248edf3039519c",
"description": "nouveau/nv50: Set the primid sysval flag if it's in the sysval list, too.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "814b0edae5a76ab4bc5f9d7673adc81f70c77178",
"description": "nouveau/nv50: Enable mesa/st alpha test lowering on nv50 with NIR.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "6040107dc1e8374b7be60c0f9704fe593f00cd9b",
"description": "nouveau/nir: Disable bitfield ops pre-nvc0.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "adb6d7fe9add275a73b593a6e5f7445a952c7305",
"description": "ci/nouveau: Add nv92 xfails.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "ea5873f787c8cbc4c135819cc9639b057701de26",
"description": "ci/nouveau: Add expectations files for GM206.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "c0c198ffc14e646f10c8dd7e8468ff01650d65e8",
"description": "nouveau/nir: Split fewer 64-bit loads",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "1b32d4b7d446238e0c39758f0713204776b74a17",
"description": "nouveau/nv50: Print the number of loops in shader-db output.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "a4840e15ab77b44a72cabd7d503172e8357477eb",
"description": "r600: Use nir-to-tgsi instead of TGSI when the NIR debug opt is disabled.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "0879c15666b5f3a9d53a8431c078ab8520bb6932",
"description": "r600/sb: Avoid causing an exception when getting the reciprocal of 0u.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "25836895f3d57dbfd4d13572c4bb8f2ea5938408",
"description": "r600: Fix reading back from a temp array immediately after writing on RV770.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "26189cdb1d2e66f1ddbda0a432bf875a7afd9339",
"description": "ci/r600: Manual run updates.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "04a6d7b380005283127a6586fded0aa6abff7846",
"description": "r600: Fix up some mis-indentation of blocks.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "dab745f3b4daf87902a42abd4a531ad90d7039ef",
"description": "nir/copy_prop_vars: fix non-vector shader call payloads",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "ff05137c2dbf9c6b8e5d4ce31063516e5c04569f"
},
{
"sha": "f01e3400dc996e37376ce558b067d8e08db8eed7",
"description": "CI: Disable Windows jobs",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "14c195a05578aebf6cdfeff8317b1e72add95fcc",
"description": "ci/windows: Add a variable to globally disable jobs using windows runners",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "1b8a43a0bafd8c1d50b6fc840fadce8dfd7250de",
"description": "util: Remove util_cpu_detect",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "90a0675989b86ff00b8e517e9fc184d35517692c",
"description": "nir/lower_alu_to_scalar: don't set the nir_builder cursor",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "5f09ee77a1550b77a0f13ba406ffbba68581e33d",
"description": "dzn/ci: Don't spam conformance warnings",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "7f01299c40ef5d301bbbb99fc6a6420aa27a65dc",
"description": "nine: Disable optional use of TTN when MUL_ZERO_WINS is available.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "09fd1e94fd8b785f583ccac88cc211e3ab774a86",
"description": "tgsi_to_nir: Emit load_ubo_vec4 instead of load_ubo on non-integer HW.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "535f0b9391446d49e3cb8bea33be6c5afc006a5a",
"description": "ntt: Add option to not optimized register allocation",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "b043d4c4c64a092c4cb352ce93fa9cef57814226",
"description": "lavapipe: run nir_fold_16bit_sampler_conversions",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "27a43b531bff9493be8c873533c73e5f999dd1e7",
"description": "nir/fold_16bit_sampler_conversions: add a mask for supported sampler dims",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "324b2ae5f234f67b279bfb342ab3594a9a836457",
"description": "radv: Enable rt primitive culling for spirv2nir",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "c8fe408fcc77cb38654770affaea71a3ab67799c"
},
{
"sha": "b3896fa8c7129fa91a181c49c7eb43e99c19f7ad",
"description": "radv: Do not discard hits with t=tmax",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "a468f26ca5ee55e03cd9eae9cdbacfcb0bf6f470",
"description": "anv: implement VK_EXT_primitives_generated_query",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "30daa7d6d8b6f47f5d1bb9e73c157ef8e314f33e",
"description": "tgsi: Emit ureg HW_ATOMIC decls in range order.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "73e1a54623ab4de4b1a359ee4e456960de4a9fe1",
"description": "nir_to_tgsi: Allocate the primid sysval to num_inputs, not num_outputs.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "fc963972565adf78e56f74447c5cd5fcb61dd866",
"description": "nir_to_tgsi: Avoid swizzling from undefined channels in load_output.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "bac7ec1a898ddfcca02b471e9c75051e5d756955",
"description": "nir_to_tgsi: Don't forget to split 64-bit store_per_vertex_output.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "21282879f95d7d042eb86d6a8207451623db1123",
"description": "nir_to_tgsi: Fix assertion failures handling 64-bit vec3/vec4 ssa undefs.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4850dbb3f93f4bf9b886921be14722b5e9c581df",
"description": "nir_to_tgsi: Add a workaround for virglrenderer TG4.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "a3a43e5fa85caf6be94815e08717baa67b7cb062",
"description": "win32: Do not use BUILD_GL32, we use def file to export win32 dll symbols.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4ead2f65799246a40fe3f2d45a494d0466c59735",
"description": "win32: Fixes 32 bits visual studio module definition files by add script gen_vs_module_defs.py",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "550975f2298bcfbf565009e23d784cd5169a2089",
"description": "turnip: Don't disable LRZ in subpasses after the first in the easy case.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "7ba63f516a840fdc72e125d44ff1a98febdaeeda",
"description": "turnip: Ignore TOP/BOTTOM_OF_PIPE bits in subpass src/dst dep flags.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "1bcd848816f3c9abf40362fd3ca3ca175774094b",
"description": "freedreno/ir3: Call nir_opt_find_array_copies().",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "7ba0c446074b0df1000c45e4253264ff9e6683a9",
"description": "turnip: Add nir_opt_conditional_discard.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d60282f5d2cc6176210942cf29c5df1722ebb8ca",
"description": "freedreno/ir3: Make sched nodes before adding deps.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "ce15bf19fb53b4fb5b9d8bf41117fc0cf02dfa2e",
"description": "turnip: Add TU_DEBUG=layout for dumping image layouts.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "2c683519e2ace7c8d6b27f8941795aef402caf1e",
"description": "turnip: Try harder to keep LRZ valid and fix a few edge cases",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "8313a9231c9a7e6f649cbd663d1cf2a7b0fbb91d",
"description": "nouveau: Skip cctl for atomic counters in tgsi",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "850197b3e07460d4527aa7e7f907d4b94d15415f",
"description": "nouveau: Emit cctl to flush L1 cache for atomics",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "9eace7f2e48bc254ff47a365605e6cbd3c8f604f",
"description": "dzn: refactor error-handling",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "cfdaf1af9b306d718caa009bb865ae42210df541",
"description": "dzn: remove needless defines",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "2ca4e21df7750ec4b475c907de2ba7636ef83e4e",
"description": "dzn: merge util sources",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "0551f8ed62b106f3c1f1ac0c6f1a6171cde2c2cf",
"description": "dzn: port code to plain c",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "b369e10d08af8a59d2e8159f3e0374aa094b33d5",
"description": "dzn: do not set unused default member initializer",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "c5e979f632d1d2133ff928a74c1848f39f6630ad",
"description": "dzn: c-style casts",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "3d608de8828c92c286d516f139f270dea7c35e25",
"description": "dzn: use c-style initialization",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "05af6f04344319a9a772dd8046220531598cb6f3",
"description": "dzn: use c-style for-statement",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "502c36c07d549a60e96e8be4e6395c13dd98f00d",
"description": "dzn: use define instead of constexpr",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "5a9571ee2c7dfe58546c918a0b29a2949d58b2f0",
"description": "dzn: no more reinterpret_cast",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "79119ac47889ab20d9127cbe961a330fcc231b37",
"description": "dzn: drop using references",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "bd8e8537cc44e967ae0a82ae398e354681da7aa3",
"description": "dzn: drop auto usage",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d61c2e965b284888b3ae86378abc4a0d21205370",
"description": "dzn: add a bunch of missing struct-keywords",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4903a7c0511c2da36cf9e1c5191b61fb4c82b127",
"description": "dzn: port to d3d12 c-api",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "4753222e62a85c305cb998bdfb470b779a0f1aed",
"description": "dzn: pass IDXGIAdapter1 to d3d12_create_device",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "3ba021cdd06a8001184e26c4ce3948771241d7d2",
"description": "dzn: use ID3D10Blob instead of ID3DBlob",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "8c6f50efdb82cecdfce3f6558f00995eabd635ab",
"description": "dzn: always use ID3D12GraphicsCommandList1",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "411dfc574cf1351a8af44e2bf6faa9aae6881b3e",
"description": "dzn: always use ID3D12Device1",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "5f17d070a9680cd36ba3b7f7a90d5c13d2319f6a",
"description": "dzn: remove all usage of ComPtr<T>",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "74228c32eeec04266ec299fafe5580a06e07df1f",
"description": "dzn: fixup indent",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "d12b5e76331a3ac6067bf21093a0c06a2ba6ca13",
"description": "aco: Reuse previous -1 result in find_msb to avoid using VOP3.",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "ebb099a9b09d068990f6cfb3eaf4858d2e0b5a6a",
"description": "zink: Remove redundant framebuffer_mtx from zink_screen.h",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "beb71504f42b79cff1031e8b08952df325e897d0"
},
{
"sha": "2ab57e056dda185793dbad98d287a2cd0189b41d",
"description": "ci/iris: mark another test as flaky",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "8ef8e72aac81ba52d2e9ae1b05d74b82c993b250",
"description": "intel/fs: tidy up lower of ray queries",
"nominated": false,
"nomination_type": null,
"resolution": 4,
"because_sha": null
},
{
"sha": "9fd02d49b8cc0e05b5d6d22c8a64df628488492a",
"description": "dzn: Pass the right type to CreateCommandList() in the reset path",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"because_sha": "a012b219640e875aa552b37dfdaf69336d5863c7"