Path: blob/master/src/java.desktop/share/native/libsplashscreen/splashscreen_gfx.h
41152 views
/*1* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425#ifndef SPLASHSCREEN_GFX_H26#define SPLASHSCREEN_GFX_H2728/* splashscreen_gfx is a general purpose code for converting pixmaps between various visuals29it is not very effective, but is universal and concise */3031#include "splashscreen_config.h"3233enum34{35BYTE_ORDER_LSBFIRST = 0, // least significant byte first36BYTE_ORDER_MSBFIRST = 1, // most significant byte first37BYTE_ORDER_NATIVE = 2 // exactly the same as the arch we're running this on38// will behave identical to _LSBFIRST or _MSBFIRST,39// but more effective40};4142enum43{44DITHER_SIZE = 16,45DITHER_MASK = 1546};4748typedef struct DitherSettings49{50int numColors;51rgbquad_t colorTable[512];52unsigned matrix[DITHER_SIZE][DITHER_SIZE];53} DitherSettings;5455/* this structure is similar to Xlib's Visual */5657typedef struct ImageFormat58{59rgbquad_t mask[4];60int shift[4];61int depthBytes; // 1,2,3 or 4. 3 is not supported for XCVT_BYTE_ORDER_NATIVE.62int byteOrder; // see BYTE_ORDER_LSBFIRST, BYTE_ORDER_MSBFIRST or BYTE_ORDER_NATIVE63int fixedBits; // this value is or'ed with the color value on get or put, non-indexed only64// for indexed color, may be used when pre-decoding the colormap65rgbquad_t *colorMap; // colormap should be pre-decoded (i.e. an array of rgbquads)66// when colormap is non-NULL, the source color is an index to a colormap, and67// masks/shifts are unused.68unsigned transparentColor; // only for indexed colors. this is transparent color _INDEX_.69// use a more-than-max value when you don't need transparency.70int premultiplied;71DitherSettings *dithers;72int numColors; // in the colormap, only for indexed color73rgbquad_t *colorIndex; // color remapping index for dithering mode74} ImageFormat;7576/* this structure defines a rectangular portion of an image buffer. height and/or width may be inverted. */7778typedef struct ImageRect79{80int numLines; // number of scanlines in the rectangle81int numSamples; // number of samples in the line82int stride; // distance between first samples of n'th and n+1'th scanlines, in bytes83int depthBytes; // distance between n'th and n+1'th sample in a scanline, in bytes84void *pBits; // points to sample 0, scanline 085ImageFormat *format; // format of the samples86int row, col, jump; // dithering indexes87} ImageRect;8889enum90{91CVT_COPY,92CVT_ALPHATEST,93CVT_BLEND94};9596#define MAX_COLOR_VALUE 25597#define QUAD_ALPHA_MASK 0xFF00000098#define QUAD_RED_MASK 0x00FF000099#define QUAD_GREEN_MASK 0x0000FF00100#define QUAD_BLUE_MASK 0x000000FF101102#define QUAD_ALPHA_SHIFT 24103#define QUAD_RED_SHIFT 16104#define QUAD_GREEN_SHIFT 8105#define QUAD_BLUE_SHIFT 0106107#define QUAD_ALPHA(value) (((value)&QUAD_ALPHA_MASK)>>QUAD_ALPHA_SHIFT)108#define QUAD_RED(value) (((value)&QUAD_RED_MASK)>>QUAD_RED_SHIFT)109#define QUAD_GREEN(value) (((value)&QUAD_GREEN_MASK)>>QUAD_GREEN_SHIFT)110#define QUAD_BLUE(value) (((value)&QUAD_BLUE_MASK)>>QUAD_BLUE_SHIFT)111112#define MAKE_QUAD(r,g,b,a) \113(((a)<<QUAD_ALPHA_SHIFT)&QUAD_ALPHA_MASK)| \114(((r)<<QUAD_RED_SHIFT)&QUAD_RED_MASK)| \115(((g)<<QUAD_GREEN_SHIFT)&QUAD_GREEN_MASK)| \116(((b)<<QUAD_BLUE_SHIFT)&QUAD_BLUE_MASK) \117118119/* alpha testing threshold. what's >= the threshold is considered non-transparent when doing120conversion operation with CVT_ALPHATEST and when generating shapes/regions with121BitmapToYXBandedRectangles */122123#define ALPHA_THRESHOLD 0x80000000124125void initRect(ImageRect * pRect, int x, int y, int width, int height, int jump,126int stride, void *pBits, ImageFormat * format);127int convertRect2(ImageRect * pSrcRect, ImageRect * pDstRect, int mode,128ImageRect * pSrcRect2);129int convertRect(ImageRect * pSrcRect, ImageRect * pDstRect, int mode);130void convertLine(void *pSrc, int incSrc, void *pDst, int incDst, int n,131ImageFormat * srcFormat, ImageFormat * dstFormat, int mode,132void *pSrc2, int incSrc2, ImageFormat * srcFormat2, int row, int col);133void initFormat(ImageFormat * format, int redMask, int greenMask,134int blueMask, int alphaMask);135int fillRect(rgbquad_t color, ImageRect * pDstRect);136void dumpFormat(ImageFormat * format);137138void optimizeFormat(ImageFormat * format);139140void initDither(DitherSettings * pDither, int numColors, int scale);141142int quantizeColors(int maxNumColors, int *numColors);143144void initColorCube(int *numColors, rgbquad_t * pColorMap,145DitherSettings * pDithers, rgbquad_t * colorIndex);146int platformByteOrder();147148#endif149150151