1. 05 Nov, 2014 - 1 commit
  2. 23 Oct, 2014 - 1 commit
    • Jocelyn Turcotte's avatar
      Do not parent the shader program to the QOpenGLContext · ab79e832
      Jocelyn Turcotte authored
      
      When the last QOpenGLContext in a share group is destroyed, all the
      remaining alive QOpenGL* objects have their resource invalidated.
      
      This happens under QOpenGLContext::destroy, but before any QObject
      children of the QOpenGLContext is destroyed by the QObject destructor.
      This is currently an issue with ANGLE that could be fixed in its own
      code, but that is still better for us to be covered against.
      
      This means that the OpenGL resource is assumed to be destroyed with
      the context by the driver, but this isn't always the same.
      
      Fix an instance of this in QOpenGLTextureGlyphCache by explicitly
      owning the blit QOpenGLShaderProgram instead of parenting it under
      the current GL context. The very same resource invalidation system
      will prevent anything bad to happen if the QOpenGLContext is
      destroyed before the QOpenGLTextureGlyphCache.
      
      Task-number: QTBUG-41588
      Change-Id: Ic3bc69b07bcbdcf7d699ea9139b2e34b04e642e5
      Reviewed-by: default avatarLaszlo Agocs <laszlo.agocs@digia.com>
      ab79e832
  3. 24 Sep, 2014 - 1 commit
  4. 28 May, 2014 - 1 commit
  5. 13 May, 2014 - 1 commit
  6. 25 Apr, 2014 - 1 commit
    • Laszlo Agocs's avatar
      Rename new QOpenGLContext APIs · f9d32327
      Laszlo Agocs authored
      
      isES() becomes isOpenGLES(). The library type enums are changed
      DesktopGL -> LibGL and GLES2 -> LibGLES. This removes the now
      unnecessary version number, the confusing "desktop" term and provides
      better readability.
      
      The old function/values are kept until the related qtdeclarative
      changes are integrated.
      
      Task-number: QTBUG-38564
      Change-Id: Ibb0a1209985f1ce4bb9451f9b7b093c2b68a6505
      Reviewed-by: default avatarSean Harmer <sean.harmer@kdab.com>
      f9d32327
  7. 17 Mar, 2014 - 1 commit
  8. 10 Mar, 2014 - 1 commit
  9. 04 Mar, 2014 - 1 commit
    • Laszlo Agocs's avatar
      Dynamic GL: remove exporting symbols · 4b2f35d0
      Laszlo Agocs authored
      
      Remove the opengl proxy for now. Later it will either be moved into
      a separate library or replaced by a QOpenGLFunctions-based approach.
      
      This means that the -opengl dynamic configuration is not usable
      for the time being. The rest of the enablers remain in place.
      
      The convenience function QOpenGLFunctions::isES() is now moved to
      QOpenGLContext and is changed to check the renderable type. This is
      extremely useful since besides supporting dynamic GL it solves also
      the problem of GL_ARB_ES2_compatibility (i.e. it triggers the real ES
      path when creating an ES-compatible context with a desktop OpenGL
      implementation).
      
      Task-number: QTBUG-36483
      Task-number: QTBUG-37172
      Change-Id: I045be3fc16e9043e1528cf48e6bf0903da4fa7ca
      Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@digia.com>
      Reviewed-by: default avatarJørgen Lind <jorgen.lind@digia.com>
      4b2f35d0
  10. 28 Feb, 2014 - 1 commit
  11. 26 Feb, 2014 - 3 commits
  12. 19 Feb, 2014 - 1 commit
  13. 14 Feb, 2014 - 1 commit
    • Laszlo Agocs's avatar
      Dynamic GL switch on Windows · 97c187da
      Laszlo Agocs authored
      
      The patch introduces a new build configuration on Windows which
      can be requested by passing -opengl dynamic to configure.
      
      Platforms other than Windows (including WinRT) are not affected.
      The existing Angle and desktop configurations are not affected.
      These continue to function as before and Angle remains the default.
      
      In the future, when all modules have added support for the dynamic
      path, as described below, the default configuration could be changed
      to be the dynamic one. This would allow providing a single set of
      binaries in the official builds instead of the current two.
      
      When requesting dynamic GL, Angle is built but QT_OPENGL_ES[_2] are
      never defined. Instead, the code path that has traditionally been
      desktop GL only becomes the dynamic path that has to do runtime
      checks. Qt modules and applications are not linked to opengl32.dll or
      libegl/glesv2.dll in this case. Instead, QtGui exports all necessary
      egl/egl/gl functions which will, under the hood, forward all requests
      to a dynamically loaded EGL/WGL/GL implementation.
      
      Porting guide (better said, changes needed to prepare your code to
      work with dynamic GL builds when the fallback to Angle is utilized):
      
      1. In !QT_OPENGL_ES[_2] code branches use QOpenGLFunctions::isES() to
      differentiate between desktop and ES where needed. Keep in mind that
      it is the desktop GL header (plus qopenglext.h) that is included,
      not the GLES one.
      
      QtGui's proxy will handle some differences, for example calling
      glClearDepth will route to glClearDepthf when needed. The built-in
      eglGetProcAddress is able to retrieve pointers for standard GLES2
      functions too so code resolving OpenGL 2 functions will function
      in any case.
      
      2. QT_CONFIG will contain "opengl" and "dynamicgl" in dynamic builds,
      but never "angle" or "opengles2".
      
      3. The preprocessor define QT_OPENGL_DYNAMIC is also available in
      dynamic builds. The usage of this is strongly discouraged and should
      not be needed anywhere except for QtGui and the platform plugin.
      
      4. Code in need of the library handle can use
      QOpenGLFunctions::platformGLHandle().
      
      The decision on which library to load is currently based on a simple
      test that creates a dummy window/context and tries to resolve an
      OpenGL 2 function. If this fails, it goes for Angle. This seems to work
      well on Win7 PCs for example that do not have proper graphics drivers
      providing OpenGL installed but are D3D9 capable using the default drivers.
      
      Setting QT_OPENGL to desktop or angle skips the test and forces
      usage of the given GL. There are also two new application attributes
      that could be used for the same purpose.
      
      If Angle is requested but the libraries are not present, desktop is
      tried. If desktop is requested, or if angle is requested but nothing
      works, the EGL/WGL functions will still be callable but will return 0.
      This conveniently means that eglInitialize() and such will report a failure.
      
      Debug messages can be enabled by setting QT_OPENGLPROXY_DEBUG. This will
      tell which implementation is chosen.
      
      The textures example application is ported to OpenGL 2, the GL 1
      code path is removed.
      
      [ChangeLog][QtGui] Qt builds on Windows can now be configured for
      dynamic loading of the OpenGL implementation. This can be requested
      by passing -opengl dynamic to configure. In this mode no modules will
      link to opengl32.dll or Angle's libegl/libglesv2. Instead, QtGui will
      dynamically choose between desktop and Angle during the first GL/EGL/WGL
      call. This allows deploying applications with a single set of Qt libraries
      with the ability of transparently falling back to Angle in case the
      opengl32.dll is not suitable, due to missing graphics drivers for example.
      
      Task-number: QTBUG-36483
      Change-Id: I716fdebbf60b355b7d9ef57d1e069eef366b4ab9
      Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@digia.com>
      Reviewed-by: default avatarJørgen Lind <jorgen.lind@digia.com>
      97c187da
  14. 06 Nov, 2013 - 1 commit
  15. 04 Nov, 2013 - 1 commit
  16. 12 Aug, 2013 - 1 commit
  17. 30 Jul, 2013 - 1 commit
  18. 05 Jun, 2013 - 1 commit
    • Valery Volgutov's avatar
      Fix FBO restoring in QOpenGLTextureGlyphCache · 1d8ec5fa
      Valery Volgutov authored
      
      QOpenGLTextureGlyphCache::restoreTextureData restores FBO which
      was binded before restoreTextureData call. More specifically,
      it restores QOpenGLContextPrivate's current_fbo member. This works
      if FBO was binded by QOpenGLFramebufferObject but not if FBO was
      binded using glBindFramebufferObject and rendering done via
      QOpenGLPaintDevice.
      
      This patch fixes it by querying current FBO using
      GL_FRAMEBUFFER_BINDING query and restoring it.
      
      Change-Id: Ia97a21e62566dc39a5191b66d3ca0e3ad0845ce1
      Reviewed-by: default avatarValery Volgutov <valery.volgutov@lge.com>
      Reviewed-by: default avatarGunnar Sletta <gunnar.sletta@digia.com>
      1d8ec5fa
  19. 13 Feb, 2013 - 1 commit
  20. 18 Jan, 2013 - 1 commit
  21. 06 Nov, 2012 - 1 commit
  22. 22 Sep, 2012 - 1 commit
  23. 20 Aug, 2012 - 1 commit
    • Sean Harmer's avatar
      OpenGL: Use official glext.h and gl2ext.h headers · fc41ee4c
      Sean Harmer authored
      The Khronos group makes the glext.h (Desktop OpenGL) and gl2ext.h
      (OpenGL ES2) headers officially available nowadays. Most (all?)
      Linux systems ship this by default. On Windows platforms the
      glext.h file needs to be downloaded from
      
      http://www.opengl.org/registry/api/glext.h
      
      and placed alongside the system OpenGL header.
      
      Making use of the official header reduces the maintenance
      overhead for OpenGL support in Qt by removing the need to copy
      and paste definitions into the Qt sources.
      
      As the Khronos-provided headers are standardised and backwards and
      forwards compatible we can utilise these for all platforms rather
      than just for Windows. This means that all definitions required
      by Qt will be present even if the system ships out-dated
      equivalents.
      
      Mac OS X needs special handling in that we should always use the
      system-provided headers there. This is because Apple controls the
      OpenGL driver and the headers that go along with it. As such there
      is no possibility that the driver exposes additional functionality
      compared with the system-provided OpenGL headers. Apple has also
      decided to make different decisions about some OpenGL typedefs
      compared to other implementations. For example, Apple typdefs
      GLhandleARB to void* whereas other platforms use unsigned int.
      
      The alternative, which is to use the system provided glext.h (or
      gl2ext.h) header means that Qt code would need to check for the
      availability of such definitions wherever it is not guaranteed
      to be provided by core OpenGL/ES just to compile.
      
      The proposed approach means that Qt can compile regardless of
      the system's OpenGL extension support. We just need to be
      rigourous in runtime checking of support for extensions but
      that is already a requirement (and is missing in a few places,
      see TODO's added in this commit).
      
      The official Khronos headers are added to Qt as
      
      qopenglext.h - Desktop OpenGL
      qopengles2ext.h - OpenGL ES2
      
      They need to be public but not part of QtGui module include, hence
      the headers have been modified by adding
      
       #if 0
       #pragma qt_no_master_include
       #endif
      
      to them.
      
      This has been tested on:
      
      Gentoo Linux with GCC 4.6.3
      Windows 7 with MSVC 2010
      Mac OSX 10.8 with Apple clang 4.0 (based on LLVM 3.1svn)
      QNX with qcc (based on GCC 4.4)
      
      A small change is needed to QtDeclarative when building for OpenGL
      ES 2 after applying this commit. See
      https://codereview.qt-project.org/#change,31794
      
      
      
      Change-Id: I4b3d2b1680baf4c78be9a87b4d8de076d23e8f82
      Reviewed-by: default avatarGunnar Sletta <gunnar.sletta@nokia.com>
      Reviewed-by: default avatarLars Knoll <lars.knoll@nokia.com>
      fc41ee4c
  24. 05 Jul, 2012 - 2 commits
  25. 01 May, 2012 - 1 commit
  26. 30 Jan, 2012 - 1 commit
  27. 23 Jan, 2012 - 1 commit
  28. 05 Jan, 2012 - 1 commit
  29. 28 Oct, 2011 - 1 commit
    • Samuel Rødal's avatar
      Get rid of legacy glTexParameterf calls. · 77d30df7
      Samuel Rødal authored
      
      ES 1.0 didn't have glTexParameteri, which is why we sometimes used
      glTexParameterf. However, we shouldn't use glTexParameterf because
      that's treating integer values as floating point, which is not type
      safe. ES 1.1+ and ES 2.x have glTexParameteri, and we don't really care
      about supporting ES 1.0 in any case in Qt 5.
      
      Change-Id: I6b586b31ddc418ba319c4cc88f6bb3978fdbd040
      Reviewed-by: default avatarKim M. Kalland <kim.kalland@nokia.com>
      77d30df7
  30. 13 Oct, 2011 - 1 commit
  31. 07 Oct, 2011 - 1 commit
  32. 30 Aug, 2011 - 1 commit
  33. 29 Aug, 2011 - 2 commits
  34. 16 Aug, 2011 - 1 commit
  35. 24 May, 2011 - 1 commit
  36. 27 Apr, 2011 - 1 commit
    • Qt by Nokia's avatar
      Initial import from the monolithic Qt. · 38be0d13
      Qt by Nokia authored
      This is the beginning of revision history for this module. If you
      want to look at revision history older than this, please refer to the
      Qt Git wiki for how to use Git history grafting. At the time of
      writing, this wiki is located here:
      
      http://qt.gitorious.org/qt/pages/GitIntroductionWithQt
      
      If you have already performed the grafting and you don't see any
      history beyond this commit, try running "git log" with the "--follow"
      argument.
      
      Branched from the monolithic repo, Qt master branch, at commit
      896db169ea224deb96c59ce8af800d019de63f12
      38be0d13