Last of the config.h mods...

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

added to these files.

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 15:29:57 +00:00
parent d0e346d544
commit 209a2ede2c
212 changed files with 799 additions and 146 deletions

View File

@@ -30,10 +30,12 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "../IMG_Api.h"
#include "IMG_BrushRGBA32.h"
#include "IMG_CanvasRGBA32.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
IMG_BrushPtr IMG_BrushCreate(unsigned int w, unsigned int h, float r, float g, float b, float a)
{

View File

@@ -30,10 +30,11 @@
*/
#include "IMG_BrushRGBA32.h"
#include <math.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
IMG_BrushRGBA32::IMG_BrushRGBA32(TUns32 w, TUns32 h, const IMG_ColorRGB& c, float a)
: IMG_PixmapRGBA32(w, h), m_color(c), m_alpha(a)

View File

@@ -31,7 +31,9 @@
#include "IMG_CanvasRGBA32.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
IMG_CanvasRGBA32::IMG_CanvasRGBA32(TUns32 width, TUns32 height)
: IMG_PixmapRGBA32(width, height)

View File

@@ -31,3 +31,7 @@
*/
#include "IMG_Line.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

View File

@@ -31,8 +31,9 @@
#include "IMG_Pixmap.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
IMG_Pixmap::IMG_Pixmap()
{
@@ -56,4 +57,4 @@ IMG_Pixmap::IMG_Pixmap()
IMG_Pixmap::~IMG_Pixmap()
{
}
}

View File

@@ -31,7 +31,9 @@
#include "IMG_PixmapRGBA32.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
IMG_PixmapRGBA32::IMG_PixmapRGBA32(TUns32 width, TUns32 height)
: IMG_Pixmap(), m_mem(width * height)

View File

@@ -31,6 +31,9 @@
#include "IMG_Rect.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
TVisibility IMG_Rect::getVisibility(IMG_Rect& r) const
{

View File

@@ -30,11 +30,13 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
// #include <iostream.h>
#include "render_intern.h"
#include "RE_DummyShadowBuffer.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct LampRen;
RE_DummyShadowBuffer::RE_DummyShadowBuffer(void)

View File

@@ -32,8 +32,6 @@
#include <math.h>
#include <string.h>
//#include <iostream.h>
#include "MEM_guardedalloc.h"
#include "BLI_arithb.h"
@@ -49,6 +47,11 @@
/* own include */
#include "RE_basicShadowBuffer.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* crud */
#define MIN2(x,y) ( (x)<(y) ? (x) : (y) )
/* ------------------------------------------------------------------------- */

View File

@@ -31,8 +31,6 @@
*/
#include <assert.h>
//#include <iostream.h>
#include "render.h"
#include "render_intern.h"
#include "shadbuf.h"
@@ -41,6 +39,10 @@
#include "RE_DummyShadowBuffer.h" /* A dummy shadow buffer */
#include "RE_basicShadowBuffer.h" /* the 'old' shadow buffer */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct ShadBuf;
struct LampRen;
struct Lamp;