changeset 2910:27d8b12e0e8e

Fixed argument order to the line clipping routine
author Sam Lantinga <slouken@libsdl.org>
date Tue, 23 Dec 2008 02:38:28 +0000
parents 3da0bb421d83
children 45664f0e5f68
files src/video/SDL_blendline.c src/video/SDL_drawline.c src/video/SDL_video.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/SDL_blendline.c	Tue Dec 23 02:23:18 2008 +0000
+++ b/src/video/SDL_blendline.c	Tue Dec 23 02:38:28 2008 +0000
@@ -204,7 +204,7 @@
     }
 
     /* Perform clipping */
-    if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &x2, &y1, &y2)) {
+    if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &y1, &x2, &y2)) {
         return (0);
     }
 
--- a/src/video/SDL_drawline.c	Tue Dec 23 02:23:18 2008 +0000
+++ b/src/video/SDL_drawline.c	Tue Dec 23 02:38:28 2008 +0000
@@ -34,7 +34,7 @@
     }
 
     /* Perform clipping */
-    if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &x2, &y1, &y2)) {
+    if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &y1, &x2, &y2)) {
         return (0);
     }
 
--- a/src/video/SDL_video.c	Tue Dec 23 02:23:18 2008 +0000
+++ b/src/video/SDL_video.c	Tue Dec 23 02:38:28 2008 +0000
@@ -2125,7 +2125,7 @@
     real_rect.y = 0;
     real_rect.w = window->w;
     real_rect.h = window->h;
-    if (!SDL_IntersectRectAndLine(&real_rect, &x1, &x2, &y1, &y2)) {
+    if (!SDL_IntersectRectAndLine(&real_rect, &x1, &y1, &x2, &y2)) {
         return (0);
     }
     return renderer->RenderLine(renderer, x1, y1, x2, y2);