Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ldexp exponent argument is not a pointer
  • Loading branch information
dneto0 committed Dec 7, 2020
commit c4b90d8cc08e3c54809bfab36581734aef10ae68
4 changes: 2 additions & 2 deletions wgsl/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -4602,12 +4602,12 @@ TODO: deduplicate these tables
<tr algorithm="scalar case, ldexp">
<td>|T| is f32<br>
|I| is i32 or u32
<td class="nowrap">`ldexp(`|e1|`:` |T| `, `|e2|`:` ptr<|I|> `) -> ` |T|
<td class="nowrap">`ldexp(`|e1|`:` |T| `, `|e2|`:` |I| `) -> ` |T|
<td>(GLSLstd450Ldexp)
<tr algorithm="vector case, ldexp">
<td>|T| is f32<br>
|I| is i32 or u32
<td class="nowrap">`ldexp(`|e1|`:` vec|N|<|T|> `, `|e2|`:` ptr&lt;vec|N|&lt;|I|&gt;&gt;`) -> ` vec|N|<|T|>
<td class="nowrap">`ldexp(`|e1|`:` vec|N|<|T|> `, `|e2|`:` vec|N|&lt;|I|&gt;`) -> ` vec|N|<|T|>
<td>(GLSLstd450Ldexp)
<tr algorithm="scalar case, length">
<td>|T| is f32
Expand Down