[GRASS-SVN] r63559 - in grass/trunk/display: d.his d.rast d.rgb
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Dec 15 05:13:53 PST 2014
Author: martinl
Date: 2014-12-15 05:13:53 -0800 (Mon, 15 Dec 2014)
New Revision: 63559
Modified:
grass/trunk/display/d.his/main.c
grass/trunk/display/d.rast/display.c
grass/trunk/display/d.rgb/main.c
Log:
update modules to r63558
Modified: grass/trunk/display/d.his/main.c
===================================================================
--- grass/trunk/display/d.his/main.c 2014-12-15 13:13:19 UTC (rev 63558)
+++ grass/trunk/display/d.his/main.c 2014-12-15 13:13:53 UTC (rev 63559)
@@ -187,7 +187,7 @@
intensity = 255; /* default is to not change intensity */
saturation = 255; /* default is to not change saturation */
- D_cell_draw_begin();
+ D_raster_draw_begin();
next_row = 0;
for (atrow = 0; atrow < window.rows;) {
@@ -238,7 +238,7 @@
break;
}
G_percent(window.rows, window.rows, 5);
- D_cell_draw_end();
+ D_raster_draw_end();
D_save_command(G_recreate_command());
Modified: grass/trunk/display/d.rast/display.c
===================================================================
--- grass/trunk/display/d.rast/display.c 2014-12-15 13:13:19 UTC (rev 63558)
+++ grass/trunk/display/d.rast/display.c 2014-12-15 13:13:53 UTC (rev 63559)
@@ -61,7 +61,7 @@
/* Allocate space for cell buffer */
xarray = Rast_allocate_buf(data_type);
- D_cell_draw_begin();
+ D_raster_draw_begin();
/* loop for array rows */
for (cur_A_row = 0; cur_A_row != -1;) {
@@ -74,7 +74,7 @@
cur_A_row = D_draw_raster(cur_A_row, xarray, colors, data_type);
}
- D_cell_draw_end();
+ D_raster_draw_end();
G_percent(nrows, nrows, 2);
Modified: grass/trunk/display/d.rgb/main.c
===================================================================
--- grass/trunk/display/d.rgb/main.c 2014-12-15 13:13:19 UTC (rev 63558)
+++ grass/trunk/display/d.rgb/main.c 2014-12-15 13:13:53 UTC (rev 63559)
@@ -106,7 +106,7 @@
/* read in current window */
G_get_window(&window);
- D_cell_draw_begin();
+ D_raster_draw_begin();
next_row = 0;
for (row = 0; row < window.rows;) {
@@ -127,7 +127,7 @@
break;
}
G_percent(window.rows, window.rows, 5);
- D_cell_draw_end();
+ D_raster_draw_end();
D_save_command(G_recreate_command());
D_close_driver();
More information about the grass-commit
mailing list