Mercurial > flash_v2
view packages/services/gfx/mw/current/src/engine/devpal2.c @ 1777:c16341b1bac6 default tip
* Added execute permissions to files missed in conversion from CVS
| author | alexs |
|---|---|
| date | Mon, 12 Oct 2009 02:26:09 +0100 |
| parents | e0c0827131d1 |
| children |
line wrap: on
line source
/* * Copyright (c) 1999 Greg Haerr <greg@censoft.com> * * 2pbb (4 color) standard palette definition */ #include "device.h" /* * Standard palette for Everex Freestyle Palm PC * This palette is in reverse order from some 2bpp systems. * That is, white is pixel value 0, while black is 3. */ MWPALENTRY mwstdpal2[4] = { RGBDEF( 255, 255, 255 ), /* white*/ RGBDEF( 192, 192, 192 ), /* ltgray*/ RGBDEF( 128, 128, 128 ), /* gray*/ RGBDEF( 0 , 0 , 0 ) /* black*/ };
