OLD | NEW |
---|---|
(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_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
| |
6 #define REMOTING_CLIENT_OPENGL_WRAPPER_H_ | |
7 | |
8 #if defined(OS_IOS) | |
9 #include <OpenGLES/ES2/gl.h> | |
10 #endif // defined(OS_IOS) | |
11 | |
12 #endif // REMOTING_CLIENT_OPENGL_WRAPPER_H_ | |
OLD | NEW |