Skip to content

Commit 52bc004

Browse files
Deploying to gh-pages from @ f8ac1a7 🚀
1 parent 17e30b2 commit 52bc004

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

api/spirv_std/arch/fn.atomic_f_add.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
accesses within <code>SCOPE</code> to the same location:</p>
66
<ol>
77
<li>load through <code>ptr</code> to get an original value,</li>
8-
<li>get a new value by integer addition of original value and <code>value</code>, and</li>
8+
<li>get a new value by float addition of original value and <code>value</code>, and</li>
99
<li>store the new value back through <code>ptr</code>.</li>
1010
</ol>
1111
<p>The result is the Original Value.</p>

api/spirv_std/arch/fn.atomic_f_max.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
accesses within Scope to the same location:</p>
66
<ol>
77
<li>Load through <code>ptr</code> to get an original value,</li>
8-
<li>Get a new value by finding the largest signed integer of original value
8+
<li>Get a new value by finding the largest float of original value
99
and <code>value</code>, and</li>
1010
<li>Store the new value back through <code>ptr</code>.</li>
1111
</ol>

api/spirv_std/arch/fn.atomic_f_min.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
accesses within Scope to the same location:</p>
66
<ol>
77
<li>Load through <code>ptr</code> to get an original value,</li>
8-
<li>Get a new value by finding the smallest signed integer of original value
8+
<li>Get a new value by finding the smallest float of original value
99
and <code>value</code>, and</li>
1010
<li>Store the new value back through <code>ptr</code>.</li>
1111
</ol>

api/spirv_std_macros/macro.Image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h3 id="arguments"><a class="doc-anchor" href="#arguments">§</a>Arguments</h3>
2323
when set the image format is unknown.
2424
Accepted values: <code>f32</code>, <code>f64</code>, <code>u8</code>, <code>u16</code>, <code>u32</code>, <code>u64</code>, <code>i8</code>, <code>i16</code>, <code>i32</code>, <code>i64</code>.</li>
2525
<li><code>format</code> — The image format of the image, mutually exclusive with <code>type</code>.
26-
Accepted values: Snake case versions of <a href="spirv_std_types::image_params::ImageFormat"><code>ImageFormat</code></a> variants, e.g. <code>rgba32f</code>,
26+
Accepted values: Snake case versions of <a href="../spirv_std_types/image_params/enum.ImageFormat.html" title="enum spirv_std_types::image_params::ImageFormat"><code>ImageFormat</code></a> variants, e.g. <code>rgba32f</code>,
2727
<code>rgba8_snorm</code>.</li>
2828
<li><code>sampled</code> — Whether it is known that the image will be used with a sampler.
2929
Accepted values: <code>true</code> or <code>false</code>. Default: <code>unknown</code>.</li>

api/src/spirv_std/arch/atomics.rs.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@
536536
<a href=#536 id=536 data-nosnippet>536</a>/// accesses within Scope to the same location:
537537
<a href=#537 id=537 data-nosnippet>537</a>///
538538
<a href=#538 id=538 data-nosnippet>538</a>/// 1. Load through `ptr` to get an original value,
539-
<a href=#539 id=539 data-nosnippet>539</a>/// 2. Get a new value by finding the smallest signed integer of original value
539+
<a href=#539 id=539 data-nosnippet>539</a>/// 2. Get a new value by finding the smallest float of original value
540540
<a href=#540 id=540 data-nosnippet>540</a>/// and `value`, and
541541
<a href=#541 id=541 data-nosnippet>541</a>/// 3. Store the new value back through `ptr`.
542542
<a href=#542 id=542 data-nosnippet>542</a>///
@@ -573,7 +573,7 @@
573573
<a href=#573 id=573 data-nosnippet>573</a>/// accesses within Scope to the same location:
574574
<a href=#574 id=574 data-nosnippet>574</a>///
575575
<a href=#575 id=575 data-nosnippet>575</a>/// 1. Load through `ptr` to get an original value,
576-
<a href=#576 id=576 data-nosnippet>576</a>/// 2. Get a new value by finding the largest signed integer of original value
576+
<a href=#576 id=576 data-nosnippet>576</a>/// 2. Get a new value by finding the largest float of original value
577577
<a href=#577 id=577 data-nosnippet>577</a>/// and `value`, and
578578
<a href=#578 id=578 data-nosnippet>578</a>/// 3. Store the new value back through `ptr`.
579579
<a href=#579 id=579 data-nosnippet>579</a>///
@@ -610,7 +610,7 @@
610610
<a href=#610 id=610 data-nosnippet>610</a>/// accesses within `SCOPE` to the same location:
611611
<a href=#611 id=611 data-nosnippet>611</a>///
612612
<a href=#612 id=612 data-nosnippet>612</a>/// 1) load through `ptr` to get an original value,
613-
<a href=#613 id=613 data-nosnippet>613</a>/// 2) get a new value by integer addition of original value and `value`, and
613+
<a href=#613 id=613 data-nosnippet>613</a>/// 2) get a new value by float addition of original value and `value`, and
614614
<a href=#614 id=614 data-nosnippet>614</a>/// 3) store the new value back through `ptr`.
615615
<a href=#615 id=615 data-nosnippet>615</a>///
616616
<a href=#616 id=616 data-nosnippet>616</a>/// The result is the Original Value.

0 commit comments

Comments
 (0)