Revision 1378,
553 bytes
checked in by giegl, 18 years ago
(diff) |
GTPD - Jungle Rumble - integrate into GTP SVN structure
|
Line | |
---|
1 | #pragma once
|
---|
2 | #include "renderer.h"
|
---|
3 | #include "Object3d.h"
|
---|
4 |
|
---|
5 | class SkyBoxRenderer :
|
---|
6 | public Renderer
|
---|
7 | {
|
---|
8 | public:
|
---|
9 | SkyBoxRenderer(void);
|
---|
10 | ~SkyBoxRenderer(void);
|
---|
11 |
|
---|
12 | virtual void init();
|
---|
13 | virtual void render();
|
---|
14 |
|
---|
15 | virtual void OnLostDevice( void* pUserContext );
|
---|
16 | virtual void OnDestroyDevice( void* pUserContext );
|
---|
17 | virtual HRESULT OnResetDevice( IDirect3DDevice9* pd3dDevice, const D3DSURFACE_DESC* pBackBufferSurfaceDesc, void* pUserContext );
|
---|
18 |
|
---|
19 | virtual bool isLowerThan(Renderer* renderer);
|
---|
20 | ID3DXEffect* rayEffect;
|
---|
21 | void rayPass();
|
---|
22 | };
|
---|
Note: See
TracBrowser
for help on using the repository browser.