 Chromium Code Reviews
 Chromium Code Reviews Issue 13886018:
  Add a factory and defines for native Linux surfaces.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 13886018:
  Add a factory and defines for native Linux surfaces.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: third_party/khronos/EGL/eglplatform.h | 
| diff --git a/third_party/khronos/EGL/eglplatform.h b/third_party/khronos/EGL/eglplatform.h | 
| index 34c6e6151b27d9b783266b20022612f4a51af8ea..1eeb6baf12603f7ff39e95e5d8f24494c0c6de86 100644 | 
| --- a/third_party/khronos/EGL/eglplatform.h | 
| +++ b/third_party/khronos/EGL/eglplatform.h | 
| @@ -94,6 +94,12 @@ typedef struct ANativeWindow* EGLNativeWindowType; | 
| typedef struct egl_native_pixmap_t* EGLNativePixmapType; | 
| typedef void* EGLNativeDisplayType; | 
| +#elif defined(USE_NATIVE_SURFACE_LINUX) | 
| + | 
| +typedef int EGLNativeDisplayType; | 
| 
DaveMoore
2013/04/30 17:53:42
Nit: either align the type names or only one space
 
rjkroege
2013/05/06 18:46:24
Done.
 | 
| +typedef intptr_t EGLNativeWindowType; | 
| +typedef intptr_t EGLNativePixmapType; | 
| + | 
| #elif defined(__unix__) | 
| /* X11 (tentative) */ |