Skip to content

Commit 8df4d49

Browse files
Add missing semicolon.
1 parent fc1fde2 commit 8df4d49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Graphics/MeshShaders/SimpleLines.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void main(uint groupThreadID: SV_GroupThreadID, out vertices PSInput verts[32],
2020

2121
const float radius = 0.5;
2222
const float angle = float(groupThreadID) / 32.0f;
23-
const float tau = 2.0 * 3.14159265359
23+
const float tau = 2.0 * 3.14159265359;
2424
const float x = cos(angle * tau) * radius;
2525
const float y = sin(angle * tau) * radius;
2626

0 commit comments

Comments
 (0)