summaryrefslogtreecommitdiffstats
path: root/tools/slang-unit-test/unit-test-atomic-reflection.cpp
Commit message (Collapse)AuthorAge
* Hide atomics struct from reflection api (#7520)James Helferty (NVIDIA)2025-06-26
* Atomic reflection unit test Test that Atomic<int> is reflected as a scalar/int instead of a struct named Atomic. * Hide AtomicType from reflection Leverage the fact that returned variables go through convert() to centralize the unwrapping of the AtomicType struct. Fixes #6257 * Clean up unit test a bit - rename bar to buf (since one of them is not Atomic and thus not a barrier) - validate deeper into the fields of bufC - remove debug code