[gimp] Get rid of useless const in "const GimpDisplayShell*"
- From: Michael Natterer <mitch src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gimp] Get rid of useless const in "const GimpDisplayShell*"
- Date: Sun, 1 Nov 2009 19:47:56 +0000 (UTC)
commit 10bb9b090f37281394f8b9f1804338993c212492
Author: Michael Natterer <mitch gimp org>
Date: Sun Nov 1 20:47:18 2009 +0100
Get rid of useless const in "const GimpDisplayShell*"
app/display/gimpdisplayshell-render.c | 130 ++++++++++++++++----------------
app/display/gimpdisplayshell-render.h | 18 ++--
2 files changed, 74 insertions(+), 74 deletions(-)
---
diff --git a/app/display/gimpdisplayshell-render.c b/app/display/gimpdisplayshell-render.c
index 838499e..66a575c 100644
--- a/app/display/gimpdisplayshell-render.c
+++ b/app/display/gimpdisplayshell-render.c
@@ -63,49 +63,49 @@ typedef void (* RenderFunc) (RenderInfo *info);
struct _RenderInfo
{
- const GimpDisplayShell *shell;
- TileManager *src_tiles;
- const guchar *src;
- guchar *dest;
- gboolean src_is_premult;
- gint x, y;
- gint w, h;
- gdouble scalex;
- gdouble scaley;
- gint src_x;
- gint src_y;
- gint dest_bpp;
- gint dest_bpl;
- gint dest_width;
-
- gint zoom_quality;
+ GimpDisplayShell *shell;
+ TileManager *src_tiles;
+ const guchar *src;
+ guchar *dest;
+ gboolean src_is_premult;
+ gint x, y;
+ gint w, h;
+ gdouble scalex;
+ gdouble scaley;
+ gint src_x;
+ gint src_y;
+ gint dest_bpp;
+ gint dest_bpl;
+ gint dest_width;
+
+ gint zoom_quality;
/* Bresenham helpers */
- gint x_dest_inc; /* amount to increment for each dest. pixel */
- gint x_src_dec; /* amount to decrement for each source pixel */
- gint64 dx_start; /* pixel fraction for first pixel */
+ gint x_dest_inc; /* amount to increment for each dest. pixel */
+ gint x_src_dec; /* amount to decrement for each source pixel */
+ gint64 dx_start; /* pixel fraction for first pixel */
- gint y_dest_inc;
- gint y_src_dec;
- gint64 dy_start;
+ gint y_dest_inc;
+ gint y_src_dec;
+ gint64 dy_start;
- gint footprint_x;
- gint footprint_y;
- gint footshift_x;
- gint footshift_y;
+ gint footprint_x;
+ gint footprint_y;
+ gint footshift_x;
+ gint footshift_y;
- gint64 dy;
+ gint64 dy;
};
-static void gimp_display_shell_render_info_scale (RenderInfo *info,
- const GimpDisplayShell *shell,
- TileManager *tiles,
- gint level,
- gboolean is_premult);
+static void gimp_display_shell_render_info_scale (RenderInfo *info,
+ GimpDisplayShell *shell,
+ TileManager *tiles,
+ gint level,
+ gboolean is_premult);
-static void gimp_display_shell_render_setup_notify (GObject *config,
- GParamSpec *param_spec,
- Gimp *gimp);
+static void gimp_display_shell_render_setup_notify (GObject *config,
+ GParamSpec *param_spec,
+ Gimp *gimp);
static guchar *tile_buf = NULL;
@@ -188,20 +188,20 @@ gimp_display_shell_render_setup_notify (GObject *config,
/* Render Image functions */
-static void render_image_rgb_a (RenderInfo *info);
-static void render_image_gray_a (RenderInfo *info);
+static void render_image_rgb_a (RenderInfo *info);
+static void render_image_gray_a (RenderInfo *info);
-static const guchar * render_image_tile_fault (RenderInfo *info);
+static const guchar * render_image_tile_fault (RenderInfo *info);
-static void gimp_display_shell_render_highlight (const GimpDisplayShell *shell,
- gint x,
- gint y,
- gint w,
- gint h,
- const GdkRectangle *highlight);
-static void gimp_display_shell_render_mask (const GimpDisplayShell *shell,
- RenderInfo *info);
+static void gimp_display_shell_render_highlight (GimpDisplayShell *shell,
+ gint x,
+ gint y,
+ gint w,
+ gint h,
+ const GdkRectangle *highlight);
+static void gimp_display_shell_render_mask (GimpDisplayShell *shell,
+ RenderInfo *info);
/*****************************************************************/
@@ -212,12 +212,12 @@ static void gimp_display_shell_render_mask (const GimpDisplayShell *shell,
/*****************************************************************/
void
-gimp_display_shell_render (const GimpDisplayShell *shell,
- gint x,
- gint y,
- gint w,
- gint h,
- const GdkRectangle *highlight)
+gimp_display_shell_render (GimpDisplayShell *shell,
+ gint x,
+ gint y,
+ gint w,
+ gint h,
+ const GdkRectangle *highlight)
{
GimpProjection *projection;
GimpImage *image;
@@ -346,12 +346,12 @@ gimp_display_shell_render (const GimpDisplayShell *shell,
/* This function highlights the given area by dimming all pixels outside. */
static void
-gimp_display_shell_render_highlight (const GimpDisplayShell *shell,
- gint x,
- gint y,
- gint w,
- gint h,
- const GdkRectangle *highlight)
+gimp_display_shell_render_highlight (GimpDisplayShell *shell,
+ gint x,
+ gint y,
+ gint w,
+ gint h,
+ const GdkRectangle *highlight)
{
guchar *buf = shell->render_buf;
GdkRectangle rect;
@@ -411,8 +411,8 @@ gimp_display_shell_render_highlight (const GimpDisplayShell *shell,
}
static void
-gimp_display_shell_render_mask (const GimpDisplayShell *shell,
- RenderInfo *info)
+gimp_display_shell_render_mask (GimpDisplayShell *shell,
+ RenderInfo *info)
{
gint y, ye;
gint x, xe;
@@ -596,11 +596,11 @@ render_image_rgb_a (RenderInfo *info)
}
static void
-gimp_display_shell_render_info_scale (RenderInfo *info,
- const GimpDisplayShell *shell,
- TileManager *tiles,
- gint level,
- gboolean is_premult)
+gimp_display_shell_render_info_scale (RenderInfo *info,
+ GimpDisplayShell *shell,
+ TileManager *tiles,
+ gint level,
+ gboolean is_premult)
{
info->src_tiles = tiles;
info->src_is_premult = is_premult;
diff --git a/app/display/gimpdisplayshell-render.h b/app/display/gimpdisplayshell-render.h
index d15a680..f5e14fa 100644
--- a/app/display/gimpdisplayshell-render.h
+++ b/app/display/gimpdisplayshell-render.h
@@ -23,15 +23,15 @@
#define GIMP_DISPLAY_RENDER_BUF_HEIGHT 256
-void gimp_display_shell_render_init (Gimp *gimp);
-void gimp_display_shell_render_exit (Gimp *gimp);
-
-void gimp_display_shell_render (const GimpDisplayShell *shell,
- gint x,
- gint y,
- gint w,
- gint h,
- const GdkRectangle *highlight);
+void gimp_display_shell_render_init (Gimp *gimp);
+void gimp_display_shell_render_exit (Gimp *gimp);
+
+void gimp_display_shell_render (GimpDisplayShell *shell,
+ gint x,
+ gint y,
+ gint w,
+ gint h,
+ const GdkRectangle *highlight);
#endif /* __GIMP_DISPLAY_SHELL_RENDER_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]