summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorTorrey Lyons <torrey@mrcla.com>2005-07-13 16:30:53 +0000
committerTorrey Lyons <torrey@mrcla.com>2005-07-13 16:30:53 +0000
commit1dc3e96e4077a912dd3aa13fa80099f5864b641f (patch)
tree66af07f7dcc54c2a94a389144449883b27808dda /render
parent19e20c1470c1f8d15f2a78fb29545bde06a65516 (diff)
Fix compilation where uint is not defined.
Diffstat (limited to 'render')
-rw-r--r--render/picture.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/render/picture.c b/render/picture.c
index e8f404d33..43a70f405 100644
--- a/render/picture.c
+++ b/render/picture.c
@@ -42,10 +42,6 @@
#include "servermd.h"
#include "picturestr.h"
-#ifdef WIN32
-typedef unsigned int uint;
-#endif
-
int PictureScreenPrivateIndex = -1;
int PictureWindowPrivateIndex;
int PictureGeneration;
@@ -860,10 +856,10 @@ static CARD32 xRenderColorToCard32(xRenderColor c)
(c.blue >> 8);
}
-static uint premultiply(uint x)
+static unsigned int premultiply(unsigned int x)
{
- uint a = x >> 24;
- uint t = (x & 0xff00ff) * a;
+ unsigned int a = x >> 24;
+ unsigned int t = (x & 0xff00ff) * a;
t = (t + ((t >> 8) & 0xff00ff) + 0x800080) >> 8;
t &= 0xff00ff;
@@ -874,7 +870,8 @@ static uint premultiply(uint x)
return x;
}
-static uint INTERPOLATE_PIXEL_256(uint x, uint a, uint y, uint b)
+static unsigned int INTERPOLATE_PIXEL_256(unsigned int x, unsigned int a,
+ unsigned int y, unsigned int b)
{
CARD32 t = (x & 0xff00ff) * a + (y & 0xff00ff) * b;
t >>= 8;
@@ -913,8 +910,8 @@ static void initGradientColorTable(SourcePictPtr pGradient, int *error)
/* Gradient area */
while (pos < end_pos) {
- uint current_color = xRenderColorToCard32(stops[current_stop].color);
- uint next_color = xRenderColorToCard32(stops[current_stop + 1].color);
+ unsigned int current_color = xRenderColorToCard32(stops[current_stop].color);
+ unsigned int next_color = xRenderColorToCard32(stops[current_stop + 1].color);
int dist = (int)(256*(dpos - stops[current_stop].x)
/ (stops[current_stop+1].x - stops[current_stop].x));