gdk_image_get_pixel, gdk_image_put_pixel: Fixed sense of bounds checks.

This commit is contained in:
Bill Haneman 2002-10-07 15:16:06 +00:00
parent 285c8f78fc
commit 4494b086fd
10 changed files with 49 additions and 13 deletions

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -1,3 +1,9 @@
Mon Oct 7 16:07:52 2002 Bill Haneman <bill.haneman@sun.com>
* gdk/x11/gdkimage-x11.c gdk/linux-fb/gdkimage-x11.c
gdk/win32/gdkimage-x11.c: (gdk_image_get_pixel):
(gdk_image_put_pixel): Fixed sense of bounds checks.
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch]

View File

@ -264,8 +264,8 @@ gdk_image_get_pixel (GdkImage *image,
GdkImagePrivateFB *private;
g_return_val_if_fail (image != NULL, 0);
g_return_val_if_fail (x < 0 || x >= image->width, 0);
g_return_val_if_fail (y < 0 || y >= image->height, 0);
g_return_val_if_fail (x >= 0 && x < image->width, 0);
g_return_val_if_fail (y >= 0 && y < image->height, 0);
private = GDK_IMAGE_PRIVATE_DATA (image);
@ -298,8 +298,8 @@ gdk_image_put_pixel (GdkImage *image,
guchar *ptr = image->mem;
g_return_if_fail (image != NULL);
g_return_if_fail (x < 0 || x >= image->width);
g_return_if_fail (y < 0 || y >= image->height);
g_return_if_fail (x >= 0 && x < image->width);
g_return_if_fail (y >= 0 && y < image->height);
switch (image->depth)
{

View File

@ -265,8 +265,8 @@ gdk_image_get_pixel (GdkImage *image,
guchar *pixelp;
g_return_val_if_fail (image != NULL, 0);
g_return_val_if_fail (x < 0 || x >= image->width, 0);
g_return_val_if_fail (y < 0 || y >= image->height, 0);
g_return_val_if_fail (x >= 0 && x < image->width, 0);
g_return_val_if_fail (y >= 0 && y < image->height, 0);
if (!(x >= 0 && x < image->width && y >= 0 && y < image->height))
return 0;
@ -313,8 +313,8 @@ gdk_image_put_pixel (GdkImage *image,
guchar *pixelp;
g_return_if_fail (image != NULL);
g_return_if_fail (x < 0 || x >= image->width);
g_return_if_fail (y < 0 || y >= image->height);
g_return_if_fail (x >= 0 && x < image->width);
g_return_if_fail (y >= 0 && y < image->height);
if (!(x >= 0 && x < image->width && y >= 0 && y < image->height))
return;

View File

@ -1255,7 +1255,7 @@ draw_with_images (GdkDrawable *drawable,
GDK_PIXMAP_XID (pix),
mask_format, 0, NULL);
dest_pict = gdk_x11_drawable_get_picture (drawable);
dest_pict = gdk_x11_drawable_get_picture (drawable);
pix_gc = gdk_gc_new (pix);

View File

@ -697,8 +697,8 @@ gdk_image_get_pixel (GdkImage *image,
GdkImagePrivateX11 *private;
g_return_val_if_fail (GDK_IS_IMAGE (image), 0);
g_return_val_if_fail (x < 0 || x >= image->width, 0);
g_return_val_if_fail (y < 0 || y >= image->height, 0);
g_return_val_if_fail (x >= 0 && x < image->width, 0);
g_return_val_if_fail (y >= 0 && y < image->height, 0);
private = PRIVATE_DATA (image);
@ -719,8 +719,8 @@ gdk_image_put_pixel (GdkImage *image,
GdkImagePrivateX11 *private;
g_return_if_fail (GDK_IS_IMAGE (image));
g_return_if_fail (x < 0 || x >= image->width);
g_return_if_fail (y < 0 || y >= image->height);
g_return_if_fail (x >= 0 && x < image->width);
g_return_if_fail (y >= 0 && y < image->height);
private = PRIVATE_DATA (image);