~ubuntu-branches/ubuntu/trusty/electricsheep/trusty-proposed

« back to all changes in this revision

Viewing changes to flame/rect.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexis Sukrieh
  • Date: 2005-06-17 18:28:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050617182817-3ju56pnktawusjt8
Tags: 2.6.2-1
* New upstream release: 2.6.2.
  (closes: #309852)
* Added myself as maintainer (Sander Smeenk offered it to me).
* Added dpatch for handling changes applied on upstream sources.
* Added all missing manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
    flame - cosmic recursive fractal flames
3
 
    Copyright (C) 1992-2003  Scott Draves <source@flam3.com>
4
 
 
5
 
    This program is free software; you can redistribute it and/or modify
6
 
    it under the terms of the GNU General Public License as published by
7
 
    the Free Software Foundation; either version 2 of the License, or
8
 
    (at your option) any later version.
9
 
 
10
 
    This program is distributed in the hope that it will be useful,
11
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
    GNU General Public License for more details.
14
 
 
15
 
    You should have received a copy of the GNU General Public License
16
 
    along with this program; if not, write to the Free Software
17
 
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
 
*/
19
 
 
20
 
#ifndef rect_included
21
 
#define rect_included
22
 
 
23
 
static char *rect_h_id =
24
 
"@(#) $Id: rect.h,v 1.8 2004/03/04 06:35:17 spotspot Exp $";
25
 
 
26
 
#include "libifs.h"
27
 
 
28
 
 
29
 
/* size of the cmap actually used. may be smaller than input cmap size */
30
 
#define CMAP_SIZE 256
31
 
 
32
 
typedef struct {
33
 
   double         temporal_filter_radius;
34
 
   double         pixel_aspect_ratio;    /* width over height of each pixel */
35
 
   control_point *cps;
36
 
   int            ncps;
37
 
   double         time;
38
 
} frame_spec;
39
 
 
40
 
 
41
 
#define field_both  0
42
 
#define field_even  1
43
 
#define field_odd   2
44
 
 
45
 
 
46
 
extern void render_rectangle(frame_spec *spec, unsigned char *out,
47
 
                             int out_width, int field, int nchan,
48
 
                             void progress(double));
49
 
 
50
 
#endif