summaryrefslogtreecommitdiffhomepage
path: root/examples/core/core_smooth_pixelperfect.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-10-17 21:00:20 +0200
committerraysan5 <[email protected]>2021-10-17 21:00:20 +0200
commitcf12992b6a3bdf1f5332111708aa0200525cc60a (patch)
tree70d3e92415c077e626607ee321e7326f123cbe95 /examples/core/core_smooth_pixelperfect.c
parent67a1e84859f903adb0b1d1ab0605c472d31dab8a (diff)
downloadraylib-cf12992b6a3bdf1f5332111708aa0200525cc60a.tar.gz
raylib-cf12992b6a3bdf1f5332111708aa0200525cc60a.zip
Remove trailing spaces
Diffstat (limited to 'examples/core/core_smooth_pixelperfect.c')
-rw-r--r--examples/core/core_smooth_pixelperfect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/core/core_smooth_pixelperfect.c b/examples/core/core_smooth_pixelperfect.c
index 86a64701..e0c6d197 100644
--- a/examples/core/core_smooth_pixelperfect.c
+++ b/examples/core/core_smooth_pixelperfect.c
@@ -84,14 +84,14 @@ int main(void)
//----------------------------------------------------------------------------------
BeginTextureMode(target);
ClearBackground(RAYWHITE);
-
+
BeginMode2D(worldSpaceCamera);
DrawRectanglePro(rec01, origin, rotation, BLACK);
DrawRectanglePro(rec02, origin, -rotation, RED);
DrawRectanglePro(rec03, origin, rotation + 45.0f, BLUE);
EndMode2D();
EndTextureMode();
-
+
BeginDrawing();
ClearBackground(RED);
@@ -109,7 +109,7 @@ int main(void)
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadRenderTexture(target); // Unload render texture
-
+
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------