Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: mojo/examples/sample_app/spinning_cube.h

Issue 684543003: Move //mojo/examples to //examples (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/sample_app/spinning_cube.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/sample_app/spinning_cube.h
diff --git a/mojo/examples/sample_app/spinning_cube.h b/mojo/examples/sample_app/spinning_cube.h
deleted file mode 100644
index f8d506ddb8f74f1f84e2a94e6d0ce4208a776ab1..0000000000000000000000000000000000000000
--- a/mojo/examples/sample_app/spinning_cube.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_EXAMPLES_SAMPLE_APP_SPINNING_CUBE_H_
-#define MOJO_EXAMPLES_SAMPLE_APP_SPINNING_CUBE_H_
-
-#include <stdint.h>
-
-#include "base/memory/scoped_ptr.h"
-
-namespace examples {
-
-class SpinningCube {
- public:
- SpinningCube();
- ~SpinningCube();
-
- void Init(uint32_t width, uint32_t height);
- void set_direction(int direction) { direction_ = direction; }
- void set_color(float r, float g, float b) {
- color_[0] = r;
- color_[1] = g;
- color_[2] = b;
- }
- void SetFlingMultiplier(float drag_distance, float drag_time);
- void UpdateForTimeDelta(float delta_time);
- void UpdateForDragDistance(float distance);
- void Draw();
-
- void OnGLContextLost();
-
- private:
- class GLState;
-
- void Update();
-
- bool initialized_;
- uint32_t width_;
- uint32_t height_;
- scoped_ptr<GLState> state_;
- float fling_multiplier_;
- int direction_;
- float color_[3];
-};
-
-} // namespace examples
-
-#endif // MOJO_EXAMPLES_SAMPLE_APP_SPINNING_CUBE_H_
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/sample_app/spinning_cube.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698