aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/CD3D9ParallaxMapRenderer.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/CD3D9ParallaxMapRenderer.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/CD3D9ParallaxMapRenderer.h126
1 files changed, 63 insertions, 63 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/CD3D9ParallaxMapRenderer.h b/libraries/irrlicht-1.8/source/Irrlicht/CD3D9ParallaxMapRenderer.h
index 94010cd..8814a52 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/CD3D9ParallaxMapRenderer.h
+++ b/libraries/irrlicht-1.8/source/Irrlicht/CD3D9ParallaxMapRenderer.h
@@ -1,63 +1,63 @@
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_D3D9_PARALLAX_MAPMATERIAL_RENDERER_H_INCLUDED__ 5#ifndef __C_D3D9_PARALLAX_MAPMATERIAL_RENDERER_H_INCLUDED__
6#define __C_D3D9_PARALLAX_MAPMATERIAL_RENDERER_H_INCLUDED__ 6#define __C_D3D9_PARALLAX_MAPMATERIAL_RENDERER_H_INCLUDED__
7 7
8#include "IrrCompileConfig.h" 8#include "IrrCompileConfig.h"
9#ifdef _IRR_WINDOWS_ 9#ifdef _IRR_WINDOWS_
10 10
11#ifdef _IRR_COMPILE_WITH_DIRECT3D_9_ 11#ifdef _IRR_COMPILE_WITH_DIRECT3D_9_
12#if defined(__BORLANDC__) || defined (__BCPLUSPLUS__) 12#if defined(__BORLANDC__) || defined (__BCPLUSPLUS__)
13#include "irrMath.h" // needed by borland for sqrtf define 13#include "irrMath.h" // needed by borland for sqrtf define
14#endif 14#endif
15#include <d3d9.h> 15#include <d3d9.h>
16 16
17#include "CD3D9ShaderMaterialRenderer.h" 17#include "CD3D9ShaderMaterialRenderer.h"
18#include "IShaderConstantSetCallBack.h" 18#include "IShaderConstantSetCallBack.h"
19 19
20namespace irr 20namespace irr
21{ 21{
22namespace video 22namespace video
23{ 23{
24 24
25//! Renderer for normal maps using parallax mapping 25//! Renderer for normal maps using parallax mapping
26class CD3D9ParallaxMapRenderer : 26class CD3D9ParallaxMapRenderer :
27 public CD3D9ShaderMaterialRenderer, IShaderConstantSetCallBack 27 public CD3D9ShaderMaterialRenderer, IShaderConstantSetCallBack
28{ 28{
29public: 29public:
30 30
31 CD3D9ParallaxMapRenderer( 31 CD3D9ParallaxMapRenderer(
32 IDirect3DDevice9* d3ddev, video::IVideoDriver* driver, 32 IDirect3DDevice9* d3ddev, video::IVideoDriver* driver,
33 s32& outMaterialTypeNr, IMaterialRenderer* baseMaterial); 33 s32& outMaterialTypeNr, IMaterialRenderer* baseMaterial);
34 34
35 ~CD3D9ParallaxMapRenderer(); 35 ~CD3D9ParallaxMapRenderer();
36 36
37 //! Called by the engine when the vertex and/or pixel shader constants for an 37 //! Called by the engine when the vertex and/or pixel shader constants for an
38 //! material renderer should be set. 38 //! material renderer should be set.
39 virtual void OnSetConstants(IMaterialRendererServices* services, s32 userData); 39 virtual void OnSetConstants(IMaterialRendererServices* services, s32 userData);
40 40
41 virtual bool OnRender(IMaterialRendererServices* service, E_VERTEX_TYPE vtxtype); 41 virtual bool OnRender(IMaterialRendererServices* service, E_VERTEX_TYPE vtxtype);
42 42
43 //! Returns the render capability of the material. 43 //! Returns the render capability of the material.
44 virtual s32 getRenderCapability() const; 44 virtual s32 getRenderCapability() const;
45 45
46 virtual void OnSetMaterial(const SMaterial& material) { } 46 virtual void OnSetMaterial(const SMaterial& material) { }
47 virtual void OnSetMaterial(const video::SMaterial& material, 47 virtual void OnSetMaterial(const video::SMaterial& material,
48 const video::SMaterial& lastMaterial, 48 const video::SMaterial& lastMaterial,
49 bool resetAllRenderstates, video::IMaterialRendererServices* services); 49 bool resetAllRenderstates, video::IMaterialRendererServices* services);
50 50
51private: 51private:
52 52
53 f32 CurrentScale; 53 f32 CurrentScale;
54 54
55}; 55};
56 56
57} // end namespace video 57} // end namespace video
58} // end namespace irr 58} // end namespace irr
59 59
60#endif 60#endif
61#endif 61#endif
62#endif 62#endif
63 63