summaryrefslogtreecommitdiffstats
path: root/tests/bugs/atomic-coerce.slang
Commit message (Collapse)AuthorAge
* Refresh of disabled WGPU tests (#5614)Anders Leino2024-11-21
| | | | | | | | | Some tests are now passing and are enabled. Other tests are still failing, but are given comments categorizing the failures. Tests in the 'Not supported in WGSL' category are also removed from the expected failures list. (Though they are still kept disabled for WebGPU, of course.) This closes #5519.
* Enable WebGPU tests in CI (#5239)Anders Leino2024-10-15
|
* Support atomic intrinsics for Metal (#4473)Jay Kwak2024-06-25
| | | | | | | | | | * Support atomic intrinsics for Metal This commit adds a support for the atomic intrinsics in Metal. The atomic member functions for buffers is not implemented yet. Metal requires the first argument for the atomic functions to be an atomic data type. This implementation rely on the fact that we can do a C-style type casting from a regular data type to an atomic data type.
* Metal compute tests (#4292)skallweitNV2024-06-07
|
* Disable l-value coercion for ref types (#2960)jsmall-nvidia2023-07-05
* Make lvalue coercion not work for ref, to stop problem with atomics (for GLSL output). * Improve some comments.