1 /*--License:
2 	Kyra Sprite Engine
3 	Copyright Lee Thomason (Grinning Lizard Software) 2001-2005
4 	www.grinninglizard.com/kyra
5 	www.sourceforge.net/projects/kyra
6 
7 	Kyra is provided under the LGPL.
8 
9 	I kindly request you display a splash screen (provided in the HTML documentation)
10 	to promote Kyra and acknowledge the software and everyone who has contributed to it,
11 	but it is not required by the license.
12 
13 --- LGPL License --
14 
15     This library is free software; you can redistribute it and/or
16     modify it under the terms of the GNU Lesser General Public
17     License as published by the Free Software Foundation; either
18     version 2.1 of the License, or (at your option) any later version.
19 
20     This library is distributed in the hope that it will be useful,
21     but WITHOUT ANY WARRANTY; without even the implied warranty of
22     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23     Lesser General Public License for more details.
24 
25     You should have received a copy of the GNU Lesser General Public
26     License along with this library; if not, write to the Free Software
27     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28 
29 	The full text of the license can be found in lgpl.txt
30 */
31 
32 
33 /** @file
34 	The build file contains compile time switches
35 	that change features or turn debugging on and
36 	off in the Kyra project.
37 */
38 
39 #ifndef KYRA_BUILD_INCLUDED
40 #define KYRA_BUILD_INCLUDED
41 
42 // Shows the dirty rectangles.
43 //#define DRAWDEBUG_BLTRECTS
44 
45 // Asserts if the engine draws a scaled image that isn't
46 // cached. Very useful if you expect everything (expect
47 // canvases) to be draw cached.
48 // #define ASSERT_IF_NOT_CACHED
49 
50 const int KR_MAX_WINDOWS = 6;
51 
52 
53 #ifdef DEBUG
54 	// Turns on a higher (and slower) level of debugging.
55 	// 	#define VALIDATE_DEBUG
56 #endif
57 
58 // Constants to control OpenGL.
59 // max # of images = kKrOglDistance
60 //const int kKrOglDistance = 50000;
61 
62 #endif
63 
64