diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/draw.cc | 2 | ||||
-rw-r--r-- | src/render/draw.h | 2 | ||||
-rw-r--r-- | src/render/render.h | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/src/render/draw.cc b/src/render/draw.cc index e9976b6..5b64497 100644 --- a/src/render/draw.cc +++ b/src/render/draw.cc @@ -483,7 +483,7 @@ void draw_local_axis() } /* ----- Main draw routine ----------------------------------------- */ -void draw(math::Vector3f const &eye, math::Vector3f const &target, float seconds) +void draw(math::Vector3f const &target, float seconds) { Stats::clear(); diff --git a/src/render/draw.h b/src/render/draw.h index b423aad..6db1c9b 100644 --- a/src/render/draw.h +++ b/src/render/draw.h @@ -13,7 +13,7 @@ namespace render { /// draw the world -void draw(math::Vector3f const &eye, math::Vector3f const &target, float seconds); +void draw(math::Vector3f const &target, float seconds); class Stats { public: diff --git a/src/render/render.h b/src/render/render.h index 00b4672..ce638bb 100644 --- a/src/render/render.h +++ b/src/render/render.h @@ -19,9 +19,6 @@ namespace render { /// shutdown the render subsystem void shutdown(); - /// draw the game world - void draw(float elapsed); - extern GLuint textures[32]; extern core::Cvar *r_radius; |