aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to '')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h98
1 files changed, 49 insertions, 49 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h b/libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h
index 304802d..4ef3855 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h
+++ b/libraries/irrlicht-1.8/source/Irrlicht/COpenGLNormalMapRenderer.h
@@ -1,49 +1,49 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __C_OPENGL_NORMAL_MAP_RENDERER_H_INCLUDED__ 5#ifndef __C_OPENGL_NORMAL_MAP_RENDERER_H_INCLUDED__
6#define __C_OPENGL_NORMAL_MAP_RENDERER_H_INCLUDED__ 6#define __C_OPENGL_NORMAL_MAP_RENDERER_H_INCLUDED__
7 7
8#include "IrrCompileConfig.h" 8#include "IrrCompileConfig.h"
9#ifdef _IRR_COMPILE_WITH_OPENGL_ 9#ifdef _IRR_COMPILE_WITH_OPENGL_
10 10
11#include "COpenGLShaderMaterialRenderer.h" 11#include "COpenGLShaderMaterialRenderer.h"
12#include "IShaderConstantSetCallBack.h" 12#include "IShaderConstantSetCallBack.h"
13 13
14namespace irr 14namespace irr
15{ 15{
16namespace video 16namespace video
17{ 17{
18 18
19//! Class for rendering normal maps with OpenGL 19//! Class for rendering normal maps with OpenGL
20class COpenGLNormalMapRenderer : public COpenGLShaderMaterialRenderer, public IShaderConstantSetCallBack 20class COpenGLNormalMapRenderer : public COpenGLShaderMaterialRenderer, public IShaderConstantSetCallBack
21{ 21{
22public: 22public:
23 23
24 //! Constructor 24 //! Constructor
25 COpenGLNormalMapRenderer(video::COpenGLDriver* driver, 25 COpenGLNormalMapRenderer(video::COpenGLDriver* driver,
26 s32& outMaterialTypeNr, IMaterialRenderer* baseMaterial); 26 s32& outMaterialTypeNr, IMaterialRenderer* baseMaterial);
27 27
28 //! Destructor 28 //! Destructor
29 ~COpenGLNormalMapRenderer(); 29 ~COpenGLNormalMapRenderer();
30 30
31 //! Called by the engine when the vertex and/or pixel shader constants for an 31 //! Called by the engine when the vertex and/or pixel shader constants for an
32 //! material renderer should be set. 32 //! material renderer should be set.
33 virtual void OnSetConstants(IMaterialRendererServices* services, s32 userData); 33 virtual void OnSetConstants(IMaterialRendererServices* services, s32 userData);
34 34
35 //! Returns the render capability of the material. 35 //! Returns the render capability of the material.
36 virtual s32 getRenderCapability() const; 36 virtual s32 getRenderCapability() const;
37 37
38protected: 38protected:
39 39
40 bool CompiledShaders; 40 bool CompiledShaders;
41}; 41};
42 42
43 43
44} // end namespace video 44} // end namespace video
45} // end namespace irr 45} // end namespace irr
46 46
47#endif 47#endif
48#endif 48#endif
49 49