diff options
author | Ptyl Dragon <ptyl@cloudon.com> | 2013-10-30 13:33:13 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2013-11-15 16:51:56 +0100 |
commit | 6b6088fa9cfe6f81107e4aed80f18dfdf3f664f0 (patch) | |
tree | a54e575fccae8f6f29df924c655a9f51f497f3ea /ios | |
parent | 8d56ce8927ae6f6407b7ab13be31d790d4f511a4 (diff) |
1st implementation of touch_lo_get_content_size
Change-Id: I8b72c4366b502a71f2ed3bf917296c9553364d83
Diffstat (limited to 'ios')
-rw-r--r-- | ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m index 82a970f0fe2e..f709fc420be8 100644 --- a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m +++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m @@ -59,6 +59,9 @@ self.tester.params.tileHeight); CGContextRestoreGState(context); + + MLOContentSize size = touch_lo_get_content_size(); + NSLog(@"MLOContentSize: width=%lld, height=%lld",size.width, size.height); } @end |