app/composite/gimp-composite-x86.h applied patch from Andreas Jochens that

2005-01-07  Sven Neumann  <sven@gimp.org>

	* app/composite/gimp-composite-x86.h
	* app/composite/gimp-composite-sse.c: applied patch from Andreas
	Jochens that fixes the build on amd64 with gcc-4.0 (bug #163041).
This commit is contained in:
Sven Neumann 2005-01-07 12:23:44 +00:00 committed by Sven Neumann
parent 89e291685d
commit 829fc5a061
3 changed files with 19 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2005-01-07 Sven Neumann <sven@gimp.org>
* app/composite/gimp-composite-x86.h
* app/composite/gimp-composite-sse.c: applied patch from Andreas
Jochens that fixes the build on amd64 with gcc-4.0 (bug #163041).
2005-01-07 Sven Neumann <sven@gimp.org>
* data/misc/gimp.desktop.in.in: changed Comment field as suggested
@ -96,7 +102,7 @@
* app/menus/plug-in-menus.c: made the code a little more robust by
not relying on certain properties of the menu path.
2005-01-03 Sven Neumann <neumann@jpk.com>
2005-01-03 Sven Neumann <sven@gimp.org>
* tools/pdbgen/pdb/gradient.pdb: do actually add the new procedure
gimp_gradient_is_editable().
@ -137,7 +143,7 @@
* menus/image-menu.xml.in: added them to Image->View.
2005-01-03 Sven Neumann <neumann@jpk.com>
2005-01-03 Sven Neumann <sven@gimp.org>
* plug-ins/ifscompose/ifscompose.c: use g_free() to release memory
allocated using g_malloc().
@ -744,7 +750,7 @@
* plug-ins/common/unsharp.c: more code cleanup and micro
optimizations.
2004-12-21 Sven Neumann <neumann@jpk.com>
2004-12-21 Sven Neumann <sven@gimp.org>
* plug-ins/common/unsharp.c: reverted the last change since it
introduced artefacts. Even had to increase the border around the

View File

@ -48,6 +48,16 @@
#define pminub(src,dst,tmp) "pminub " "%%" #src ", %%" #dst
#define pmaxub(src,dst,tmp) "pmaxub " "%%" #src ", %%" #dst
extern const guint32 rgba8_alpha_mask_64[2];
extern const guint32 rgba8_b1_64[2];
extern const guint32 rgba8_b255_64[2];
extern const guint32 rgba8_w1_64[2];
extern const guint32 rgba8_w2_64[2];
extern const guint32 rgba8_w128_64[2];
extern const guint32 rgba8_w256_64[2];
extern const guint32 rgba8_w255_64[2];
/*
*
*/

View File

@ -241,15 +241,6 @@ typedef unsigned long uint32;
typedef unsigned long long uint64;
typedef struct { uint64 __uint64[2]; } uint128;
extern const guint32 rgba8_alpha_mask_64[2];
extern const guint32 rgba8_b1_64[2];
extern const guint32 rgba8_b255_64[2];
extern const guint32 rgba8_w1_64[2];
extern const guint32 rgba8_w2_64[2];
extern const guint32 rgba8_w128_64[2];
extern const guint32 rgba8_w256_64[2];
extern const guint32 rgba8_w255_64[2];
extern const guint32 va8_alpha_mask[2];
extern const guint32 va8_b255[2];
extern const guint32 va8_w1[2];