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

@@ -29,6 +29,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
// don't show these anoying STL warnings

View File

@@ -30,9 +30,12 @@
*/
#include "RAS_FramingManager.h"
#include "RAS_Rect.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void
RAS_FramingManager::
ComputeDefaultFrustum(

View File

@@ -31,6 +31,9 @@
#include "RAS_IPolygonMaterial.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
RAS_IPolyMaterial::RAS_IPolyMaterial(const STR_String& texname,
bool ba,

View File

@@ -31,7 +31,9 @@
#include "RAS_IRenderTools.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void RAS_IRenderTools::SetViewMat(const MT_Transform& trans)
{

View File

@@ -29,9 +29,12 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "RAS_MaterialBucket.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#pragma warning (disable:4786)
#include <windows.h>

View File

@@ -30,10 +30,13 @@
*/
#include "RAS_MeshObject.h"
#include "RAS_IRasterizer.h"
#include "MT_MinMax.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
STR_String RAS_MeshObject::s_emptyname = "";

View File

@@ -31,6 +31,10 @@
*/
#include "RAS_CheckVertexArrays.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#include <windows.h>
#endif // WIN32

View File

@@ -1,5 +1,9 @@
#include "RAS_OpenGLRasterizer.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#include <windows.h>
#endif // WIN32

View File

@@ -1,9 +1,10 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#include "RAS_VAOpenGLRasterizer.h"
#include <windows.h>
#include "GL/gl.h"

View File

@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#pragma warning (disable:4786)

View File

@@ -31,6 +31,9 @@
#include "RAS_TexVert.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
RAS_TexVert::RAS_TexVert(const MT_Point3& xyz,
const MT_Point2& uv,

View File

@@ -29,10 +29,11 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "RAS_TexMatrix.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void RAS_CalcTexMatrix(RAS_TexVert p[3],MT_Point3& origin,MT_Vector3& udir,MT_Vector3& vdir)
{