Changeset 769 for trunk/src/gui/egl/qeglproperties_p.h
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/egl/qeglproperties_p.h
r651 r769 59 59 QT_BEGIN_INCLUDE_NAMESPACE 60 60 61 #ifndef QT_NO_EGL 62 #if defined(QT_OPENGL_ES_2) 63 # include <GLES2/gl2.h> 64 #endif 65 61 66 #if defined(QT_GLES_EGL) 62 # include <GLES/egl.h>67 # include <GLES/egl.h> 63 68 #else 64 # include <EGL/egl.h>69 # include <EGL/egl.h> 65 70 #endif 71 #else 72 73 //types from egltypes.h for compiling stub without EGL headers 74 typedef int EGLBoolean; 75 typedef int EGLint; 76 typedef int EGLenum; 77 typedef int NativeDisplayType; 78 typedef void* NativeWindowType; 79 typedef void* NativePixmapType; 80 typedef int EGLDisplay; 81 typedef int EGLConfig; 82 typedef int EGLSurface; 83 typedef int EGLContext; 84 typedef int EGLClientBuffer; 85 #define EGL_NONE 0x3038 /* Attrib list terminator */ 86 87 #endif 88 89 66 90 67 91 #if defined(Q_WS_X11) … … 99 123 BestPixelFormat 100 124 }; 101 } ;125 } 102 126 103 127 class QX11Info;
Note:
See TracChangeset
for help on using the changeset viewer.