From 41e17d370d67a584fbac9bbbe435c057c18715f4 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Fri, 27 Oct 2023 06:03:34 +0800 Subject: Make the exponent return value from frexp int (#3284) * Make the exponent return value from frexp int Fixes https://github.com/shader-slang/slang/issues/3282 * Update slang-llvm. --------- Co-authored-by: Yong He --- docs/stdlib-doc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/stdlib-doc.md') diff --git a/docs/stdlib-doc.md b/docs/stdlib-doc.md index f2489bb97..1431fdfb2 100644 --- a/docs/stdlib-doc.md +++ b/docs/stdlib-doc.md @@ -60352,14 +60352,14 @@ matrix frac(matrix x); /// See Availability 1 T frexp( T x, - out T exp); + out int exp); vector frexp( vector x, - out vector exp); + out vector exp); /// See Availability 2 matrix frexp( matrix x, - out matrix exp); + out matrix exp); ``` ## Availability -- cgit v1.2.3