blob: c4a81ea67a50041a03c9e057b40419d727aba3ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// 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 mojo {
namespace examples {
class SpinningCube {
public:
SpinningCube();
~SpinningCube();
void Init(uint32_t width, uint32_t height);
void Update(float delta_time);
void Draw();
void OnGLContextLost();
private:
class GLState;
bool initialized_;
uint32_t width_;
uint32_t height_;
scoped_ptr<GLState> state_;
};
} // namespace examples
} // namespace mojo
#endif // MOJO_EXAMPLES_SAMPLE_APP_SPINNING_CUBE_H_
|