File: display_subsystem.h

package info (click to toggle)
rockdodger 0.9.2-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,220 kB
  • ctags: 756
  • sloc: ansic: 5,374; makefile: 159; sh: 21
file content (23 lines) | stat: -rw-r--r-- 734 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __DISPLAY_SUBSYSTEM_H_2013__
#define __DISPLAY_SUBSYSTEM_H_2013__

/*! \brief Draw the background items.
 *
 * Harmless items in the background without any interaction. These are
 * infinite black and space dots.
 */
void draw_background_objects();

/*! \brief draw the ghostly (fading) rock dodger title
 *
 * This function will use the fadetime to change the alpha of the
 * given surfaces (they are modified!). You can, of course, provide
 * other surfaces and this function should work euqally well...
 * 
 * \param surf_t_rock Surface to the "Rock" title string
 * \param surf_t_dodger Surface to the "Dodger" title string
 */
void draw_ghostly_rock_dodger(SDL_Surface *surf_t_rock, SDL_Surface *surf_t_dodger);


#endif