Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: remoting/client/ios/chromiumoting/example_view_controller.h

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: Adjusting how gl_renderer draws layers and added a demo app for CRD iOS. Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_CLIENT_IOS_CHROMIUMOTING_EXAMPLE_VIEW_CONTROLLER_H_
6 #define REMOTING_CLIENT_IOS_CHROMIUMOTING_EXAMPLE_VIEW_CONTROLLER_H_
7
8 #import <GLKit/GLKit.h>
9 #import "remoting/client/ios/display/gl_display_handler.h"
10 #include "remoting/client/ios/app_runtime.h"
11
12 #include "remoting/client/software_video_renderer.h"
13 #include "remoting/codec/video_encoder_verbatim.h"
14 #include "remoting/proto/video.pb.h"
15 #import "remoting/client/ios/client_gestures.h"
16
17 @interface ExampleViewController : GLKViewController {
18 @private
19
20 // The GLES2 context being drawn too.
21 EAGLContext* _context;
22 remoting::ios::AppRuntime* _runtime;
23 GlDisplayHandler* displayHandler;
24 remoting::SoftwareVideoRenderer* video_renderer_;
25
26 remoting::VideoEncoderVerbatim encoder_;
27 ClientGestures* _gestures;
28 }
29
30 @end
31
32 #endif // REMOTING_CLIENT_IOS_CHROMIUMOTING_EXAMPLE_VIEW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698