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

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

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: Cleaning up gl_display_handler for chromium. Created 3 years, 11 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 2017 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_APP_EXAMPLE_VIEW_CONTROLLER_H_
6 #define REMOTING_CLIENT_IOS_APP_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 GLES3 context being drawn too.
joedow 2017/01/25 23:16:28 nit: s/too/to
nicholss 2017/01/26 18:00:15 Done.
21 EAGLContext* _context;
22 remoting::ios::AppRuntime* _runtime;
23 GlDisplayHandler* displayHandler;
joedow 2017/01/25 23:16:28 displayHandler needs a leading underscore (_displa
nicholss 2017/01/26 18:00:16 This is really confusing to know which to use, inf
24 remoting::SoftwareVideoRenderer* video_renderer_;
25
26 remoting::VideoEncoderVerbatim encoder_;
27 ClientGestures* _gestures;
28 }
29
30 @end
31
32 #endif // REMOTING_CLIENT_IOS_APP_EXAMPLE_VIEW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698