more CUDA work

This commit is contained in:
rponom
2008-10-28 23:25:59 +00:00
parent f5e16847df
commit 309a12836d
12 changed files with 1325 additions and 357 deletions

View File

@@ -30,6 +30,9 @@
#ifndef __RENDER_PARTICLES__
#define __RENDER_PARTICLES__
class CProfileIterator;
class ParticleRenderer
{
public:
@@ -55,6 +58,11 @@ public:
void setFOV(float fov) { m_fov = fov; }
void setWindowSize(int w, int h) { m_window_w = w; m_window_h = h; }
void showProfileInfo(float& xOffset,float& yStart, float yIncr);
void displayProfileString(int xOffset,int yStart,char* message);
class CProfileIterator* m_profileIterator;
protected: // methods
void _initGL();
void _drawPoints();