diff options
Diffstat (limited to 'examples/shadow_maps')
-rw-r--r-- | examples/shadow_maps/ex_shadow_maps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shadow_maps/ex_shadow_maps.c b/examples/shadow_maps/ex_shadow_maps.c index 1423d7a..3b647ee 100644 --- a/examples/shadow_maps/ex_shadow_maps.c +++ b/examples/shadow_maps/ex_shadow_maps.c @@ -41,7 +41,7 @@ int main() { mesh scene[5]; for (int i = 0; i < 4; i++) { - geometry_data geo = geo_create_cuboid(f32x3(2,2,2)); + geometry_data geo = geo_create_cuboid(f32x3(2, 2, 2)); cubes[i] = mesh_create(&geo, true); } @@ -81,7 +81,7 @@ int main() { end_renderpass() */ - + gpu_backend_end_frame(); } |