Skip to content

Commit 78674d3

Browse files
committed
Include generic constraint in signature, add typedef doc.
1 parent 6b6468e commit 78674d3

File tree

507 files changed

+6311
-6429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

507 files changed

+6311
-6429
lines changed

docs/_includes/stdlib-reference-toc.html

+64-30
Large diffs are not rendered by default.

docs/_includes/stdlib_ref_nav.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav>
2-
<li><a href="../../">Docs</a></li>
3-
<li><a href="../">Slang</a></li>
4-
<li><a href="index.html">Slang Standard Library Reference</a></li>
2+
<li><a href="/">Docs</a></li>
3+
<li><a href="/slang/">Slang</a></li>
4+
<li><a href="/slang/stdlib-reference/index.html">Slang Standard Library Reference</a></li>
55

66
</nav>

docs/stdlib-reference/global-decls/AllMemoryBarrierWithWaveMaskSync.md

-35
This file was deleted.

docs/stdlib-reference/global-decls/AllMemoryBarrierWithWaveSync.md

-31
This file was deleted.

docs/stdlib-reference/global-decls/CallShader.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@ layout: stdlib-reference
88

99
<pre>
1010
void CallShader&lt;Payload&gt;(
11-
uint shaderIndex,
12-
inoutPayload payload);
11+
uint shaderIndex,
12+
inout Payload payload);
1313

1414
</pre>
1515

16+
## Parameters
17+
18+
* `Payload`
19+
* `shaderIndex`
20+
* `payload`
21+
1622
## Availability and Requirements
1723

1824
Defined for the following targets:
@@ -29,9 +35,3 @@ Available in stages: `closesthit`, `raygen`, `miss`, `callable`.
2935
Requires capability: `spvRayTracingKHR`.
3036

3137

32-
## Parameters
33-
34-
* `Payload`
35-
* `shaderIndex`
36-
* `payload`
37-

docs/stdlib-reference/global-decls/CheckAccessFullyMapped.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ layout: stdlib-reference
77
## Signature
88

99
<pre>
10-
bool CheckAccessFullyMapped(outuint status);
10+
bool CheckAccessFullyMapped(out uint status);
1111

1212
</pre>
1313

14+
## Parameters
15+
16+
* `status`
17+
1418
## Availability and Requirements
1519

1620
Defined for the following targets:
@@ -20,7 +24,3 @@ Available in all stages.
2024

2125

2226

23-
## Parameters
24-
25-
* `status`
26-

docs/stdlib-reference/global-decls/D3DCOLORtoUBYTE4.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ layout: stdlib-reference
1111

1212
</pre>
1313

14+
## Parameters
15+
16+
* `color`
17+
1418
## Availability and Requirements
1519

1620
Defined for the following targets:
@@ -38,7 +42,3 @@ Available in all stages.
3842

3943

4044

41-
## Parameters
42-
43-
* `color`
44-

docs/stdlib-reference/global-decls/DispatchMesh.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,21 @@ layout: stdlib-reference
88

99
<pre>
1010
void DispatchMesh&lt;P&gt;(
11-
uint threadGroupCountX,
12-
uint threadGroupCountY,
13-
uint threadGroupCountZ,
14-
P meshPayload);
11+
uint threadGroupCountX,
12+
uint threadGroupCountY,
13+
uint threadGroupCountZ,
14+
P meshPayload);
1515

1616
</pre>
1717

18+
## Parameters
19+
20+
* `P`
21+
* `threadGroupCountX`
22+
* `threadGroupCountY`
23+
* `threadGroupCountZ`
24+
* `meshPayload`
25+
1826
## Availability and Requirements
1927

2028
Defined for the following targets:
@@ -34,11 +42,3 @@ Available in stages: `amplification`, `mesh`.
3442
Requires capability: `spvMeshShadingEXT`.
3543

3644

37-
## Parameters
38-
39-
* `P`
40-
* `threadGroupCountX`
41-
* `threadGroupCountY`
42-
* `threadGroupCountZ`
43-
* `meshPayload`
44-

docs/stdlib-reference/global-decls/EvaluateAttributeAtCentroid.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,24 @@ layout: stdlib-reference
77
## Signature
88

99
<pre>
10-
T EvaluateAttributeAtCentroid&lt;T&gt;(T x);
10+
T EvaluateAttributeAtCentroid&lt;T&gt;(T x)
11+
where T : __BuiltinArithmeticType;
1112

12-
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; EvaluateAttributeAtCentroid&lt;T, N:int&gt;(<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; x);
13+
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; EvaluateAttributeAtCentroid&lt;T, N:int&gt;(<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; x)
14+
where T : __BuiltinArithmeticType;
1315

14-
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; EvaluateAttributeAtCentroid&lt;T, N:int, M:int&gt;(<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; x);
16+
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; EvaluateAttributeAtCentroid&lt;T, N:int, M:int&gt;(<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; x)
17+
where T : __BuiltinArithmeticType;
1518

1619
</pre>
1720

21+
## Parameters
22+
23+
* `T`
24+
* `N`
25+
* `M`
26+
* `x`
27+
1828
## Availability and Requirements
1929

