[mapserver-commits] r9875 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Tue Feb 23 10:05:24 EST 2010


Author: tamas
Date: 2010-02-23 10:05:23 -0500 (Tue, 23 Feb 2010)
New Revision: 9875

Modified:
   trunk/mapserver/mappdf.c
   trunk/mapserver/mapswf.c
Log:
Updated the msDrawRasterLayerLow calls according to the modified signature.

Modified: trunk/mapserver/mappdf.c
===================================================================
--- trunk/mapserver/mappdf.c	2010-02-23 14:37:43 UTC (rev 9874)
+++ trunk/mapserver/mappdf.c	2010-02-23 15:05:23 UTC (rev 9875)
@@ -1019,7 +1019,7 @@
       return -1;
 
   
-    if (msDrawRasterLayerLow(map, layer, image_tmp) != -1)
+    if (msDrawRasterLayerLow(map, layer, image_tmp, NULL) != -1)
     {
 /* -------------------------------------------------------------------- */
 /*      if it is a RASTER output, just return. At save time the         */

Modified: trunk/mapserver/mapswf.c
===================================================================
--- trunk/mapserver/mapswf.c	2010-02-23 14:37:43 UTC (rev 9874)
+++ trunk/mapserver/mapswf.c	2010-02-23 15:05:23 UTC (rev 9875)
@@ -2921,7 +2921,7 @@
     if( image_tmp == NULL )
       return -1;
 
-    if (msDrawRasterLayerLow(map, layer, image_tmp) != -1)
+    if (msDrawRasterLayerLow(map, layer, image_tmp, NULL) != -1)
     {
         oShape = gdImage2Shape(image_tmp->img.gd, image);
         /* nTmp = ((SWFObj *)image->img.swf)->nCurrentMovie; */



More information about the mapserver-commits mailing list