aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ios7/ios7_video.h
diff options
context:
space:
mode:
authorVincent Bénony2015-12-09 17:49:54 +0100
committerVincent Bénony2016-01-06 16:17:37 +0100
commit80afba232a30b7d80d9331f597aee208d80cd2e1 (patch)
treed2d90432426834809eda22a96cd77c86974bdf79 /backends/platform/ios7/ios7_video.h
parent56ca0b9dc257b7da1dd8c2fdd93a95fc5b802076 (diff)
downloadscummvm-rg350-80afba232a30b7d80d9331f597aee208d80cd2e1.tar.gz
scummvm-rg350-80afba232a30b7d80d9331f597aee208d80cd2e1.tar.bz2
scummvm-rg350-80afba232a30b7d80d9331f597aee208d80cd2e1.zip
IOS: Implements scalers
Diffstat (limited to 'backends/platform/ios7/ios7_video.h')
-rw-r--r--backends/platform/ios7/ios7_video.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/backends/platform/ios7/ios7_video.h b/backends/platform/ios7/ios7_video.h
index 09a84b5498..96a0984882 100644
--- a/backends/platform/ios7/ios7_video.h
+++ b/backends/platform/ios7/ios7_video.h
@@ -35,6 +35,7 @@
#include "ios7_common.h"
#include "common/list.h"
+#import "graphics/scaler.h"
@interface iPhoneView : UIView {
VideoContext _videoContext;
@@ -72,6 +73,13 @@
UITouch *_firstTouch;
UITouch *_secondTouch;
+
+ uint8_t *_scalerMemorySrc;
+ uint8_t *_scalerMemoryDst;
+ size_t _scalerMemorySrcSize;
+ size_t _scalerMemoryDstSize;
+ int _scalerScale;
+ ScalerProc *_scaler;
}
- (id)initWithFrame:(struct CGRect)frame;