Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazi/i386/boot2/graphics.h

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 "libsaio.h"
11#include "libsa.h"
12//---
13#include "boot.h" // was included on graphic_utils.h
14#include "bootstruct.h"
15#include "graphic_utils.h"
16#include "vbe.h"
17
18#ifndef __BOOT_GRAPHICS_H
19#define __BOOT_GRAPHICS_H
20
21#define DEFAULT_SCREEN_WIDTH 1024
22#define DEFAULT_SCREEN_HEIGHT 768
23
24int loadPngImage(const char *filename, uint16_t *width, uint16_t *height, uint8_t **imageData);
25
26unsigned long lookUpCLUTIndex( unsigned char index, unsigned char depth );
27
28void drawColorRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char colorIndex );
29void drawDataRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char * data );
30int convertImage( unsigned short width, unsigned short height, const unsigned char *imageData, unsigned char **newImageData );
31
32int initGraphicsMode ();
33
34void drawCheckerBoard();
35
36void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data);
37
38void drawCheckerBoard();
39void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data);
40
41int loadEmbeddedPngImage(uint8_t *pngData, int pngSize, uint16_t *width, uint16_t *height, uint8_t **imageData);
42
43int getNumberArrayFromProperty( const char * propKey,
44unsigned long numbers[],
45unsigned long maxArrayCount );
46
47char *getVBEInfoString();
48char *getVBEModeInfoString();
49unsigned short getVESAModeWithProperties( unsigned short width,
50 unsigned short height,
51 unsigned char bitsPerPixel,
52 unsigned short attributesSet,
53 unsigned short attributesClear,
54 VBEModeInfoBlock * outModeInfo,
55 unsigned short * vesaVersion );
56
57void getGraphicModeParams(unsigned long params[]);
58
59#endif /* !__BOOT_GRAPHICS_H */
60

Archive Download this file

Revision: 495