Skip to content

Commit 11575d2

Browse files
Fix inaccurate documentation in member function mutability. (shader-slang#6065)
* Fix inaccurate documentation in member function mutability. * Change throw to result in for specificity. --------- Co-authored-by: Yong He <yonghe@outlook.com>
1 parent 4da52b6 commit 11575d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/user-guide/03-convenience-features.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ int rs = foo.staticMethod(a,b);
149149

150150
### Mutability of member function
151151

152-
For GPU performance considerations, the `this` argument in a member function is immutable by default. If you modify the content in `this` argument, the modification will be discarded after the call and does not affect the input object. If you intend to define a member function that mutates the object, use `[mutating]` attribute on the member function as shown in the following example.
152+
For GPU performance considerations, the `this` argument in a member function is immutable by default. Attempting to modify `this` will result in a compile error. If you intend to define a member function that mutates the object, use `[mutating]` attribute on the member function as shown in the following example.
153153

154154
```hlsl
155155
struct Foo
@@ -159,14 +159,14 @@ struct Foo
159159
[mutating]
160160
void setCount(int x) { count = x; }
161161
162-
void setCount2(int x) { count = x; }
162+
// This would fail to compile.
163+
// void setCount2(int x) { count = x; }
163164
}
164165
165166
void test()
166167
{
167168
Foo f;
168-
f.setCount(1); // f.count is 1 after the call.
169-
f.setCount2(2); // f.count is still 1 after the call.
169+
f.setCount(1); // Compiles
170170
}
171171
```
172172

0 commit comments

Comments
 (0)