| Index: gpu/demos/simple_texture_2d/main.cc
|
| ===================================================================
|
| --- gpu/demos/simple_texture_2d/main.cc (revision 36357)
|
| +++ gpu/demos/simple_texture_2d/main.cc (working copy)
|
| @@ -18,7 +18,7 @@
|
| bool Init();
|
|
|
| protected:
|
| - virtual void Draw(float);
|
| + virtual void Draw(float elapsed_sec);
|
|
|
| private:
|
| ESContext context_;
|
| @@ -48,7 +48,7 @@
|
| return true;
|
| }
|
|
|
| -void SimpleTexture2D::Draw(float) {
|
| +void SimpleTexture2D::Draw(float /*elapsed_sec*/) {
|
| stDraw(&context_);
|
| }
|
| } // namespace gpu_demos
|
|
|