blob: 92e136aaf610fbca2b8c9cb7ead79f9ea63cb9a9 [file] [log] [blame]
epoger@google.comcbc4a5d2012-09-14 18:52:10 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SAMPLECODE_TRANSITIONVIEW_H_
9#define SAMPLECODE_TRANSITIONVIEW_H_
10
11class SkView;
12
13SkView* create_transition(SkView* prev, SkView* next, int direction);
14
tfarina@chromium.orgb1b7f702012-09-18 01:52:20 +000015bool is_transition(SkView* view);
16
epoger@google.comcbc4a5d2012-09-14 18:52:10 +000017#endif // SAMPLECODE_TRANSITIONVIEW_H_