diff options
Diffstat (limited to 'render/picture.h')
-rw-r--r-- | render/picture.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/render/picture.h b/render/picture.h index b4e3bd27c..4ed6e6ae0 100644 --- a/render/picture.h +++ b/render/picture.h @@ -160,6 +160,9 @@ extern int PictureCmapPolicy; int PictureParseCmapPolicy (const char *name); +extern int RenderErrBase; +extern int RenderClientPrivateIndex; + /* Fixed point updates from Carl Worth, USC, Information Sciences Institute */ #ifdef WIN32 @@ -183,6 +186,11 @@ typedef long long int xFixed_32_32; # endif #endif +typedef xFixed_32_32 xFixed_48_16; + +#define MAX_FIXED_48_16 ((xFixed_48_16) 0x7fffffff) +#define MIN_FIXED_48_16 (-((xFixed_48_16) 1 << 31)) + typedef CARD32 xFixed_1_31; typedef CARD32 xFixed_1_16; typedef INT32 xFixed_16_16; |