~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to mfb/mfbtile.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XFree86: xc/programs/Xserver/mfb/mfbtile.c,v 1.3 2003/02/18 21:30:01 tsi Exp $ */
 
2
/* Combined Purdue/PurduePlus patches, level 2.0, 1/17/89 */
 
3
/***********************************************************
 
4
 
 
5
Copyright 1987, 1998  The Open Group
 
6
 
 
7
Permission to use, copy, modify, distribute, and sell this software and its
 
8
documentation for any purpose is hereby granted without fee, provided that
 
9
the above copyright notice appear in all copies and that both that
 
10
copyright notice and this permission notice appear in supporting
 
11
documentation.
 
12
 
 
13
The above copyright notice and this permission notice shall be included in
 
14
all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
19
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
20
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
21
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
 
 
23
Except as contained in this notice, the name of The Open Group shall not be
 
24
used in advertising or otherwise to promote the sale, use or other dealings
 
25
in this Software without prior written authorization from The Open Group.
 
26
 
 
27
 
 
28
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
 
29
 
 
30
                        All Rights Reserved
 
31
 
 
32
Permission to use, copy, modify, and distribute this software and its 
 
33
documentation for any purpose and without fee is hereby granted, 
 
34
provided that the above copyright notice appear in all copies and that
 
35
both that copyright notice and this permission notice appear in 
 
36
supporting documentation, and that the name of Digital not be
 
37
used in advertising or publicity pertaining to distribution of the
 
38
software without specific, written prior permission.  
 
39
 
 
40
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 
41
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 
42
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 
43
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 
44
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 
45
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 
46
SOFTWARE.
 
47
 
 
48
******************************************************************/
 
49
/* $Xorg: mfbtile.c,v 1.4 2001/02/09 02:05:19 xorgcvs Exp $ */
 
50
#ifdef HAVE_DIX_CONFIG_H
 
51
#include <dix-config.h>
 
52
#endif
 
53
 
 
54
#include <X11/X.h>
 
55
 
 
56
#include "windowstr.h"
 
57
#include "regionstr.h"
 
58
#include "pixmapstr.h"
 
59
#include "scrnintstr.h"
 
60
 
 
61
#include "mfb.h"
 
62
#include "maskbits.h"
 
63
 
 
64
#include "mergerop.h"
 
65
/* 
 
66
 
 
67
   the boxes are already translated.
 
68
 
 
69
   NOTE:
 
70
   iy = ++iy < tileHeight ? iy : 0
 
71
is equivalent to iy%= tileheight, and saves a division.
 
72
*/
 
73
 
 
74
/* 
 
75
    tile area with a PPW bit wide pixmap 
 
76
*/
 
77
void
 
78
MROP_NAME(mfbTileAreaPPW)(pDraw, nbox, pbox, alu, ptile)
 
79
    DrawablePtr pDraw;
 
80
    int nbox;
 
81
    BoxPtr pbox;
 
82
    int alu;
 
83
    PixmapPtr ptile;
 
