File: rendert.h

package info (click to toggle)
libimager-perl 0.75-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,532 kB
  • ctags: 3,278
  • sloc: ansic: 24,109; perl: 21,732; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef IMAGER_RENDERT_H
#define IMAGER_RENDERT_H

typedef struct {
  int magic;
  i_img *im;

  int line_width;
  i_color *line_8;
  i_fcolor *line_double;

  int fill_width;
  i_color *fill_line_8;
  i_fcolor *fill_line_double;
} i_render;

#endif