2 /**************************************************************************
4 Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
7 Permission is hereby granted, free of charge, to any person obtaining a
8 copy of this software and associated documentation files (the
9 "Software"), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sub license, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
15 The above copyright notice and this permission notice (including the
16 next paragraph) shall be included in all copies or substantial portions
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
23 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 **************************************************************************/
31 * Kevin E. Martin <kevin@precisioninsight.com>
33 * $Header: /cvsroot/mesa3d/Mesa/include/GL/xmesa_xf86.h,v 1.5 2000/04/05 22:09:10 brianp Exp $
36 #ifndef _XMESA_XF86_H_
37 #define _XMESA_XF86_H_
39 #include "scrnintstr.h"
40 #include "pixmapstr.h"
42 typedef struct _XMesaImageRec XMesaImage;
44 typedef ScreenRec XMesaDisplay;
45 typedef PixmapPtr XMesaPixmap;
46 typedef ColormapPtr XMesaColormap;
47 typedef DrawablePtr XMesaDrawable;
48 typedef WindowPtr XMesaWindow;
49 typedef GCPtr XMesaGC;
50 typedef VisualPtr XMesaVisualInfo;
51 typedef DDXPointRec XMesaPoint;
52 typedef xColorItem XMesaColor;
54 #define XMesaSetGeneric(__d,__gc,__val,__mask) \
59 dixChangeGC(NullClient, __gc, __mask, __v, NULL); \
62 #define XMesaSetGenericPtr(__d,__gc,__pval,__mask) \
66 __v[0].ptr = __pval; \
67 dixChangeGC(NullClient, __gc, __mask, NULL, __v); \
70 #define XMesaSetDashes(__d,__gc,__do,__dl,__n) \
73 SetDashes(__gc, __do, __n, (unsigned char *)__dl); \
76 #define XMesaSetLineAttributes(__d,__gc,__lw,__ls,__cs,__js) \
84 dixChangeGC(NullClient, __gc, \
85 GCLineWidth|GCLineStyle|GCCapStyle|GCJoinStyle, \
89 #define XMesaSetForeground(d,gc,v) XMesaSetGeneric(d,gc,v,GCForeground)
90 #define XMesaSetBackground(d,gc,v) XMesaSetGeneric(d,gc,v,GCBackground)
91 #define XMesaSetPlaneMask(d,gc,v) XMesaSetGeneric(d,gc,v,GCPlaneMask)
92 #define XMesaSetFunction(d,gc,v) XMesaSetGeneric(d,gc,v,GCFunction)
93 #define XMesaSetFillStyle(d,gc,v) XMesaSetGeneric(d,gc,v,GCFillStyle)
95 #define XMesaSetTile(d,gc,v) XMesaSetGenericPtr(d,gc,v,GCTile)
96 #define XMesaSetStipple(d,gc,v) XMesaSetGenericPtr(d,gc,v,GCStipple)
98 #define XMesaDrawPoint(__d,__b,__gc,__x,__y) \
104 ValidateGC(__b, __gc); \
105 (*gc->ops->PolyPoint)(__b, __gc, CoordModeOrigin, 1, __p); \
108 #define XMesaDrawPoints(__d,__b,__gc,__p,__n,__m) \
111 ValidateGC(__b, __gc); \
112 (*gc->ops->PolyPoint)(__b, __gc, __m, __n, __p); \
115 #define XMesaDrawLine(__d,__b,__gc,__x0,__y0,__x1,__y1) \
119 ValidateGC(__b, __gc); \
124 (*__gc->ops->Polylines)(__b, __gc, CoordModeOrigin, 2, __p); \
127 #define XMesaFillRectangle(__d,__b,__gc,__x,__y,__w,__h) \
131 ValidateGC((DrawablePtr)__b, __gc); \
134 __r[0].width = __w; \
135 __r[0].height = __h; \
136 (*__gc->ops->PolyFillRect)((DrawablePtr)__b, __gc, 1, __r); \
139 #define XMesaPutImage(__d,__b,__gc,__i,__sx,__sy,__x,__y,__w,__h) \
141 /* Assumes: Images are always in ZPixmap format */ \
143 if (__sx || __sy) /* The non-trivial case */ \
144 XMesaPutImageHelper(__d,__b,__gc,__i,__sx,__sy,__x,__y,__w,__h); \
145 ValidateGC(__b, __gc); \
146 (*__gc->ops->PutImage)(__b, __gc, ((XMesaDrawable)(__b))->depth, \
147 __x, __y, __w, __h, 0, ZPixmap, \
148 ((XMesaImage *)(__i))->data); \
151 #define XMesaCopyArea(__d,__sb,__db,__gc,__sx,__sy,__w,__h,__x,__y) \
154 ValidateGC(__db, __gc); \
155 (*__gc->ops->CopyArea)((DrawablePtr)__sb, __db, __gc, \
156 __sx, __sy, __w, __h, __x, __y); \
159 #define XMesaFillPolygon(__d,__b,__gc,__p,__n,__s,__m) \
162 ValidateGC(__b, __gc); \
163 (*__gc->ops->FillPolygon)(__b, __gc, __s, __m, __n, __p); \
166 /* CreatePixmap returns a PixmapPtr; so, it cannot be inside braces */
167 #define XMesaCreatePixmap(__d,__b,__w,__h,__depth) \
168 (*__d->CreatePixmap)(__d, __w, __h, __depth)
169 #define XMesaFreePixmap(__d,__b) \
170 (*__d->DestroyPixmap)(__b)
172 #define XMesaFreeGC(__d,__gc) \
175 FreeScratchGC(__gc); \
178 #define GET_COLORMAP_SIZE(__v) __v->visinfo->ColormapEntries
179 #define GET_REDMASK(__v) __v->visinfo->redMask
180 #define GET_GREENMASK(__v) __v->visinfo->greenMask
181 #define GET_BLUEMASK(__v) __v->visinfo->blueMask
182 #define GET_VISUAL_CLASS(__v) __v->visinfo->class
183 #define GET_VISUAL_DEPTH(__v) __v->visinfo->nplanes
184 #define GET_BLACK_PIXEL(__v) __v->display->blackPixel
185 #define CHECK_BYTE_ORDER(__v) GL_TRUE
186 #define CHECK_FOR_HPCR(__v) GL_FALSE