xref
: /
aosp_15_r20
/
external
/
angle
/
third_party
/
glslang
/
src
/
Test
/
spv.atomicRvalue.error.vert
(revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#version 440
2
3
void main() {
4
uint a = 5;
5
atomicAdd(a * 2, 0);
6
atomicAdd(a, 0);
7
}
8