summaryrefslogtreecommitdiff
path: root/miext/cw/cw_render.c
blob: 7d28b7b34a0b20d2628f5f059076e32ad3a88943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/*
 * Copyright © 2004 Eric Anholt
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Eric Anholt not be used in
 * advertising or publicity pertaining to distribution of the software without
 * specific, written prior permission.  Eric Anholt makes no
 * representations about the suitability of this software for any purpose.  It
 * is provided "as is" without express or implied warranty.
 *
 * ERIC ANHOLT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL ERIC ANHOLT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */
/* $Header$ */

#include "gcstruct.h"
#include "windowstr.h"
#include "cw.h"

#ifdef RENDER

#define cwPsDecl(pScreen)	\
    PictureScreenPtr	ps = GetPictureScreen (pScreen);	\
    cwScreenPtr		pCwScreen = getCwScreen (pScreen)

#define cwBackingPicture(pCwPicture, pPicture) \
    ((pCwPicture && pCwPicture->pBackingPicture) ? \
     pCwPicture->pBackingPicture : pPicture)

#define cwPictureDecl								\
    cwPicturePtr    pCwPicture = getCwPicture(pPicture);			\
    PicturePtr	    pBackingPicture = pCwPicture ? pCwPicture->pBackingPicture : 0

#define cwSrcPictureDecl							\
    int		    src_picture_x_off, src_picture_y_off;			\
    PicturePtr	    pBackingSrcPicture = cwGetBackingPicture(pSrcPicture,	\
							     &src_picture_x_off,\
							     &src_picture_y_off)

#define cwDstPictureDecl							\
    int		    dst_picture_x_off, dst_picture_y_off;			\
    PicturePtr	    pBackingDstPicture = cwGetBackingPicture(pDstPicture,	\
							     &dst_picture_x_off,\
							     &dst_picture_y_off)

#define cwMskPictureDecl							\
    int		    msk_picture_x_off = 0, msk_picture_y_off = 0;		\
    PicturePtr	    pBackingMskPicture = (!pMskPicture ? 0 :	    		\
					  cwGetBackingPicture(pMskPicture,	\
							      &msk_picture_x_off,\
							      &msk_picture_y_off))

#define cwPsUnwrap(elt) {	\
    ps->elt = pCwScreen->elt;	\
}

#define cwPsWrap(elt,func) {	\
    pCwScreen->elt = ps->elt;	\
    ps->elt = func;		\
}

static VisualPtr
cwFindVisualById (ScreenPtr pScreen, VisualID visual)
{
    int		i;
    VisualPtr	pVisual;
    for (i = 0, pVisual = pScreen->visuals;
	 i < pScreen->numVisuals;
	 i++, pVisual++)
    {
	if (pVisual->vid == visual)
	    return pVisual;
    }
    return 0;
}

static PicturePtr
cwCreateBackingPicture (PicturePtr pPicture)
{
    ScreenPtr	    pScreen = pPicture->pDrawable->pScreen;
    WindowPtr	    pWindow = (WindowPtr) pPicture->pDrawable;
    PixmapPtr	    pPixmap = (*pScreen->GetWindowPixmap) (pWindow);
    VisualPtr	    pVisual = cwFindVisualById (pScreen, wVisual (pWindow));
    PictFormatPtr   pFormat = PictureMatchVisual (pScreen, pWindow->drawable.depth,
						  pVisual);
    int		    error;
    PicturePtr	    pBackingPicture = CreatePicture (0, &pPixmap->drawable, pFormat,
						     0, 0, serverClient, &error);
    cwPicturePtr    pCwPicture = getCwPicture (pPicture);

    return pCwPicture->pBackingPicture = pBackingPicture;
}

static void
cwDestroyBackingPicture (PicturePtr pPicture)
{
    cwPictureDecl;

    if (pBackingPicture)
    {
	FreePicture (pBackingPicture, 0);
	pCwPicture->pBackingPicture = 0;
    }
}

