Chromium Code Reviews| Index: remoting/client/opengl_wrapper.h |
| diff --git a/remoting/client/opengl_wrapper.h b/remoting/client/opengl_wrapper.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..16ea2d2e3f97c60d0f3cd069409002a3d40c550b |
| --- /dev/null |
| +++ b/remoting/client/opengl_wrapper.h |
| @@ -0,0 +1,12 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef REMOTING_CLIENT_OPENGL_WRAPPER_H_ |
|
Lambros
2016/03/16 00:22:11
Why do you need this file?
nicholss
2016/03/16 16:40:39
This will allow us to use the same cpp files in an
|
| +#define REMOTING_CLIENT_OPENGL_WRAPPER_H_ |
| + |
| +#if defined(OS_IOS) |
| +#include <OpenGLES/ES2/gl.h> |
| +#endif // defined(OS_IOS) |
| + |
| +#endif // REMOTING_CLIENT_OPENGL_WRAPPER_H_ |