From 94cca68983f4f5db218925721492abff262ef78e Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Tue, 23 May 2000 22:28:07 +0000 Subject: [PATCH] added a missing proto --- ext/gd/gd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 7972693bb7..63686cc9ca 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1051,6 +1051,8 @@ PHP_FUNCTION(imagecolorsforindex) } /* }}} */ +/* {{{ proto int imagegammacorrect(int im, double inputgamma, double outputgamma) + Apply a gamma correction to a GD image */ PHP_FUNCTION(imagegammacorrect) { zval **IM, **inputgamma, **outputgamma; @@ -1076,6 +1078,7 @@ PHP_FUNCTION(imagegammacorrect) RETURN_TRUE; } +/* }}} */ /* {{{ proto int imagesetpixel(int im, int x, int y, int col) Set a single pixel */ -- 2.50.1