1. 09 Feb, 2020 2 commits
  2. 08 Feb, 2020 2 commits
  3. 07 Feb, 2020 9 commits
  4. 06 Feb, 2020 5 commits
  5. 05 Feb, 2020 1 commit
  6. 04 Feb, 2020 10 commits
  7. 03 Feb, 2020 4 commits
  8. 02 Feb, 2020 1 commit
    • StefanBruens's avatar
      Merge pull request #16479 from StefanBruens:fix_gles_glx_h_include · f05d5888
      StefanBruens authored
      Fix compilation errors on GLES platforms
      
      * Do not include glx.h when using GLES
      
      GL/glx.h is included on all LINUX plattforms, which is wrong
      for a number of reasons:
      
      - GL_PERSPECTIVE_CORRECTION_HINT is defined in GL/gl.h, so we
        want gl.h not glx.h, the latter just includes the former
      - GL/gl.h is a Desktop GL header, and should not be included
        on GLES plattforms
      - GL/gl.h is already included via QtOpenGL ->
        QtGui/qopengl.h on desktop plattforms
      
      This fixes a problem when Qt is compiled with GLES, which
      is often done on ARM platforms where desktop GL is not or
      only poorly supported (e.g. slow due to emulation).
      
      Fixes part of #9171.
      
      * Only set GL_PERSPECTIVE_CORRECTION_HINT when GL version defines it
      
      GL_PERSPECTIVE_CORRECTION_HINT does not exist in GLES 2.0/3.x,
      and has been deprecated in OpenGL 3.0 core profiles.
      
      Fixes part of #9171.
      f05d5888
  9. 01 Feb, 2020 2 commits
  10. 31 Jan, 2020 2 commits
  11. 30 Jan, 2020 1 commit
  12. 29 Jan, 2020 1 commit
    • Arnaud Brejeon's avatar
      Merge pull request #16415 from arnaudbrejeon:bug_fix_16410 · ecbba852
      Arnaud Brejeon authored
      * Fix bug 16410 and add test
      
      * imgproc(connectedcomponents): avoid manual uninitialized allocations
      
      * imgproc(connectedcomponents): force 'odd' chunk range size
      
      * imgproc(connectedcomponents): reuse stripeFirstLabel{4/8}Connectivity
      
      * imgproc(connectedcomponents): extend fix from PR14964
      ecbba852