~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/render/intern/include/rendercore_int.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * render_int.h
3
 
 *
4
 
 * $Id: rendercore_int.h,v 1.7 2003/12/21 21:52:48 ton Exp $
5
 
 *
6
 
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or
9
 
 * modify it under the terms of the GNU General Public License
10
 
 * as published by the Free Software Foundation; either version 2
11
 
 * of the License, or (at your option) any later version. The Blender
12
 
 * Foundation also sells licenses for use in proprietary software under
13
 
 * the Blender License.  See http://www.blender.org/BL/ for information
14
 
 * about this.
15
 
 *
16
 
 * This program is distributed in the hope that it will be useful,
17
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
 * GNU General Public License for more details.
20
 
 *
21
 
 * You should have received a copy of the GNU General Public License
22
 
 * along with this program; if not, write to the Free Software Foundation,
23
 
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
 
 *
25
 
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
26
 
 * All rights reserved.
27
 
 *
28
 
 * The Original Code is: all of this file.
29
 
 *
30
 
 * Contributor(s): none yet.
31
 
 *
32
 
 * ***** END GPL/BL DUAL LICENSE BLOCK *****
33
 
 */
34
 
 
35
 
#ifndef RENDER_INT_H
36
 
#define RENDER_INT_H
37
 
 
38
 
#include "zbuf_types.h"
39
 
#include "render_types.h"
40
 
 
41
 
void    spothalo(struct LampRen *lar, ShadeInput *shi, float *intens);
42
 
void    add_filt_mask(unsigned int mask, unsigned short *col, unsigned int *rb1, unsigned int *rb2, unsigned int *rb3);
43
 
void    addps(long *rd, int vlak, unsigned int z, short ronde);
44
 
PixStr *addpsmain(void);
45
 
float   count_maskf(unsigned short mask);
46
 
void    freeps(void);
47
 
void    halovert(void);
48
 
void    renderhalo(HaloRen *har);       /* postprocess versie */
49
 
void scanlinehaloPS(unsigned int *rectz, long *rectdelta, unsigned int *rectt, short ys);
50
 
 
51
 
#endif /* RENDER_INT_H */
52