Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/draw.h')
-rw-r--r--src/render/draw.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/render/draw.h b/src/render/draw.h
index da5115f..4a758b1 100644
--- a/src/render/draw.h
+++ b/src/render/draw.h
@@ -29,10 +29,17 @@ void reset();
/// draw a sphere
void draw_sphere(math::Color const & color, float radius);
+/// draw mode lights and flares
+void draw_model_lights(model::Model *model, const float scale,
+ const math::Vector3f & entity_location, const math::Axis & entity_axis,
+ const math::Color & entity_color, const float thrust, const float fuzz
+);
+
/// draw a model
void draw_model_fragments(model::Model *model,
- const math::Color & color_primary, const math::Color & color_secondary,
- const float enginetime, const bool detail, const bool power, const float thrust);
+ const math::Color & color_primary, const math::Color & color_secondary,
+ const float enginetime, const bool detail, const bool power, const float thrust
+);
class Stats
{