From 42c1eb9f39a6fc979440f5ee84f2931ab8daf017 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Tue, 17 Feb 2004 00:16:42 +0000 Subject: [PATCH] Revert last commit, please don't commit patches without approval, this Mon Feb 16 19:13:21 2004 Owen Taylor * gdk/gdkdraw.c: Revert last commit, please don't commit patches without approval, this isn't the right way to do it. --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ gdk/gdkdraw.c | 10 ---------- 6 files changed, 25 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5c9ee8db83..00262a90e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Feb 16 19:13:21 2004 Owen Taylor + + * gdk/gdkdraw.c: Revert last commit, please don't commit patches + without approval, this isn't the right way to do it. + 2004-02-16 DindinX * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 5c9ee8db83..00262a90e0 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Mon Feb 16 19:13:21 2004 Owen Taylor + + * gdk/gdkdraw.c: Revert last commit, please don't commit patches + without approval, this isn't the right way to do it. + 2004-02-16 DindinX * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767 diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 5c9ee8db83..00262a90e0 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Mon Feb 16 19:13:21 2004 Owen Taylor + + * gdk/gdkdraw.c: Revert last commit, please don't commit patches + without approval, this isn't the right way to do it. + 2004-02-16 DindinX * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767 diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 5c9ee8db83..00262a90e0 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Mon Feb 16 19:13:21 2004 Owen Taylor + + * gdk/gdkdraw.c: Revert last commit, please don't commit patches + without approval, this isn't the right way to do it. + 2004-02-16 DindinX * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 5c9ee8db83..00262a90e0 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Mon Feb 16 19:13:21 2004 Owen Taylor + + * gdk/gdkdraw.c: Revert last commit, please don't commit patches + without approval, this isn't the right way to do it. + 2004-02-16 DindinX * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767 diff --git a/gdk/gdkdraw.c b/gdk/gdkdraw.c index 342a6d0926..97905bf566 100644 --- a/gdk/gdkdraw.c +++ b/gdk/gdkdraw.c @@ -832,16 +832,6 @@ gdk_draw_segments (GdkDrawable *drawable, g_return_if_fail (GDK_IS_GC (gc)); g_return_if_fail (nsegs >= 0); - while (num_segments >= 32000) - { - GDK_DRAWABLE_GET_CLASS (drawable)->draw_segments (drawable, - gc, - segs, - 32000); - num_segments -= 32000; - segments += 32000; - } - GDK_DRAWABLE_GET_CLASS (drawable)->draw_segments (drawable, gc, segs, nsegs); }