diff --git a/example/clipping.cpp b/example/clipping.cpp index c336128..8179988 100644 --- a/example/clipping.cpp +++ b/example/clipping.cpp @@ -312,7 +312,7 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; theta += (2.f * pi) / 720.f; } } diff --git a/example/clipping2.cpp b/example/clipping2.cpp index c0879c1..f4b4389 100644 --- a/example/clipping2.cpp +++ b/example/clipping2.cpp @@ -288,6 +288,6 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/clipping_textured.cpp b/example/clipping_textured.cpp index 1089656..2a62628 100644 --- a/example/clipping_textured.cpp +++ b/example/clipping_textured.cpp @@ -329,6 +329,6 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/cube.cpp b/example/cube.cpp index 4527d1e..0f05038 100644 --- a/example/cube.cpp +++ b/example/cube.cpp @@ -206,6 +206,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/dump_object_list.cpp b/example/dump_object_list.cpp index 3ca0733..eb9b382 100644 --- a/example/dump_object_list.cpp +++ b/example/dump_object_list.cpp @@ -229,7 +229,7 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; if (frame_ix == 10 && dumped == false) { dump(); diff --git a/example/heart.cpp b/example/heart.cpp index 2b86397..0a24f37 100644 --- a/example/heart.cpp +++ b/example/heart.cpp @@ -322,6 +322,6 @@ void main() constexpr float half_degree = 0.01745329f / 2; theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/icosphere.cpp b/example/icosphere.cpp index 4297c69..88867fe 100644 --- a/example/icosphere.cpp +++ b/example/icosphere.cpp @@ -301,6 +301,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/macaw_cube.cpp b/example/macaw_cube.cpp index 552e172..05abd55 100644 --- a/example/macaw_cube.cpp +++ b/example/macaw_cube.cpp @@ -212,6 +212,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/macaw_cube_render_to_texture.cpp b/example/macaw_cube_render_to_texture.cpp index ece8759..89fdd28 100644 --- a/example/macaw_cube_render_to_texture.cpp +++ b/example/macaw_cube_render_to_texture.cpp @@ -286,6 +286,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/macaw_twiddle.cpp b/example/macaw_twiddle.cpp index 731de6b..76ef105 100644 --- a/example/macaw_twiddle.cpp +++ b/example/macaw_twiddle.cpp @@ -182,6 +182,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/maple_analog.cpp b/example/maple_analog.cpp index b86aba0..030e904 100644 --- a/example/maple_analog.cpp +++ b/example/maple_analog.cpp @@ -229,6 +229,6 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/modifier_volume.cpp b/example/modifier_volume.cpp index aaa79dd..77cf8e0 100644 --- a/example/modifier_volume.cpp +++ b/example/modifier_volume.cpp @@ -263,6 +263,6 @@ void main() constexpr float half_degree = 0.01745329f / 2; theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/modifier_volume_with_two_volumes.cpp b/example/modifier_volume_with_two_volumes.cpp index 4c90ab5..e881bed 100644 --- a/example/modifier_volume_with_two_volumes.cpp +++ b/example/modifier_volume_with_two_volumes.cpp @@ -446,6 +446,6 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/software_ta.cpp b/example/software_ta.cpp index b588571..73fe24f 100644 --- a/example/software_ta.cpp +++ b/example/software_ta.cpp @@ -232,7 +232,7 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; theta += half_degree; } } diff --git a/example/sprite.cpp b/example/sprite.cpp index de57cc8..13ed93f 100644 --- a/example/sprite.cpp +++ b/example/sprite.cpp @@ -134,6 +134,6 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/ta_interrogation.cpp b/example/ta_interrogation.cpp index 4972480..3085f1b 100644 --- a/example/ta_interrogation.cpp +++ b/example/ta_interrogation.cpp @@ -251,7 +251,7 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; if (frame_ix > 10) break; diff --git a/example/translucency.cpp b/example/translucency.cpp index 95a050c..dd65284 100644 --- a/example/translucency.cpp +++ b/example/translucency.cpp @@ -202,6 +202,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/video_output.cpp b/example/video_output.cpp index b9c7db7..61ccc16 100644 --- a/example/video_output.cpp +++ b/example/video_output.cpp @@ -175,6 +175,6 @@ void main() constexpr float half_degree = 0.01745329f / 2.f; theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } } diff --git a/example/viewing_system.cpp b/example/viewing_system.cpp index 20f8188..fbc903a 100644 --- a/example/viewing_system.cpp +++ b/example/viewing_system.cpp @@ -212,7 +212,7 @@ void main() core_flip(frame_ix); while (spg_status::vsync(holly.SPG_STATUS)); - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; delta += pi * 2 / 360; } } diff --git a/example/wiffle_attenuation.cpp b/example/wiffle_attenuation.cpp index d9fefca..889ee52 100644 --- a/example/wiffle_attenuation.cpp +++ b/example/wiffle_attenuation.cpp @@ -312,6 +312,6 @@ void main() while (spg_status::vsync(holly.SPG_STATUS)); theta += half_degree; - frame_ix = (frame_ix + 1) & 1;; + frame_ix = (frame_ix + 1) & 1; } }