static PicturePtr
cwGetBackingPicture (PicturePtr pPicture, int *x_off, int *y_off)
{
    cwPictureDecl;

    if (pBackingPicture)
    {
	DrawablePtr pDrawable = pPicture->pDrawable;
	ScreenPtr   pScreen = pDrawable->pScreen;
	WindowPtr   pWin = (WindowPtr) pDrawable;
	PixmapPtr   pPixmap = (*pScreen->GetWindowPixmap) (pWin);

	*x_off = pPixmap->drawable.x - pPixmap->screen_x;
	*y_off = pPixmap->drawable.y - pPixmap->screen_y;

	return pBackingPicture;
    }
    else
    {
	*x_off = *y_off = 0;
	return pPicture;
    }
}

static int
cwCreatePicture (PicturePtr pPicture)
{
    int			ret;
    ScreenPtr		pScreen = pPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);

    cwPsUnwrap (CreatePicture);
    bzero(getCwPicture(pPicture), sizeof(cwPictureRec));
    ret = (*ps->CreatePicture) (pPicture);
    cwPsWrap (CreatePicture, cwCreatePicture);
    return ret;
}
    
static void
cwDestroyPicture (PicturePtr pPicture)
{
    ScreenPtr		pScreen = pPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    
    cwPsUnwrap(DestroyPicture);
    cwDestroyBackingPicture (pPicture);
    (*ps->DestroyPicture) (pPicture);
    cwPsWrap(DestroyPicture, cwDestroyPicture);
}

static void
cwChangePicture (PicturePtr pPicture,
		 Mask	mask)
{
    ScreenPtr		pScreen = pPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwPictureDecl;
    
    cwPsUnwrap(ChangePicture);
    if (pBackingPicture)
    {
	(*ps->ChangePicture) (pBackingPicture, mask);
    }
    else
    {
	(*ps->ChangePicture) (pPicture, mask);
    }
    cwPsWrap(ChangePicture, cwChangePicture);
}
		 
static void
cwValidatePicture (PicturePtr pPicture,
		   Mask       mask)
{
    ScreenPtr		pScreen = pPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwPictureDecl;
    
    cwPsUnwrap(ValidatePicture);
    (*ps->ValidatePicture) (pPicture, mask);
    if (!cwDrawableIsRedirWindow (pPicture->pDrawable))
    {
	if (pBackingPicture)
	    cwDestroyBackingPicture (pPicture);
    }
    else
    {
	DrawablePtr pDrawable = pPicture->pDrawable;
	WindowPtr   pWin = (WindowPtr) (pDrawable);
	DrawablePtr pBackingDrawable;
	int	    x_off, y_off;
	
	if (pBackingPicture && pBackingPicture->pDrawable != 
	    &(*pScreen->GetWindowPixmap) ((WindowPtr) pPicture->pDrawable)->drawable)
	{
	    cwDestroyBackingPicture (pPicture);
	    pBackingPicture = 0;
	}

	if (!pBackingPicture)
	{
	    pBackingPicture = cwCreateBackingPicture (pPicture);
	    if (!pBackingPicture)
	    {
		cwPsWrap(ValidatePicture, cwValidatePicture);
		return;
	    }
	}

	pBackingDrawable = cwGetBackingDrawable (&pWin->drawable, &x_off, &y_off);
	
	/* Check to see if a new composite clip must be generated */

	if (pDrawable->serialNumber != pCwPicture->serialNumber ||
	    (mask & (CPClipXOrigin|CPClipYOrigin|CPClipMask|CPSubwindowMode)))
	{
	    RegionPtr	pCompositeClip;

	    pCompositeClip = REGION_CREATE(pScreen, NULL, 1);
	    /* note - CT_PIXMAP "cannot" happen because no DDX supports it*/
	    REGION_COPY (pScreen, pCompositeClip, pPicture->pCompositeClip);
	    SetPictureClipRegion (pBackingPicture, -x_off, -y_off,
				  pCompositeClip);
	    pCwPicture->serialNumber = pDrawable->serialNumber;
	}
	mask |= pCwPicture->stateChanges;
	(*ps->ValidatePicture) (pBackingPicture, mask);
	pCwPicture->stateChanges = 0;
	pBackingPicture->serialNumber = pBackingDrawable->serialNumber;
    }
    cwPsWrap(ValidatePicture, cwValidatePicture);
}

