summaryrefslogtreecommitdiff
path: root/vcl/ios
diff options
context:
space:
mode:
authorPtyl Dragon <ptyl@cloudon.com>2013-10-29 16:22:06 +0200
committerJan Holesovsky <kendy@collabora.com>2013-11-15 16:51:55 +0100
commit46f2b5388c1d7d1de3aa86054f28d2555634a8d9 (patch)
tree63fd4d6611f56f21d3c3f5277f49138d6a9090f6 /vcl/ios
parent53001c774adbe2da8a4cb536a026a6f4cd4d8674 (diff)
changed to CGSize
Change-Id: Ic84fcadf4332210693586825cdd8e32ef0f2a727
Diffstat (limited to 'vcl/ios')
-rw-r--r--vcl/ios/iosinst.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/vcl/ios/iosinst.cxx b/vcl/ios/iosinst.cxx
index 39208f53ca56..d6e580a84a9b 100644
--- a/vcl/ios/iosinst.cxx
+++ b/vcl/ios/iosinst.cxx
@@ -415,6 +415,17 @@ touch_lo_copy_buffer(const void * source, size_t sourceWidth, size_t sourceHeigh
}
extern "C"
+CGSize touch_lo_get_content_size()
+{
+ CGSize contentSize = CGSizeMake(0,0);
+ SalFrame *pFocus = IosSalInstance::getInstance()->getFocusFrame();
+ if (pFocus)
+ {
+ }
+ return contentSize;
+}
+
+extern "C"
void touch_lo_render_windows(void *context, int minX, int minY, int width, int height)
{
CGContextRef cgContext = (CGContextRef) context;