| // 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 EXAMPLES_SPINNING_CUBE_SPINNING_CUBE_H_ |
| #define EXAMPLES_SPINNING_CUBE_SPINNING_CUBE_H_ |
| #include "base/memory/scoped_ptr.h" |
| void set_direction(int direction) { direction_ = direction; } |
| void set_color(float r, float g, float b) { |
| void set_size(uint32_t width, uint32_t height) { |
| void SetFlingMultiplier(float drag_distance, float drag_time); |
| void UpdateForTimeDelta(float delta_time); |
| void UpdateForDragDistance(float distance); |
| scoped_ptr<GLInterface> gl_; |
| scoped_ptr<GLState> state_; |
| #endif // EXAMPLES_SPINNING_CUBE_SPINNING_CUBE_H_ |