diff options
author | Dave Parks <davep@lindenlab.com> | 2011-10-19 16:21:18 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-10-19 16:21:18 -0500 |
commit | f19f43c74606e1f158cdabe9e783f9c82386b7b7 (patch) | |
tree | 64c1a6d7d1d8a1ae0b30baf6bd519d8140136971 /indra/newview/llcylinder.h | |
parent | dd61baa3401a09bd8ff1e894514c15390946cdb3 (diff) | |
parent | 4ec72ed0a61157dd5fcc1bc4cc91054664ee75b5 (diff) |
merge
Diffstat (limited to 'indra/newview/llcylinder.h')
-rw-r--r-- | indra/newview/llcylinder.h | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/indra/newview/llcylinder.h b/indra/newview/llcylinder.h index 40a669ceb6..4369f06659 100644 --- a/indra/newview/llcylinder.h +++ b/indra/newview/llcylinder.h @@ -30,45 +30,18 @@ //#include "stdtypes.h" //#include "llgl.h" -// -// Cylinders -// -const S32 CYLINDER_LEVELS_OF_DETAIL = 4; -const S32 CYLINDER_FACES = 3; - -class LLCylinder -{ -public: - void prerender(); - void drawTop(S32 detail); - void drawSide(S32 detail); - void drawBottom(S32 detail); - void cleanupGL(); - - void render(F32 pixel_area); - void renderface(F32 pixel_area, S32 face); -}; - +#include "llvertexbuffer.h" // // Cones // -const S32 CONE_LOD_HIGHEST = 0; -const S32 CONE_LEVELS_OF_DETAIL = 4; -const S32 CONE_FACES = 2; - class LLCone { public: - void prerender(); - void cleanupGL(); - void drawSide(S32 detail); - void drawBottom(S32 detail); - void render(S32 level_of_detail); - void renderface(S32 level_of_detail, S32 face); + void render(S32 sides = 12); }; -extern LLCylinder gCylinder; + extern LLCone gCone; #endif |