diff options
Diffstat (limited to 'vcl/ios')
-rw-r--r-- | vcl/ios/iosinst.cxx | 11 |
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; |