| Index: remoting/client/ios/app/host_view_controller.h
|
| diff --git a/remoting/client/ios/app/host_view_controller.h b/remoting/client/ios/app/host_view_controller.h
|
| index 93a1415e14d9d0770e13ff2d1585b463f9a15a86..130424ca647f626db9ea2c5872b280859fb66b9a 100644
|
| --- a/remoting/client/ios/app/host_view_controller.h
|
| +++ b/remoting/client/ios/app/host_view_controller.h
|
| @@ -7,12 +7,14 @@
|
|
|
| #import <UIKit/UIKit.h>
|
|
|
| +#include "remoting/client/ios/display/gl_display_handler.h"
|
| +
|
| @class RemotingClient;
|
|
|
| // We don't inherit it from GLKViewController since it uses its rendering loop,
|
| // which will swap buffers when the GLRenderer is writing and causes screen
|
| // tearing issues. Instead we use GlDisplayHandler to handle the rendering loop.
|
| -@interface HostViewController : UIViewController
|
| +@interface HostViewController : UIViewController<GlDisplayHandlerDelegate>
|
|
|
| - (id)initWithClient:(RemotingClient*)client;
|
|
|
|
|