aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/iOSSampleApp/Shared/SkUIRootViewController.h
diff options
context:
space:
mode:
authorGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-17 14:42:08 +0000
committerGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-17 14:42:08 +0000
commitc5aeccd8ba0ca51b03512ad5d473adeee82cb6f8 (patch)
tree8aaf5174ca2a1501209bfba753552863550c419e /experimental/iOSSampleApp/Shared/SkUIRootViewController.h
parent1b2d6cc94d3f7fdce126e75a792cb1308ddbec3e (diff)
Updated iOSSampleApp to display FPS and display in OpenGL
git-svn-id: http://skia.googlecode.com/svn/trunk@1879 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/iOSSampleApp/Shared/SkUIRootViewController.h')
-rw-r--r--experimental/iOSSampleApp/Shared/SkUIRootViewController.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/experimental/iOSSampleApp/Shared/SkUIRootViewController.h b/experimental/iOSSampleApp/Shared/SkUIRootViewController.h
new file mode 100644
index 0000000000..4ea5d16a8a
--- /dev/null
+++ b/experimental/iOSSampleApp/Shared/SkUIRootViewController.h
@@ -0,0 +1,15 @@
+#import <UIKit/UIKit.h>
+
+@interface SkUIRootViewController : UITableViewController <UITableViewDataSource> {
+@private
+ UIPopoverController *popoverController;
+ UIBarButtonItem *popoverButtonItem;
+ NSMutableArray* fSamples;
+}
+@property (nonatomic, retain) UIPopoverController *popoverController;
+@property (nonatomic, retain) UIBarButtonItem *popoverButtonItem;
+
+- (void)initSamples;
+- (void)addItem:(NSString*)anItem;
+
+@end