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 MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_
6#define MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_
7
8namespace cc {
9class RenderPass;
10}
11
12namespace gfx {
13class Transform;
14class Size;
15}
16
17namespace mojo {
18namespace examples {
19
20void 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  // MOJO_EXAMPLES_SURFACES_APP_SURFACES_UTIL_H_
28