OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | 5 #ifndef EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ |
6 #define MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | 6 #define EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ |
7 | 7 |
8 namespace cc { | 8 namespace cc { |
9 class RenderPass; | 9 class RenderPass; |
10 } | 10 } |
11 | 11 |
12 namespace gfx { | 12 namespace gfx { |
13 class Transform; | 13 class Transform; |
14 class Size; | 14 class Size; |
15 } | 15 } |
16 | 16 |
17 namespace mojo { | 17 namespace mojo { |
18 namespace examples { | 18 namespace examples { |
19 | 19 |
20 void CreateAndAppendSimpleSharedQuadState(cc::RenderPass* render_pass, | 20 void CreateAndAppendSimpleSharedQuadState(cc::RenderPass* render_pass, |
21 const gfx::Transform& transform, | 21 const gfx::Transform& transform, |
22 const gfx::Size& size); | 22 const gfx::Size& size); |
23 | 23 |
24 } // namespace mojo | 24 } // namespace mojo |
25 } // namespace examples | 25 } // namespace examples |
26 | 26 |
27 #endif // MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | 27 #endif // EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ |
OLD | NEW |