84
{
 
85
    register PixelType *psrc;
 
86
                        /* pointer to bits in tile, if needed */
 
87
    int tileHeight;     /* height of the tile */
 
88
    register PixelType srcpix;  
 
89
    int nlwidth;        /* width in longwords of the drawable */
 
90
    int w;              /* width of current box */
 
91
    MROP_DECLARE_REG ()
 
92
    register int h;     /* height of current box */
 
93
    register int nlw;   /* loop version of nlwMiddle */
 
94
    register PixelType *p;      /* pointer to bits we're writing */
 
95
    PixelType startmask;
 
96
    PixelType endmask;  /* masks for reggedy bits at either end of line */
 
97
    int nlwMiddle;      /* number of longwords between sides of boxes */
 
98
    int nlwExtra;       /* to get from right of box to left of next span */
 
99
    register int iy;    /* index of current scanline in tile */
 
100
    PixelType *pbits;   /* pointer to start of drawable */
 
101
 
 
102
    mfbGetPixelWidthAndPointer(pDraw, nlwidth, pbits);
 
103
 
 
104
    MROP_INITIALIZE(alu,~0)
 
105
 
 
106
    tileHeight = ptile->drawable.height;
 
107
    psrc = (PixelType *)(ptile->devPrivate.ptr);
 
108
 
 
109
    while (nbox--)
 
110
    {
 
111
        w = pbox->x2 - pbox->x1;
 
112
        h = pbox->y2 - pbox->y1;
 
113
        iy = pbox->y1 % tileHeight;
 
114
        p = mfbScanline(pbits, pbox->x1, pbox->y1, nlwidth);
 
115
 
 
116
        if ( ((pbox->x1 & PIM) + w) < PPW)
 
117
        {
 
118
            maskpartialbits(pbox->x1, w, startmask);
 
119
            nlwExtra = nlwidth;
 
120
            while (h--)
 
121
            {
 
122
                srcpix = psrc[iy];
 
123
                iy++;
 
124
                if (iy == tileHeight)
 
125
                    iy = 0;
 
126
                *p = MROP_MASK(srcpix,*p,startmask);
 
127
                mfbScanlineInc(p, nlwExtra);
 
128
            }
 
129
        }
 
130
        else
 
131
        {
 
132
            maskbits(pbox->x1, w, startmask, endmask, nlwMiddle);
 
133
            nlwExtra = nlwidth - nlwMiddle;
 
134
 
 
135
            if (startmask && endmask)
 
136
            {
 
137
                nlwExtra -= 1;
 
138
                while (h--)
 
139
                {
 
140
                    srcpix = psrc[iy];
 
141
                    iy++;
 
142
                    if (iy == tileHeight)
 
143
                        iy = 0;
 
144
                    nlw = nlwMiddle;
 
145
                    *p = MROP_MASK (srcpix,*p,startmask);
 
146
                    p++;
 
147
                    while (nlw--)
 
148
                    {
 
149
                        *p = MROP_SOLID(srcpix,*p);
 
150
                        p++;
 
151
                    }
 
152
 
 
153
                    *p = MROP_MASK(srcpix,*p,endmask);
 
154
                    mfbScanlineInc(p, nlwExtra);
 
155
                }
 
156
            }
 
157
            else if (startmask && !endmask)
 
158
            {
 
159
                nlwExtra -= 1;
 
160
                while (h--)
 
161
                {
 
162
                    srcpix = psrc[iy];
 
163
                    iy++;
 
164
                    if (iy == tileHeight)
 
165
                        iy = 0;
 
166
                    nlw = nlwMiddle;
 
167
                    *p = MROP_MASK(srcpix,*p,startmask);
 
168
                    p++;
 
169
                    while (nlw--)
 
170
                    {
 
171
                        *p = MROP_SOLID(srcpix,*p);
 
172
                        p++;
 
173
                    }
 
174
                    mfbScanlineInc(p, nlwExtra);
 
175
                }
 
176
            }
 
177
            else if (!startmask && endmask)
 
178
            {
 
179
                while (h--)
 
180
                {
 
181
                    srcpix = psrc[iy];
 
182
                    iy++;
 
183
                    if (iy == tileHeight)
 
184
                        iy = 0;
 
185
                    nlw = nlwMiddle;
 
186
                    while (nlw--)
 
187
                    {
 
188
                        *p = MROP_SOLID(srcpix,*p);
 
189
                        p++;
 
190
                    }
 
191
 
 
192
                    *p = MROP_MASK(srcpix,*p,endmask);
 
193
                    mfbScanlineInc(p, nlwExtra);
 
194
                }
 
195
            }
 
196
            else /* no ragged bits at either end */
 
197
            {
 
198
                while (h--)
 
199
                {
 
200
                    srcpix = psrc[iy];
 
201
                    iy++;
 
202
                    if (iy == tileHeight)
 
203
                        iy = 0;
 
204
                    nlw = nlwMiddle;
 
205
                    while (nlw--)
 
206
                    {
 
207
                        *p = MROP_SOLID (srcpix,*p);
 
208
                        p++;
 
209
                    }
 
210
                    mfbScanlineInc(p, nlwExtra);
 
211
                }
 
212
            }
 
213
        }
 
214
        pbox++;
 
215
    }
 
216
}
 
217
 
 
218
#if (MROP) == 0
 
219
void
 
220
mfbTileAreaPPW (pDraw, nbox, pbox, alu, ptile)
 
221
    DrawablePtr pDraw;
 
222
    int nbox;
 
223
    BoxPtr pbox;
 
224
    int alu;
 
225
    PixmapPtr ptile;
 
226
{
 
227
    void (*f)(
 
228
        DrawablePtr /*pDraw*/,
 
229
        int /*nbox*/,
 
230
        BoxPtr /*pbox*/,
 
231
        int /*alu*/,
 
232
        PixmapPtr /*ptile*/);
 
233
    
 
234
    if (alu == GXcopy)
 
235
        f = mfbTileAreaPPWCopy;
 
236
    else
 
237
        f = mfbTileAreaPPWGeneral;
 
238
    (*f) (pDraw, nbox, pbox, alu, ptile);
 
239
}
 
240
#endif