Chameleon Applications

Chameleon Applications Svn Source Tree

Root/branches/iFabio/i386/boot2/graphics.h

Source at commit 214 created 13 years 5 months ago.
By ifabio, update to chameleon trunk 630, and now the pakage folder is the same as blackosx branch, also add Icon "building" into buildpkg script, and add mint theme info into the English localizable.strings.
1/*
2 * graphics.h
3 *
4 *
5 * Created by fassl on 22.12.08.
6 * Copyright 2008 __MyCompanyName__. All rights reserved.
7 *
8 */
9
10#include "boot.h"
11#include "bootstruct.h"
12#include "graphic_utils.h"
13
14
15#ifndef __BOOT_GRAPHICS_H
16#define __BOOT_GRAPHICS_H
17
18#define DEFAULT_SCREEN_WIDTH 1024
19#define DEFAULT_SCREEN_HEIGHT 768
20
21int loadPngImage(const char *filename, uint16_t *width, uint16_t *height, uint8_t **imageData);
22
23unsigned long lookUpCLUTIndex( unsigned char index, unsigned char depth );
24
25void drawColorRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char colorIndex );
26void drawDataRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char * data );
27int convertImage( unsigned short width, unsigned short height, const unsigned char *imageData, unsigned char **newImageData );
28
29int initGraphicsMode ();
30
31void drawCheckerBoard();
32
33void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data);
34
35void drawCheckerBoard();
36void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data);
37
38int loadEmbeddedPngImage(uint8_t *pngData, int pngSize, uint16_t *width, uint16_t *height, uint8_t **imageData);
39
40
41char *getVBEInfoString();
42char *getVBEModeInfoString();
43void getGraphicModeParams(unsigned long params[]);
44
45#endif /* !__BOOT_GRAPHICS_H */
46

Archive Download this file

Revision: 214