Skip to content

Commit 922655a

Browse files
author
reffy-bot
committed
Update of TR report from new reffy run
Using reffy commit 17.2.5.
1 parent 05253e7 commit 922655a

File tree

5 files changed

+94
-17
lines changed

5 files changed

+94
-17
lines changed

tr/headings/WGSL.json

Lines changed: 66 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2636,23 +2636,86 @@
26362636
"id": "atomic-load",
26372637
"href": "https://www.w3.org/TR/WGSL/#atomic-load",
26382638
"level": 4,
2639-
"title": "Atomic Load",
2639+
"title": "atomicLoad",
26402640
"number": "16.8.1"
26412641
},
26422642
{
26432643
"id": "atomic-store",
26442644
"href": "https://www.w3.org/TR/WGSL/#atomic-store",
26452645
"level": 4,
2646-
"title": "Atomic Store",
2646+
"title": "atomicStore",
26472647
"number": "16.8.2"
26482648
},
26492649
{
26502650
"id": "atomic-rmw",
26512651
"href": "https://www.w3.org/TR/WGSL/#atomic-rmw",
26522652
"level": 4,
2653-
"title": "Atomic Read-modify-write",
2653+
"title": "Atomic Read-modify-write Arithmetic and Logical Functions",
26542654
"number": "16.8.3"
26552655
},
2656+
{
2657+
"id": "atomic-add",
2658+
"href": "https://www.w3.org/TR/WGSL/#atomic-add",
2659+
"level": 5,
2660+
"title": "atomicAdd",
2661+
"number": "16.8.3.1"
2662+
},
2663+
{
2664+
"id": "atomic-sub",
2665+
"href": "https://www.w3.org/TR/WGSL/#atomic-sub",
2666+
"level": 5,
2667+
"title": "atomicSub",
2668+
"number": "16.8.3.2"
2669+
},
2670+
{
2671+
"id": "atomic-max",
2672+
"href": "https://www.w3.org/TR/WGSL/#atomic-max",
2673+
"level": 5,
2674+
"title": "atomicMax",
2675+
"number": "16.8.3.3"
2676+
},
2677+
{
2678+
"id": "atomic-min",
2679+
"href": "https://www.w3.org/TR/WGSL/#atomic-min",
2680+
"level": 5,
2681+
"title": "atomicMin",
2682+
"number": "16.8.3.4"
2683+
},
2684+
{
2685+
"id": "atomic-and",
2686+
"href": "https://www.w3.org/TR/WGSL/#atomic-and",
2687+
"level": 5,
2688+
"title": "atomicAnd",
2689+
"number": "16.8.3.5"
2690+
},
2691+
{
2692+
"id": "atomic-or",
2693+
"href": "https://www.w3.org/TR/WGSL/#atomic-or",
2694+
"level": 5,
2695+
"title": "atomicOr",
2696+
"number": "16.8.3.6"
2697+
},
2698+
{
2699+
"id": "atomic-xor",
2700+
"href": "https://www.w3.org/TR/WGSL/#atomic-xor",
2701+
"level": 5,
2702+
"title": "atomicXor",
2703+
"number": "16.8.3.7"
2704+
},
2705+
{
2706+
"id": "atomic-exchange",
2707+
"href": "https://www.w3.org/TR/WGSL/#atomic-exchange",
2708+
"level": 4,
2709+
"title": "atomicExchange",
2710+
"number": "16.8.4"
2711+
},
2712+
{
2713+
"id": "atomic-compare-exchange-weak",
2714+
"href": "https://www.w3.org/TR/WGSL/#atomic-compare-exchange-weak",
2715+
"level": 4,
2716+
"title": "atomicCompareExchangeWeak",
2717+
"number": "16.8.5"
2718+
},
26562719
{
26572720
"id": "pack-builtin-functions",
26582721
"href": "https://www.w3.org/TR/WGSL/#pack-builtin-functions",

tr/ids/WGSL.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3797,9 +3797,11 @@
37973797
"https://www.w3.org/TR/WGSL/#ref-for-built-in-value-name-token%E2%91%A0",
37983798
"https://www.w3.org/TR/WGSL/#ref-for-token%E2%91%A0%E2%91%A3",
37993799
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values%E2%91%A3",
3800+
"https://www.w3.org/TR/WGSL/#ref-for-extension%E2%91%A1",
38003801
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-vertex_index%E2%91%A0",
38013802
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-instance_index%E2%91%A0",
38023803
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-clip_distances%E2%91%A1",
3804+
"https://www.w3.org/TR/WGSL/#ref-for-extension-clip_distances%E2%91%A0",
38033805
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-position%E2%91%A4",
38043806
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-front_facing%E2%91%A0",
38053807
"https://www.w3.org/TR/WGSL/#ref-for-built-in-values-frag_depth%E2%91%A0",
@@ -6196,6 +6198,24 @@
61966198
"https://www.w3.org/TR/WGSL/#ref-for-atomic-modification",
61976199
"https://www.w3.org/TR/WGSL/#atomic-store",
61986200
"https://www.w3.org/TR/WGSL/#atomic-rmw",
6201+
"https://www.w3.org/TR/WGSL/#atomic-add",
6202+
"https://www.w3.org/TR/WGSL/#example-7f58aad4",
6203+
"https://www.w3.org/TR/WGSL/#atomic-sub",
6204+
"https://www.w3.org/TR/WGSL/#example-077af0cf",
6205+
"https://www.w3.org/TR/WGSL/#atomic-max",
6206+
"https://www.w3.org/TR/WGSL/#example-1d767b14",
6207+
"https://www.w3.org/TR/WGSL/#atomic-min",
6208+
"https://www.w3.org/TR/WGSL/#example-ababf8aa",
6209+
"https://www.w3.org/TR/WGSL/#atomic-and",
6210+
"https://www.w3.org/TR/WGSL/#example-529bd084",
6211+
"https://www.w3.org/TR/WGSL/#atomic-or",
6212+
"https://www.w3.org/TR/WGSL/#example-70b33e13",
6213+
"https://www.w3.org/TR/WGSL/#atomic-xor",
6214+
"https://www.w3.org/TR/WGSL/#example-1ac7a3f6",
6215+
"https://www.w3.org/TR/WGSL/#atomic-exchange",
6216+
"https://www.w3.org/TR/WGSL/#example-832d10c1",
6217+
"https://www.w3.org/TR/WGSL/#atomic-compare-exchange-weak",
6218+
"https://www.w3.org/TR/WGSL/#example-ac32a7db",
61996219
"https://www.w3.org/TR/WGSL/#pack-builtin-functions",
62006220
"https://www.w3.org/TR/WGSL/#ref-for-channel-transfer-function%E2%91%A1",
62016221
"https://www.w3.org/TR/WGSL/#pack4x8snorm-builtin",
@@ -6677,7 +6697,6 @@
66776697
"https://www.w3.org/TR/WGSL/#biblio-vanwyk2007",
66786698
"https://www.w3.org/TR/WGSL/#biblio-vulkanmemorymodel",
66796699
"https://www.w3.org/TR/WGSL/#biblio-webgpu",
6680-
"https://www.w3.org/TR/WGSL/#biblio-wgsl",
66816700
"https://www.w3.org/TR/WGSL/#informative",
66826701
"https://www.w3.org/TR/WGSL/#biblio-charmod-norm",
66836702
"https://www.w3.org/TR/WGSL/#biblio-css-tables-3",

tr/index.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "crawl",
33
"title": "Reffy crawl",
4-
"date": "2024-09-16T01:34:55.155Z",
4+
"date": "2024-09-17T01:30:28.465Z",
55
"options": {
66
"fallback": "tr/index.json",
77
"output": "report",
@@ -711,7 +711,7 @@
711711
"https://aomediacodec.github.io/av1-spec/"
712712
],
713713
"crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf",
714-
"date": "16 September 2024",
714+
"date": "17 September 2024",
715715
"links": "links/av1-spec.json"
716716
},
717717
{
@@ -10672,11 +10672,11 @@
1067210672
],
1067310673
"crawled": "https://www.w3.org/TR/geolocation/",
1067410674
"crawlCacheInfo": {
10675-
"lastModified": "Thu, 15 Aug 2024 00:59:53 GMT"
10675+
"lastModified": "Mon, 16 Sep 2024 19:13:56 GMT"
1067610676
},
1067710677
"generator": "respec",
10678-
"date": "15 August 2024",
10679-
"revision": "9d5829e74ed1f6971452fb3b16fe1857e09ed20c",
10678+
"date": "16 September 2024",
10679+
"revision": "841f1c63b2739bbc828fe8323c169daa2c864bd5",
1068010680
"algorithms": "algorithms/geolocation.json",
1068110681
"links": "links/geolocation.json",
1068210682
"refs": "refs/geolocation.json",
@@ -21504,11 +21504,11 @@
2150421504
],
2150521505
"crawled": "https://www.w3.org/TR/WGSL/",
2150621506
"crawlCacheInfo": {
21507-
"lastModified": "Mon, 09 Sep 2024 17:30:44 GMT"
21507+
"lastModified": "Mon, 16 Sep 2024 22:04:58 GMT"
2150821508
},
2150921509
"generator": "bikeshed",
21510-
"date": "9 September 2024",
21511-
"revision": "7ef8208faab892b7526ff9c09e6b7f70afe52a19",
21510+
"date": "16 September 2024",
21511+
"revision": "17287e53b58d9de1fb65f1819dfaa420819dcc57",
2151221512
"algorithms": "algorithms/WGSL.json",
2151321513
"links": "links/WGSL.json",
2151421514
"refs": "refs/WGSL.json",

tr/links/WGSL.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
]
4444
},
4545
"https://www.w3.org/TR/": {},
46-
"https://www.w3.org/TR/WGSL/": {},
4746
"https://www.w3.org/TR/charmod-norm/": {},
4847
"https://www.w3.org/TR/css-tables-3/": {},
4948
"https://www.w3.org/TR/wasm-core-2/": {},

tr/refs/WGSL.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@
4848
{
4949
"name": "WebGPU",
5050
"url": "https://w3.org/TR/webgpu"
51-
},
52-
{
53-
"name": "WGSL",
54-
"url": "https://www.w3.org/TR/WGSL/"
5551
}
5652
],
5753
"informative": [

0 commit comments

Comments
 (0)