source:
GTP/trunk/App/Demos/Illum/DepthOfField/Cube.h
@
760
Revision 760, 242 bytes checked in by szirmay, 19 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[760] | 1 | #pragma once |
2 | ||
3 | class Cube | |
4 | { | |
5 | IDirect3DDevice9* pd3dDevice; | |
6 | IDirect3DVertexBuffer9 *pVertexBuffer; | |
7 | HRESULT hr; | |
8 | ||
9 | public: | |
10 | Cube(IDirect3DDevice9* pd3dDevice); | |
11 | void PrepareDrawing(); | |
12 | void Draw(); | |
13 | void DrawFace(int index); | |
14 | }; |
Note: See TracBrowser
for help on using the repository browser.