blob: 4de8ece2832c448366f76297ccd1cfa281898b93 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1996 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26/*
27 * This file contains macro definitions for the Storing category of
28 * the macros used by the generic scaleloop function.
29 *
30 * This implementation can store 16-bit or 32-bit pixels into an
31 * array of shorts, or longs such that the pixel for (srcX, srcY)
32 * is stored at index (srcOff + srcY * srcScan + srcX) in the array.
33 */
34
35#define DeclareOutputVars \
36 pixptr dstP; \
37 int dst32;
38
39#define InitOutput(cvdata, clrdata, dstX, dstY) \
40 do { \
41 switch (clrdata->bitsperpixel) { \
42 case 16: dst32 = 1; break; \
43 case 32: dst32 = 2; break; \
44 default: \
45 SignalError(0, JAVAPKG "InternalError", \
46 "unsupported screen depth"); \
47 return SCALEFAILURE; \
48 } \
49 img_check((ScanBytes(cvdata) & ((1 << dst32)-1)) == 0); \
50 dstP.vp = cvdata->outbuf; \
51 dstP.bp += dstY * ScanBytes(cvdata) + (dstX << dst32); \
52 } while (0)
53
54#define PutPixelInc(pixel, red, green, blue) \
55 do { \
56 switch (dst32) { \
57 case 1: \
58 *dstP.sp++ = ((unsigned short) pixel); \
59 break; \
60 case 2: \
61 *dstP.ip++ = pixel; \
62 break; \
63 } \
64 } while (0)
65
66#define EndOutputRow(cvdata, dstY, dstX1, dstX2) \
67 do { \
68 SendRow(cvdata, dstY, dstX1, dstX2); \
69 dstP.bp += (ScanBytes(cvdata) \
70 - ((dstX2 - dstX1) << dst32)); \
71 } while (0)
72
73#define EndOutputRect(cvdata, dstX1, dstY1, dstX2, dstY2) \
74 SendBuffer(cvdata, dstX1, dstY1, dstX2, dstY2)