static void
cwComposite (CARD8	op,
	     PicturePtr pSrcPicture,
	     PicturePtr pMskPicture,
	     PicturePtr pDstPicture,
	     INT16	xSrc,
	     INT16	ySrc,
	     INT16	xMsk,
	     INT16	yMsk,
	     INT16	xDst,
	     INT16	yDst,
	     CARD16	width,
	     CARD16	height)
{
    ScreenPtr	pScreen = pDstPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwSrcPictureDecl;
    cwMskPictureDecl;
    cwDstPictureDecl;
    
    cwPsUnwrap(Composite);
    (*ps->Composite) (op, pBackingSrcPicture, pBackingMskPicture, pBackingDstPicture,
		      xSrc + src_picture_x_off, ySrc + src_picture_y_off,
		      xMsk + msk_picture_x_off, yMsk + msk_picture_y_off,
		      xDst + dst_picture_x_off, yDst + dst_picture_y_off,
		      width, height);
    cwPsWrap(Composite, cwComposite);
}

static void
cwGlyphs (CARD8      op,
	  PicturePtr pSrcPicture,
	  PicturePtr pDstPicture,
	  PictFormatPtr  maskFormat,
	  INT16      xSrc,
	  INT16      ySrc,
	  int	nlists,
	  GlyphListPtr   lists,
	  GlyphPtr	*glyphs)
{
    ScreenPtr	pScreen = pDstPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwSrcPictureDecl;
    cwDstPictureDecl;
    
    cwPsUnwrap(Glyphs);
    if (nlists)
    {
	lists->xOff += dst_picture_x_off;
	lists->yOff += dst_picture_y_off;
    }
    (*ps->Glyphs) (op, pBackingSrcPicture, pBackingDstPicture, maskFormat,
		   xSrc + src_picture_x_off, ySrc + src_picture_y_off,
		   nlists, lists, glyphs);
    if (nlists)
    {
	lists->xOff -= dst_picture_x_off;
	lists->yOff -= dst_picture_y_off;
    }
    cwPsWrap(Glyphs, cwGlyphs);
}

static void
cwCompositeRects (CARD8		op,
		  PicturePtr	pDstPicture,
		  xRenderColor  *color,
		  int		nRect,
		  xRectangle	*rects)
{
    ScreenPtr	pScreen = pDstPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwDstPictureDecl;
    int i;
    
    cwPsUnwrap(CompositeRects);
    for (i = 0; i < nRect; i++)
    {
	rects[i].x += dst_picture_x_off;
	rects[i].y += dst_picture_y_off;
    }
    (*ps->CompositeRects) (op, pBackingDstPicture, color, nRect, rects);
    for (i = 0; i < nRect; i++)
    {
	rects[i].x -= dst_picture_x_off;
	rects[i].y -= dst_picture_y_off;
    }
    cwPsWrap(CompositeRects, cwCompositeRects);
}

