Convert "unsigned long" to guint32 in preparation for 64bit machinery.

* app/composite/gimp-composite-mmx.c
  app/composite/gimp-composite-sse.c
  app/composite/gimp-composite-sse2.c:
  Convert "unsigned long" to guint32 in preparation for 64bit
  machinery.
This commit is contained in:
Helvetix Victorinox 2003-09-06 23:56:05 +00:00
parent 4ede9ffbd6
commit 0b53610c8b
4 changed files with 37 additions and 30 deletions

View File

@ -1,3 +1,11 @@
2003-09-06 Helvetix Victorinox <helvetix@gimp.org>
* app/composite/gimp-composite-mmx.c
app/composite/gimp-composite-sse.c
app/composite/gimp-composite-sse2.c:
Convert "unsigned long" to guint32 in preparation for 64bit
machinery.
2003-09-06 Michael Natterer <mitch@gimp.org>
* app/widgets/gimppreviewrenderertextlayer.[ch]: removed.

View File

@ -159,20 +159,19 @@ debug_display_mmx(void)
printf("--------------------------------------------\n");
}
const static guint32 rgba8_alpha_mask[2] = { 0xFF000000, 0xFF000000 };
const static guint32 rgba8_b1[2] = { 0x01010101, 0x01010101 };
const static guint32 rgba8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static guint32 rgba8_w1[2] = { 0x00010001, 0x00010001 };
const static guint32 rgba8_w2[2] = { 0x00020002, 0x00020002 };
const static guint32 rgba8_w128[2] = { 0x00800080, 0x00800080 };
const static guint32 rgba8_w256[2] = { 0x01000100, 0x01000100 };
const static guint32 rgba8_w255[2] = { 0X00FF00FF, 0X00FF00FF };
const static unsigned long rgba8_alpha_mask[2] = { 0xFF000000, 0xFF000000 };
const static unsigned long rgba8_b1[2] = { 0x01010101, 0x01010101 };
const static unsigned long rgba8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static unsigned long rgba8_w1[2] = { 0x00010001, 0x00010001 };
const static unsigned long rgba8_w2[2] = { 0x00020002, 0x00020002 };
const static unsigned long rgba8_w128[2] = { 0x00800080, 0x00800080 };
const static unsigned long rgba8_w256[2] = { 0x01000100, 0x01000100 };
const static unsigned long rgba8_w255[2] = { 0X00FF00FF, 0X00FF00FF };
const static unsigned long va8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00 };
const static unsigned long va8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static unsigned long va8_w1[2] = { 0x00010001, 0x00010001 };
const static unsigned long va8_w255[2] = { 0x00FF00FF, 0x00FF00FF };
const static guint32 va8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00 };
const static guint32 va8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static guint32 va8_w1[2] = { 0x00010001, 0x00010001 };
const static guint32 va8_w255[2] = { 0x00FF00FF, 0x00FF00FF };
/*
*
@ -1327,8 +1326,8 @@ gimp_composite_swap_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *_op)
#if 0
const static unsigned long v8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00};
const static unsigned long v8_mul_shift[2] = { 0x00800080, 0x00800080 };
const static guint32 v8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00};
const static guint32 v8_mul_shift[2] = { 0x00800080, 0x00800080 };
void
gimp_composite_addition_va8_va8_va8_mmx (GimpCompositeContext *_op)

View File

@ -146,19 +146,19 @@
"\tpunpckhbw %%"#zero", %%"#dst"\n"
const static unsigned long rgba8_alpha_mask[2] = { 0xFF000000, 0xFF000000 };
const static unsigned long rgba8_b1[2] = { 0x01010101, 0x01010101 };
const static unsigned long rgba8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static unsigned long rgba8_w1[2] = { 0x00010001, 0x00010001 };
const static unsigned long rgba8_w2[2] = { 0x00020002, 0x00020002 };
const static unsigned long rgba8_w128[2] = { 0x00800080, 0x00800080 };
const static unsigned long rgba8_w256[2] = { 0x01000100, 0x01000100 };
const static unsigned long rgba8_w255[2] = { 0X00FF00FF, 0X00FF00FF };
const static guint32 rgba8_alpha_mask[2] = { 0xFF000000, 0xFF000000 };
const static guint32 rgba8_b1[2] = { 0x01010101, 0x01010101 };
const static guint32 rgba8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static guint32 rgba8_w1[2] = { 0x00010001, 0x00010001 };
const static guint32 rgba8_w2[2] = { 0x00020002, 0x00020002 };
const static guint32 rgba8_w128[2] = { 0x00800080, 0x00800080 };
const static guint32 rgba8_w256[2] = { 0x01000100, 0x01000100 };
const static guint32 rgba8_w255[2] = { 0X00FF00FF, 0X00FF00FF };
const static unsigned long va8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00 };
const static unsigned long va8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static unsigned long va8_w1[2] = { 0x00010001, 0x00010001 };
const static unsigned long va8_w255[2] = { 0x00FF00FF, 0x00FF00FF };
const static guint32 va8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00 };
const static guint32 va8_b255[2] = { 0xFFFFFFFF, 0xFFFFFFFF };
const static guint32 va8_w1[2] = { 0x00010001, 0x00010001 };
const static guint32 va8_w255[2] = { 0x00FF00FF, 0x00FF00FF };
/*
*
@ -1313,8 +1313,8 @@ gimp_composite_swap_rgba8_rgba8_rgba8_sse (GimpCompositeContext *_op)
#if 0
const static unsigned long v8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00};
const static unsigned long v8_mul_shift[2] = { 0x00800080, 0x00800080 };
const static guint32 v8_alpha_mask[2] = { 0xFF00FF00, 0xFF00FF00};
const static guint32 v8_mul_shift[2] = { 0x00800080, 0x00800080 };
void
xxxgimp_composite_addition_va8_va8_va8_sse (GimpCompositeContext *_op)

View File

@ -40,7 +40,7 @@
#define pminub(src,dst,tmp) "pminub " "%%" #src ", %%" #dst
#define pmaxub(src,dst,tmp) "pmaxub " "%%" #src ", %%" #dst
const static unsigned long rgba8_alpha_mask_128[4] = { 0xFF000000, 0xFF000000, 0xFF000000, 0xFF000000 };
const static guint32 rgba8_alpha_mask_128[4] = { 0xFF000000, 0xFF000000, 0xFF000000, 0xFF000000 };
void
debug_display_sse(void)