File: render.h

package info (click to toggle)
netrik 1.16.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,288 kB
  • sloc: ansic: 6,657; sh: 994; makefile: 120
file content (20 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
   netrik -- The ANTRIK Internet Viewer
   Copyright (C) Olaf D. Buddenhagen AKA antrik, et al (see AUTHORS)
   Published under the GNU GPL; see LICENSE for details.
*/
/*
 * render.h -- contains extern function prototypes for render.c.
 *
 * (C) 2001, 2002 antrik
 */

#include "config.h"

#include "items.h"

#ifdef DEBUG
void dump_items(struct Item *item_tree);    /* dump items+text */
#endif
void dump(struct Layout_data *layout);    /* dump whole page to screen, with correct layout */
void render(struct Layout_data *layout, int page_x, int page_y, int screen_x, int screen_y, int width, int height, int overpaint);    /* render specified region of page */