summaryrefslogtreecommitdiffstats
path: root/platform/iphone/gl_view.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-11-17 07:46:11 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-11-17 07:46:11 -0300
commitd5cb758d36035fc35e960a466d0b370ff19e4f76 (patch)
treebe190717a7b8cd3924c3d9ff3ba5f5237cd26d41 /platform/iphone/gl_view.h
parent56b30b31e4df887a5b7b5c70a87597d250482c1f (diff)
downloadredot-engine-d5cb758d36035fc35e960a466d0b370ff19e4f76.tar.gz
NavMesh
-=-=-=- -Fixed NavMesh API -New NavMesh demo -Support for animated Particles2D -Fixes for native video playback on iOS
Diffstat (limited to 'platform/iphone/gl_view.h')
-rwxr-xr-xplatform/iphone/gl_view.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/platform/iphone/gl_view.h b/platform/iphone/gl_view.h
index 3e6181ab90..8ae7c2f87d 100755
--- a/platform/iphone/gl_view.h
+++ b/platform/iphone/gl_view.h
@@ -32,6 +32,7 @@
#import <OpenGLES/ES1/gl.h>
#import <OpenGLES/ES1/glext.h>
#import <MediaPlayer/MediaPlayer.h>
+#import <AVFoundation/AVFoundation.h>
@protocol GLViewDelegate;
@@ -66,6 +67,13 @@
@property(nonatomic, assign) id<GLViewDelegate> delegate;
+// AVPlayer-related properties
+@property(strong, nonatomic) AVAsset *avAsset;
+@property(strong, nonatomic) AVPlayerItem *avPlayerItem;
+@property(strong, nonatomic) AVPlayer *avPlayer;
+@property(strong, nonatomic) AVPlayerLayer *avPlayerLayer;
+
+// Old videoplayer properties
@property(strong, nonatomic) MPMoviePlayerController *moviePlayerController;
@property(strong, nonatomic) UIWindow *backgroundWindow;