Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8557 maxcodehac 1
#ifndef _WL_ATMOS_H_
2
#define _WL_ATMOS_H_
3
 
4
#if defined(USE_STARSKY) || defined(USE_RAIN) || defined(USE_SNOW)
5
    void Init3DPoints();
6
#endif
7
 
8
#ifdef USE_STARSKY
9
    void DrawStarSky(byte *vbuf, uint32_t vbufPitch);
10
#endif
11
 
12
#ifdef USE_RAIN
13
    void DrawRain(byte *vbuf, uint32_t vbufPitch);
14
#endif
15
 
16
#ifdef USE_SNOW
17
    void DrawSnow(byte *vbuf, uint32_t vbufPitch);
18
#endif
19
 
20
#endif