| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | |
| 6 #define EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | |
| 7 | |
| 8 namespace cc { | |
| 9 class RenderPass; | |
| 10 } | |
| 11 | |
| 12 namespace gfx { | |
| 13 class Transform; | |
| 14 class Size; | |
| 15 } | |
| 16 | |
| 17 namespace mojo { | |
| 18 namespace examples { | |
| 19 | |
| 20 void CreateAndAppendSimpleSharedQuadState(cc::RenderPass* render_pass, | |
| 21 const gfx::Transform& transform, | |
| 22 const gfx::Size& size); | |
| 23 | |
| 24 } // namespace mojo | |
| 25 } // namespace examples | |
| 26 | |
| 27 #endif // EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_ | |
| OLD | NEW |