2030
Defined for the following targets:
@@ -28,10 +38,3 @@ Available in stages: `amplification`, `fragment`, `compute`, `mesh`, `miss`, `ca
2838
Requires capabilities: `SPV_NV_compute_shader_derivatives`, `spvMeshShadingEXT`.
2939

3040

31-
## Parameters
32-
33-
* `T`
34-
* `N`
35-
* `M`
36-
* `x`
37-

docs/stdlib-reference/global-decls/EvaluateAttributeAtSample.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,30 @@ layout: stdlib-reference
88

99
<pre>
1010
T EvaluateAttributeAtSample&lt;T&gt;(
11-
T x,
12-
uint sampleindex);
11+
T x,
12+
uint sampleindex)
13+
where T : __BuiltinArithmeticType;
1314

1415
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; EvaluateAttributeAtSample&lt;T, N:int&gt;(
1516
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; x,
16-
uint sampleindex);
17+
uint sampleindex)
18+
where T : __BuiltinArithmeticType;
1719

1820
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; EvaluateAttributeAtSample&lt;T, N:int, M:int&gt;(
1921
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; x,
20-
uint sampleindex);
22+
uint sampleindex)
23+
where T : __BuiltinArithmeticType;
2124

2225
</pre>
2326

27+
## Parameters
28+
29+
* `T`
30+
* `N`
31+
* `M`
32+
* `x`
33+
* `sampleindex`
34+
2435
## Availability and Requirements
2536

2637
Defined for the following targets:
@@ -34,11 +45,3 @@ Available in stages: `amplification`, `fragment`, `compute`, `mesh`, `miss`, `ca
3445
Requires capabilities: `SPV_NV_compute_shader_derivatives`, `spvMeshShadingEXT`.
3546

3647

37-
## Parameters
38-
39-
* `T`
40-
* `N`
41-
* `M`
42-
* `x`
43-
* `sampleindex`
44-

docs/stdlib-reference/global-decls/EvaluateAttributeSnapped.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,30 @@ layout: stdlib-reference
88

99
<pre>
1010
T EvaluateAttributeSnapped&lt;T&gt;(
11-
T x,
12-
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset);
11+
T x,
12+
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset)
13+
where T : __BuiltinArithmeticType;
1314

1415
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; EvaluateAttributeSnapped&lt;T, N:int&gt;(
1516
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; x,
16-
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset);
17+
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset)
18+
where T : __BuiltinArithmeticType;
1719

1820
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; EvaluateAttributeSnapped&lt;T, N:int, M:int&gt;(
1921
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; x,
20-
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset);
22+
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;int,2&gt; offset)
23+
where T : __BuiltinArithmeticType;
2124

2225
</pre>
2326

27+
## Parameters
28+
29+
* `T`
30+
* `N`
31+
* `M`
32+
* `x`
33+
* `offset`
34+
2435
## Availability and Requirements
2536

2637
Defined for the following targets:
@@ -34,11 +45,3 @@ Available in stages: `amplification`, `fragment`, `compute`, `mesh`, `miss`, `ca
3445
Requires capabilities: `SPV_NV_compute_shader_derivatives`, `spvMeshShadingEXT`.
3546

3647

37-
## Parameters
38-
39-
* `T`
40-
* `N`
41-
* `M`
42-
* `x`
43-
* `offset`
44-

docs/stdlib-reference/global-decls/GetAttributeAtVertex.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,30 @@ layout: stdlib-reference
2222

2323
<pre>
2424
T GetAttributeAtVertex&lt;T&gt;(
25-
T attribute,
26-
uint vertexIndex);
25+
T attribute,
26+
uint vertexIndex)
27+
where T : __BuiltinType;
2728

2829
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; GetAttributeAtVertex&lt;T, N:int&gt;(
2930
<a href="/slang/stdlib-reference/types/vector/index">vector</a>&lt;T,N&gt; attribute,
30-
uint vertexIndex);
31+
uint vertexIndex)
32+
where T : __BuiltinType;
3133

3234
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; GetAttributeAtVertex&lt;T, N:int, M:int&gt;(
3335
<a href="/slang/stdlib-reference/types/matrix/index">matrix</a>&lt;T,N,M&gt; attribute,
34-
uint vertexIndex);
36+
uint vertexIndex)
37+
where T : __BuiltinType;
3538

3639
</pre>
3740

41+
## Parameters
42+
43+
* `T`
44+
* `N`
45+
* `M`
46+
* `attribute`
47+
* `vertexIndex`
48+
3849
## Availability and Requirements
3950

4051
Defined for the following targets:
@@ -51,11 +62,3 @@ Available in `fragment` stage only.
5162
Requires capability: `spvFragmentBarycentricKHR`.
5263

5364

54-
## Parameters
55-
56-
* `T`
57-
* `N`
58-
* `M`
59-
* `attribute`
60-
* `vertexIndex`
61-

docs/stdlib-reference/global-decls/GetRenderTargetSamplePosition.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ layout: stdlib-reference
1111

1212
</pre>
1313

14+
## Parameters
15+
16+
* `Index`
17+
1418
## Availability and Requirements
1519

1620
Defined for the following targets:
@@ -23,7 +27,3 @@ Available in all stages.
2327

2428

2529

26-
## Parameters
27-
28-
* `Index`
29-

0 commit comments

Comments
 (0)