source: abuse/trunk/src/imlib/video.h @ 549

Last change on this file since 549 was 524, checked in by Sam Hocevar, 12 years ago

core: Get rid of mostly useless headers, move endianness handling to
common.h (and rewrite functions so that they do not need the SDL headers)
and move a few functions out of sdlport's video.cpp. These functions
were in the original video.cpp (which reappears) and shouldn't be part
of the SDL port.

  • Property svn:keywords set to Id
File size: 1.0 KB
RevLine 
[56]1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 1995 Crack dot Com
[494]4 *  Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
[56]5 *
6 *  This software was released into the Public Domain. As with most public
7 *  domain software, no warranty is made or implied by Crack dot Com or
8 *  Jonathan Clark.
9 */
10
[2]11#ifndef _VIDEO_HPP_
12#define _VIDEO_HPP_
13
14#define TRI_1024x768x256 0x62
15#define TRI_800x600x256  0x5e
16#define TRI_640x480x256  0x5c
17#define VGA_320x200x256  0x13
18#define CGA_640x200x2    6
19#define XWINDOWS_256     256
20#define XWINDOWS_2       2
21
[481]22#include "image.h"
[2]23
24
[162]25extern int xres,yres;
[2]26extern int xoff,yoff;
27extern image *screen;
28
29void set_mode(int mode, int argc=0, char **argv=NULL);
30void close_graphics();
31void fill_image(image *im, int x1, int y1, int x2, int y2);
[524]32void update_window_done();
33
[2]34void update_dirty(image *im, int xoff=0, int yoff=0);
[524]35void put_part_image(image *im, int x, int y, int x1, int y1, int x2, int y2);
36void put_image(image * im, int x, int y);
[2]37
38void clear_put_image(image *im, int x, int y);
39int get_vmode();
40
41#endif
Note: See TracBrowser for help on using the repository browser.