OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SampleApp.h" | 8 #include "SampleApp.h" |
9 #import "SkUIView.h" | 9 #import "SkUIView.h" |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 @property (nonatomic, copy) NSString* fTitle; | 36 @property (nonatomic, copy) NSString* fTitle; |
37 @property (nonatomic, retain) CALayer* fRasterLayer; | 37 @property (nonatomic, retain) CALayer* fRasterLayer; |
38 @property (nonatomic, retain) CAEAGLLayer* fGLLayer; | 38 @property (nonatomic, retain) CAEAGLLayer* fGLLayer; |
39 | 39 |
40 - (id)initWithDefaults; | 40 - (id)initWithDefaults; |
41 - (void)drawInRaster; | 41 - (void)drawInRaster; |
42 - (void)forceRedraw; | 42 - (void)forceRedraw; |
43 | 43 |
44 - (void)setSkTitle:(const char*)title; | 44 - (void)setSkTitle:(const char*)title; |
45 - (void)postInvalWithRect:(const SkIRect*)rectOrNil; | 45 - (void)postInvalWithRect:(const SkIRect*)rectOrNil; |
| 46 - (void)getAttachmentInfo:(SkOSWindow::AttachmentInfo*)info; |
| 47 |
46 @end | 48 @end |
OLD | NEW |