static void
cwTrapezoids (CARD8	    op,
	      PicturePtr    pSrcPicture,
	      PicturePtr    pDstPicture,
	      PictFormatPtr maskFormat,
	      INT16	    xSrc,
	      INT16	    ySrc,
	      int	    ntrap,
	      xTrapezoid    *traps)
{
    ScreenPtr	pScreen = pDstPicture->pDrawable->pScreen;
    cwPsDecl(pScreen);
    cwSrcPictureDecl;
    cwDstPictureDecl;
    int i;
    
    cwPsUnwrap(Trapezoids);
    if (dst_picture_x_off | dst_picture_y_off)
	for (i = 0; i < ntrap; i++)
	{
	    traps[i].top += dst_picture_y_off << 16;
	    traps[i].bottom += dst_picture_y_off << 16;
	    traps[i].left.p1.x += dst_picture_x_off << 16;
	    traps[i].left.p1.y += dst_picture_y_off << 16;
	    traps[i].left.p2.x += dst_picture_x_off << 16;
	    traps[i].left.p2.y += dst_picture_y_off << 16;
	    traps[i].right.p1.x += dst_picture_x_off << 16;
	    traps[i].right.p1.y += dst_picture_y_off << 16;
	    traps[i].right.p2.x += dst_picture_x_off << 16;
	    traps[i].right.p2.y += dst_picture_y_off << 16;
	}
    (*ps->Trapezoids) (op, pBackingSrcPicture, pBackingDstPicture, maskFormat,
		       xSrc + src_picture_x_off, ySrc + src_picture_y_off,
		       ntrap, traps);
    if (dst_picture_x_off | dst_picture_y_off)
	for (i = 0; i < ntrap; i++)
	{
	    traps[i].top -= dst_picture_y_off << 16;
	    traps[i].bottom -= dst_picture_y_off << 16;
	    traps[i].left.p1.x -= dst_picture_x_off << 16;
	    traps[i].left.p1.y -= dst_picture_y_off << 16;
	    traps[i].left.p2.x -= dst_picture_x_off << 16;
	    traps[i].left.p2.y -= dst_picture_y_off << 16;
	    traps[i].right.p1.x -= dst_picture_x_off << 16;
	    traps[i].right.p1.y -= dst_picture_y_off << 16;
	    traps[i].right.p2.x -= dst_picture_x_off << 16;
	    traps[i].right.p2.y -= dst_picture_y_off << 16;
	}
    cwPsWrap(Trapezoids, cwTrapezoids);
}

static void
cwTriangles (CARD8	    op,
	     PicturePtr	    pSrc,
	     PicturePtr	    pDst,
	     PictFormatPtr  maskFormat,
	     INT16	    xSrc,
	     INT16	    ySrc,
	     int	    ntri,
	     xTriangle	    *tris)
{
    /* FIXME */
}

static void
cwTriStrip (CARD8	    op,
					     PicturePtr	    pSrc,
					     PicturePtr	    pDst,
					     PictFormatPtr  maskFormat,
					     INT16	    xSrc,
					     INT16	    ySrc,
					     int	    npoint,
					     xPointFixed    *points)
{
    /* FIXME */
}

static void
cwTriFan (CARD8	    op,
					     PicturePtr	    pSrc,
					     PicturePtr	    pDst,
					     PictFormatPtr  maskFormat,
					     INT16	    xSrc,
					     INT16	    ySrc,
					     int	    npoint,
					     xPointFixed    *points)
{
    /* FIXME */
}

Bool
cwInitializeRender (ScreenPtr pScreen)
{
    cwPsDecl (pScreen);

    if (!AllocatePicturePrivate (pScreen, cwPictureIndex, sizeof(cwPictureRec)))
	return FALSE;
    cwPsWrap(CreatePicture, cwCreatePicture);
    cwPsWrap(DestroyPicture, cwDestroyPicture);
    cwPsWrap(ChangePicture, cwChangePicture);
    cwPsWrap(ValidatePicture, cwValidatePicture);
    cwPsWrap(Composite, cwComposite);
    cwPsWrap(Glyphs, cwGlyphs);
    cwPsWrap(CompositeRects, cwCompositeRects);
    cwPsWrap(Trapezoids, cwTrapezoids);
    cwPsWrap(Triangles, cwTriangles);
    cwPsWrap(TriStrip, cwTriStrip);
    cwPsWrap(TriFan, cwTriFan);
    return TRUE;
}

#endif /* RENDER */