Skip to content
Snippets Groups Projects
  1. Sep 04, 2019
  2. Sep 03, 2019
    • Kyle Brenneman's avatar
      Update GL and GLX header and XML files. · e67d3241
      Kyle Brenneman authored
      Updated the OpenGL and GLX header and XML files to the Khronos repository, from
      commit 08749e62826f34ba2e6e3733af545895f23e784b.
      e67d3241
    • Kyle Brenneman's avatar
      Add pkg-config files for EGL, GL, GLES, and GLX. · 0dfaea2b
      Kyle Brenneman authored
      This preserves the names from Mesa's gl, glesv1_cm, glesv2, and egl pkgconfig
      data, and for compatibility with that, gl.pc gives you libGL.
      
      Also added glx.pc and opengl.pc for libglvnd's libGLX and libOpenGL libraries.
      If newer applications want to explicitly depend on libGLX and the appropriate
      rendering API they can ask for the new pkgconfig names.
      
      Note that the version numbers in each file are the API versions that each
      library exposes, not the libglvnd package version.
      0dfaea2b
  3. Jul 31, 2019
  4. Apr 26, 2019
  5. Mar 13, 2019
  6. Feb 13, 2019
    • Kyle Brenneman's avatar
      Merge pull request #171 from skirank/master · f92208be
      Kyle Brenneman authored
      AARCH64 : Fix address passed to clear cache
      Unverified
      f92208be
    • Sai Kiran Korwar's avatar
      AARCH64 : Fix address passed to clear cache · 9948df63
      Sai Kiran Korwar authored
      The entrypointExec address is modified before being passed to
      clear_cache function. We do a small add/subtract for ARMv7 in
      order to enable Thumb mode. This is not required for Aarch64 as
      it does not support Thumb mode. Since we were not adding anything,
      do not subtract as well before passing the address to clear_cache.
      
      This was causing a crash while calling glXGetProcAddress.
      9948df63
  7. Nov 26, 2018
  8. Nov 01, 2018
  9. Oct 04, 2018
    • Kyle Brenneman's avatar
      Remove a couple of duplicate typedefs. · 012fe39e
      Kyle Brenneman authored
      In GL/gl.h, remove PFNGLBLENDCOLORPROC, PFNGLBLENDEQUATIONPROC, and the
      GL_OES_EGL_image section.
      
      PFNGLBLENDCOLORPROC and PFNGLBLENDEQUATIONPROC are defined in GL/glext.h in the
      GL_VERSION_1_4 section.
      
      GL_OES_EGL_image is defined in GLES/glext.h and GLES2/gl2ext.h, and the
      GLeglImageOES typedef is also defined in GL/glext.h under
      GL_EXT_EGL_image_storage.
      012fe39e
  10. Sep 20, 2018
    • Kyle Brenneman's avatar
      tests: Add tests for the multithreaded path in libGLdispatch · bed48a10
      Kyle Brenneman authored
      This is important for testing the TSD stubs, which have a separate fast path
      for single-threaded programs.
      
      The TSD stubs start with a simple global variable to hold the dispatch table
      so that a single-threaded program doesn't have to deal with the overhead of
      calling pthread_getspecific. When a second thread comes along, it sets that
      variable to NULL, which makes the stubs call pthread_getspecific instead.
      
      This change adds a flag to the testgldispatch test program that tells it to
      call into libGLdispatch from two threads to force it into its multi-threaded
      mode.
      
      It also adds three new test scripts, which are the same testgldispatch tests
      but for the multithreaded path.
      bed48a10
  11. Sep 19, 2018
  12. Aug 17, 2018
  13. Aug 16, 2018
    • Mathieu Bridon's avatar
      build: Find Python the Autotools way · 90f973f7
      Mathieu Bridon authored
      An added advantage to this is that it makes it really easy to build with
      Python 3, the same way other Autotools projects support it:
      
          $ export PYTHON=/usr/bin/python3
          $ ./configure
      90f973f7
  14. Jul 24, 2018
  15. Jun 20, 2018
  16. Jun 06, 2018
  17. May 24, 2018
  18. Apr 13, 2018
    • Kyle Brenneman's avatar
      Some fixes for "make dist" · 652909fb
      Kyle Brenneman authored
      Don't point nonst_HEADERS or EXTRA_DIST at entire directories. That causes
      "make dist" to include files that it shouldn't, such as configured makefiles
      and .pyc files.
      
      Also added a few generated header files to noinst_HEADERS.
      652909fb
  19. Apr 11, 2018
    • Kyle Brenneman's avatar
      GLdispatch: Use --version-script instead -export-symbols. · 4914b61f
      Kyle Brenneman authored
      The -export-symbols option in libtool creates a version script on Linux, but
      on FreeBSD it instead uses the -retain-symbols-file option, which doesn't do
      anything with the dynamic symbol table.
      
      Instead, manually pass the --version-script option to the linker.
      4914b61f
  20. Mar 27, 2018
    • Kyle Brenneman's avatar
      Merge branch 'freebsd-fixes' · 5baa1e5c
      Kyle Brenneman authored
      Various fixes so that libglvnd can build and run on FreeBSD.
      
      The only change to C code is to deal with a difference in the parameters for
      mincore(2).
      
      Most of the rest is to to remove the dependency on GNU make and bash.
      5baa1e5c
  21. Mar 26, 2018
  22. Mar 08, 2018
  23. Mar 05, 2018
Loading