Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/egl/qeglproperties_p.h

    r651 r769  
    5959QT_BEGIN_INCLUDE_NAMESPACE
    6060
     61#ifndef QT_NO_EGL
     62#if defined(QT_OPENGL_ES_2)
     63#   include <GLES2/gl2.h>
     64#endif
     65
    6166#if defined(QT_GLES_EGL)
    62 #include <GLES/egl.h>
     67#   include <GLES/egl.h>
    6368#else
    64 #include <EGL/egl.h>
     69#   include <EGL/egl.h>
    6570#endif
     71#else
     72
     73//types from egltypes.h for compiling stub without EGL headers
     74typedef int EGLBoolean;
     75typedef int EGLint;
     76typedef int EGLenum;
     77typedef int    NativeDisplayType;
     78typedef void*  NativeWindowType;
     79typedef void*  NativePixmapType;
     80typedef int EGLDisplay;
     81typedef int EGLConfig;
     82typedef int EGLSurface;
     83typedef int EGLContext;
     84typedef int EGLClientBuffer;
     85#define EGL_NONE            0x3038  /* Attrib list terminator */
     86
     87#endif
     88
     89
    6690
    6791#if defined(Q_WS_X11)
     
    99123        BestPixelFormat
    100124    };
    101 };
     125}
    102126
    103127class QX11Info;
Note: See TracChangeset for help on using the changeset viewer.