ext/RMagick/rmimage.c in rmagick-1.11.1 vs ext/RMagick/rmimage.c in rmagick-1.12.0
- old
+ new
@@ -1,6 +1,6 @@
-/* $Id: rmimage.c,v 1.146 2006/05/27 21:05:59 rmagick Exp $ */
+/* $Id: rmimage.c,v 1.147 2006/06/02 23:26:53 rmagick Exp $ */
/*============================================================================\
| Copyright (C) 2006 by Timothy P. Hunter
| Name: rmimage.c
| Author: Tim Hunter
| Purpose: Image class method definitions for RMagick
@@ -4576,10 +4576,10 @@
Method: Image#level(black_point=0.0, white_point=MaxRGB, gamma=1.0)
Purpose: adjusts the levels of an image given these points: black, mid, and white
Notes: all three arguments are optional
*/
VALUE
-Image_level(int argc, VALUE *argv, VALUE self)
+Image_level2(int argc, VALUE *argv, VALUE self)
{
Image *image, *new_image;
double black_point = 0.0, gamma = 1.0, white_point = (double)MaxRGB;
char level[50];