Fix linux compile

This commit is contained in:
kaetemi 2013-06-19 16:18:09 +02:00
parent e1176c3198
commit 3be1be1111

View file

@ -28,8 +28,8 @@
#include "stdopengl.h" #include "stdopengl.h"
#include "driver_opengl.h" #include "driver_opengl.h"
#include <nel/3d/index_buffer.h> #include "nel/3d/index_buffer.h"
#include <nel/3d/vertex_program.h> #include "nel/3d/pixel_program.h"
#include <algorithm> #include <algorithm>
// tmp // tmp
@ -38,11 +38,17 @@
using namespace std; using namespace std;
using namespace NLMISC; using namespace NLMISC;
//#define DEBUG_SETUP_EXT_VERTEX_SHADER
namespace NL3D namespace NL3D
{ {
#ifdef NL_STATIC
#ifdef USE_OPENGLES
namespace NLDRIVERGLES {
#else
namespace NLDRIVERGL {
#endif
#endif
// *************************************************************************** // ***************************************************************************
CPixelProgamDrvInfosGL::CPixelProgamDrvInfosGL (CDriverGL *drv, ItPixelPrgDrvInfoPtrList it) : IPixelProgramDrvInfos (drv, it) CPixelProgamDrvInfosGL::CPixelProgamDrvInfosGL (CDriverGL *drv, ItPixelPrgDrvInfoPtrList it) : IPixelProgramDrvInfos (drv, it)
{ {
@ -316,4 +322,8 @@ void CDriverGL::setPixelProgramConstantMatrix (uint index, IDriver::TMatrix matr
} }
} }
#ifdef NL_STATIC
} // NLDRIVERGL/ES
#endif
} // NL3D } // NL3D