blob: 73c94acad112921e706515ba25d8680d4f512b6f [file] [log] [blame]
Hal Canary118df7c2019-12-18 16:26:19 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#ifndef SkiaViewController_DEFINED
4#define SkiaViewController_DEFINED
5
6class SkCanvas;
7
8#import <CoreGraphics/CoreGraphics.h>
9#import <Foundation/Foundation.h>
10
11// An interface that draws to a Skia canvas.
12@interface SkiaViewController : NSObject
13- (void)draw:(CGRect)rect toCanvas:(SkCanvas*)canvas atSize:(CGSize)size;
14
15// Return the current paused state. Implementations should override.
16- (bool)isPaused;
17
18// Change the paused state. Implementations should override.
19- (void)togglePaused;
20@end
21#endif // SkiaViewController_DEFINED