diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 201: Remove unused static function (was repurposed as a class member of the main loop

Message ID 20120309174411.12839.25702.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Jesse Barker March 9, 2012, 5:44 p.m. UTC
------------------------------------------------------------
revno: 201
committer: Jesse Barker <jesse.barker@linaro.org>
branch nick: trunk
timestamp: Fri 2012-03-09 09:40:49 +0000
message:
  Remove unused static function (was repurposed as a class member of the main loop
  object but this copy was never removed).
modified:
  src/main.cpp


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'src/main.cpp'
--- src/main.cpp	2012-02-15 16:00:26 +0000
+++ src/main.cpp	2012-03-09 09:40:49 +0000
@@ -100,14 +100,6 @@ 
     }
 }
 
-static inline void
-fps_renderer_update_text(TextRenderer &fps_renderer, unsigned int fps)
-{
-    std::stringstream ss;
-    ss << "FPS: " << fps;
-    fps_renderer.text(ss.str());
-}
-
 void
 do_benchmark(Canvas &canvas)
 {