-
Notifications
You must be signed in to change notification settings - Fork 35
/
.pick_status.json
14702 lines (14702 loc) · 450 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": "90eae30bcb84d54dc871ddbb8355f729cf8fa900",
"description": "rusticl/mem: move pipe_image_host_access into Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "9ce9ddc5e8cdf985faa80795ca192ca1230c571d",
"description": "rusticl/mem: reorganize MemBase::from_gl a little",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "b834d41d4bfb515e7701cd81c5c678747dc8a63b",
"description": "rusticl/mem: move Buffer and Image specific fields into the subtypes",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "cf73ac8096d343a0b0cfeb5a46f7642d6e65d74c",
"description": "rusticl/mem: move tx_raw_async methods into Buffer and Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "f9b05dfd77094ff3067061f5e5d13ab6048d3681",
"description": "rusticl/mem: move MemBase::map into the users",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d3c389208801babce390711703f239f36b84eed8",
"description": "rusticl/mem: reorganize Image::map",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "97680ca861300518fed75cbd8e305ee759a008b0",
"description": "rusticl/mem: move comment describing how mapping works",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a9a928cbf96ef089f1627283aaf6463116dc5c63",
"description": "rusticl/mem: remove get_res",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "687dea4fde17062c7b51d1c5bea9e330568ba262",
"description": "rusticl/mem: move tx into Buffer",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d18333889e2e995214a784e0438bc5ace29ed2b6",
"description": "rusticl/mem: move is_parent_buffer into Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "bfa342e16e092d94840f372fe00cb2e7d4b78a6f",
"description": "rusticl/image: call tx on the parent buffer directly",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "6a15d5baeea4f56030b559cd1239138606d406ee",
"description": "rusticl/mem: fold tx_raw into tx",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "790d00d3e19b85b4145f8309946984b11a8e7000",
"description": "rusticl/mem: move tx_image into Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "e39b6288f608557153ce6a9894ebda1b435f6377",
"description": "rusticl/mem: get rid of pixel_size",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "2db23aa2076a9cb6445983f82a28bd6fd3ff51fd",
"description": "rusticl/mem: split Image::copy_to into Buffer and Image versions",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "c0c6eca0951f0ab179537fc87fa76ee4f8cb056c",
"description": "rusticl/mem: split Buffer::copy_to into Buffer and Image versions",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "28bff68d9803ff9ff111097015a4adccfc9f6ad1",
"description": "rusticl/mem: split copy_to into Buffer and Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "dd4096e7fde35ce3f80f0ce7d17edb194d33fba7",
"description": "rusticl/mem: move copy_to_rect into Buffer",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "e048d8c79687fe4d48a532f61697a42db94c2a4a",
"description": "rusticl/mem: split write_from_user_rect into buffer and image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "efc803175aa436f9291f0bfdbcce3c49c5678ba6",
"description": "rusticl/mem: split read_to_user_rect into Buffer and Image versions",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "fdfde8a189810f9389c7ef7a4ca2d0b09a00f87c",
"description": "rusticl/mem: move copy and write buffer impls into Buffer",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "aaa05ffc1d7adea6275659f1db8b73cc77f9c642",
"description": "rusticl/mem: split unmap into Buffer and Image versions",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a840a75d17b9cef45aa96e2a7ef048073f196e27",
"description": "rusticl/mem: move shadow sync methods into concrete types",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "553a9e38bd13318c36c52a279041f0a77817b19d",
"description": "rusticl/mem: move map methods into concrete types",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "219d8e0dae56756b2d9c0ebbbb1797f3fb867572",
"description": "core/memory: drop Arc for &Arc<Queue> function parameters",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "5a1089b8113e319ce21d0079a6f9fd51c8b761c3",
"description": "rusticl/mem: move fill methods into concrete types",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "58c042f43913adddfe0470615748a89e8c4c6487",
"description": "rusticl/mem: use pattern matching in is_parent_buffer",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d705307a72a89aea3c3c5cc9716f046f7ca2289f",
"description": "rusticl/mem: split into Buffer and Image",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "0125e865a124077e57f318ad08e00eb5166a3b28",
"description": "rusticl/icd: actually allow dispatching CL types",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "aa5b0e7883ee70fc3749400cd1ce6626bf5761a0",
"description": "rusticl/device: get rid of pointless Arc overhead",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "7f77f91929c9cdaddde78a59e532657d024d7731",
"description": "rusticl/icd: split Arc part out of CLObject into new trait",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "4807573ba7a9481396fdc183e8856eac2ea0a82d",
"description": "rusticl/icd: move get_arc() and rename it",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "3be4f60f978926d7ac7d0e76c6404e3772a82c5b",
"description": "rusticl/event: drop from_cl_arr and use arcs_from_arr",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "57e5d377da18f19420b7528c67429cbccf0ebb59",
"description": "rusticl/icd: move from_arc() and rename it",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "51afd7a00cf9d174727fcba3a9c87d704780eae4",
"description": "rusticl/device: deduplicate devices with sorting",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "e63e21ac74e751a9f8f3c50e1fd356380ee34082",
"description": "rusticl/icd: move get_ref()",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "13241264f19288c5e0abcfab504041f32bb12af3",
"description": "rusticl/icd: fold leak_ref into its only consumer",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "4ca11d5f067fe8c9c6625d6afcddb24d90ef0a7b",
"description": "rusticl/icd: move get_arc_vec_from_arr and rename it",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "9b5bcbb60fd25620efd5fe72b9c8d00ef8707dde",
"description": "rusticl/icd: move retain() and release()",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "45b9fdb4e5178d2d84fb04223be69241d17c6115",
"description": "rusticl/icd: move refcnt() and get rid of needless atomic ops",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "7564b817497f44b980eecdc7d6bdd264665a1c63",
"description": "rusticl/icd: move get_ref_vec_from_arr into the Rusticl type",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "46227bf44c1beecd5c77d54e80f6aa5b1c773516",
"description": "rusticl/api: allow CLObjectBase to be placed anywhere",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "6d8b0a53c6959cf7af9f57c22f42faf84b444c10",
"description": "rusticl/util: support nested structs in offset_of!",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "0287aa4b34bb8e549c11049ce696ee4d5721358d",
"description": "rust/api: add RustTypes enum",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "e54638ddf5e051daa72ea4606d4280dfc0791713",
"description": "anv: fix buffer marker cache flush issues on MTL",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "c8e122a73805924811df97071406c59ab6aee002",
"notes": null
},
{
"sha": "88d0c6c26aa9f00547a8bd2dda36176cb84adfb6",
"description": "meson: Limit intel_vk_rt to x86_64",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "a512c2a8b572c5da360873320dbbd343c6223cd6",
"notes": null
},
{
"sha": "34078b67ed2fc03bff2c7069d7ec00d72d96461a",
"description": "anv: don't allocate aux padded BOs with host pointers",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "646a7c864d3a4cf440164f5e199d6e339420a73c",
"notes": null
},
{
"sha": "feb7cf82dc880176f9e11e686e6870753177dc8c",
"description": "anv: remove redundant asserts",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "cc7934a89bd15099f7fd30fab8c8c27a9d9fc1ac",
"description": "broadcom/compiler: fix lane selection for subgroups in fragment shaders",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "2143da6d5aeff02d3a6308f97aacf6c8b3197c3b",
"description": "intel/dev: improve meson invocation for intel_device_info gen",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "f95b87a3dcdf86ff103d9c69c0de17343601431b",
"description": "intel/tools: load json device info in drm_shim",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "56da473b6f63bffa60e61f5900f3c70231a893de",
"description": "intel/dev/tools: add json as an output format for intel_dev_info",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "1f725a222ad9b4b249f480811ed2fc1e9eabc9f0",
"description": "intel/dev: implement json serialization for intel_device_info",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d124542b551ad05f24ec4fad8b87faadca89e659",
"description": "anv: Override VendorID for Hitman 3",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "e56f81031677e00e29faec893b5a10e499488929",
"description": "intel/tools: add intel device meson dependencies",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "161a90abbdb7084c3691c70b878fdd852340da54",
"description": "dzn: Add a driconf option to disable dzn for specific apps and use it for RDR2",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "660c7fe6a79ae851b82906660a5f5d454a65caab",
"description": "dzn: Fix tessellation shader insertion into PSO desc",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d5131e5f86677b68dca614ad1010d670e6ec8178",
"description": "dzn: Simultaneous-access is mutually exclusive with MSAA",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "32c6caffd71c5b8a92fbdb2268c6d528158a1f93",
"description": "spirv2dxil: Trivial fixes for tessellation shaders",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a3c45306e25e047a5e74ccc24182bc9e59aae90f",
"description": "spirv2dxil: Remove dead branches early during shader compilation",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a8758afabd5fd61b55238c5245d92fc85775d698",
"description": "microsoft/compiler: Relax assert for SPIR-V barriers",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "b6b980a904838260540541dcbb34c72de8437b67",
"description": "mesa/main: work around chrome/firefox bug",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d0cc0e74dd9b2aa116f7672388257a0facf6f4bd",
"description": "mesa/main: mark GL_BGRA8_EXT as color-renderable",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "2b2a6a238ed77d003cbf38c43a2629b8f2a37380",
"description": "mesa/main: mark GL_BGRA as color-renderable",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a7e8dc6835266bfdd0c17f70acec5585bd7a74d3",
"description": "mesa/main: fix _mesa_base_tex_format for BGRA",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "4de62731f4db56360026cbb6a3b8566f86f22466",
"notes": null
},
{
"sha": "b7e39657f67d9cfb932876012da1a8d05d4c18bd",
"description": "zink: only add arrays to indirect non-tcs variables",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "9e2c7314f2867de6f43e2add992590cfb92ccddd",
"description": "nir/lower_io: fix handling for compact arrays with indirect derefs",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "a512c2a8b572c5da360873320dbbd343c6223cd6",
"description": "meson: enforce build of intel-clc with anv/iris",
"nominated": false,
"nomination_type": 1,
"resolution": 4,
"main_sha": null,
"because_sha": "b52e25d3a8eee702ff5d21e4cdb9a4dc0736282a",
"notes": null
},
{
"sha": "d0fba810b3d334191ead4f16f5ba786250a70c32",
"description": "intel: Fix intel_get_mesh_urb_config()",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "32c1e45718241f5a768ada47bc1f993a1c3131b5",
"description": "radv: fix emitting VS prologs for merged shaders compiled separately on GFX10+",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "6762307698416e41dbebb686ab94ad0a77f0f44a",
"description": "radv: cleanup radv_shader_combine_cfg_vs_tcs()",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "6121497228d7388a5711c9458945b5903c401c7e",
"description": "aco/gfx11+: limit hard clauses to 32 instructions",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "3f7b3449309b7422d99d982b189473b4daed775a",
"description": "rusticl/mem: support GL_TEXTURE_BUFFER",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "2645003bdc527b5dc046366fce5e65b44b27334f",
"notes": null
},
{
"sha": "117291332c6f30c7759dcd3f70459a6d8e2b153e",
"description": "rusticl/mem: properly handle buffers",
"nominated": true,
"nomination_type": 1,
"resolution": 1,
"main_sha": null,
"because_sha": "2645003bdc527b5dc046366fce5e65b44b27334f",
"notes": null
},
{
"sha": "727cddd338aceb48915725fefec3fcc563e956e1",
"description": "nir/lower_cl_images: record image_buffers and msaa_images",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "29a6beb36e7d41c9955998ab8c90061f27d373dc",
"description": "anv: revert cache flushing changes for indirect commands",
"nominated": false,
"nomination_type": 2,
"resolution": 4,
"main_sha": null,
"because_sha": "d699600da1db483b142d71e777b3ed1bc6576a4a",
"notes": null
},
{
"sha": "0c05bdf1c105419f69b5ebad48263fed04bd3c82",
"description": "radv/ci: enable RADV_PERFTEST=shader_object on VEGA10",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "bead3f2ec3d208bfc525598a2629b26c84b75cbd",
"description": "radv: allow RADV_PERFTEST=shader_object on GFX9/VEGA10",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "afab80bdb69928a6a5724a813b0903d0fdc62f8f",
"description": "radv,driconf: Enable active AS leaf workaround for Jedi Survivor",
"nominated": true,
"nomination_type": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "14c85196fc8a51f7040c0b21d89d2d11c7ad48f5",
"description": "mesa: use util_idalloc_alloc_range for _mesa_HashFindFreeKeyBlock",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "ec65dfaabd66f74e2a17d5f58a8fe8f88880b645",
"description": "mesa: fix incorrect _mesa_HashInsertLocked parameter in _mesa_EndList",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "72a38b37920ef7bb37aec3aa842f655c042967f8",
"description": "st/mesa: remove !obj checking in _mesa_get_bufferobj_reference when it's useless",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "9747cf2c8f469568da378731f70ba35e2c61c6ff",
"description": "st/mesa: merge 3 unlikely blocks in _mesa_get_bufferobj_reference",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "bfe6d389a0657d75bc97cca2bce451a4a3279f2d",
"description": "mesa: remove _mesa_HashTable::InDeleteAll",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "8ca750a8b640d78ed748c02d6039b7dc0a209ad1",
"description": "mesa: fold _mesa_HashDeleteAll into _mesa_DeleteHashTable",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d33bffd7088332729fd4100c47b38436db1112f8",
"description": "mesa: re-format main/hash.h, move inlines to the end, some code to main/hash.c",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "cf2692fa24ec38c9039c7718225b13734fe8a7c4",
"description": "mesa: clean up unnecessary _mesa_HashTable locked/unlocked wrappers",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "70b65fe09bca2f3aa57c288dc666e07bf4c112d0",
"description": "mesa: remove unused _mesa_HashTable code",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "716e483cfb4cae812afd9865cb4b94025c0632a4",
"description": "util/idalloc: make deleting invalid IDs a no-op",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "5438b1910464e4b17fe0248a96a6ed98f0280a20",
"description": "iris: enable generated indirect draws",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "d754ed5330bc94868547ff5b41c8992e8266b4d0",
"description": "iris: add an option for not emit draw parameters",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "96439b7dfbc0b3e492cfc966ed8f4c5fba5c935e",
"description": "iris: factor out index buffer emission",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "1caf42d92e7ae832fe40c851cc3e64388f2a3bce",
"description": "iris: Implement INTEL_DEBUG=heaps",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "725817f429717516101b68b24dd07035630eaf1c",
"description": "iris: make URB programming available outside iris_state.c",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "84e1f8ae702c29e1461aa24404381fbb142ef2c4",
"description": "iris: make KSP helper available outside iris_state.c",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "bde1c7665573122ed7cf83e238f2130a7d8bb24d",
"description": "iris: make binding table shifting values available outside iris_state.c",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "f192ea630a435248a104f968b9dab89903b2f350",
"description": "intel/shaders: enable gfx8 support",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "76c3d97c841bdc39701e8f23e0eaa0b43c07ec50",
"description": "intel/shaders: add iris variant of indirect draws generation shader",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "b52e25d3a8eee702ff5d21e4cdb9a4dc0736282a",
"description": "anv: rewrite internal shaders using OpenCL",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null
},
{
"sha": "da391650f534cc78c4907010010a475a72e49422",
"description": "ci: build a host version of mesa for cross builds",
"nominated": false,
"nomination_type": 3,
"resolution": 4,
"main_sha": null,
"because_sha": null,
"notes": null