aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/GLContextImpl.java
Commit message (Expand)AuthorAgeFilesLines
* Bug 1468 - SIGSEGV on use after free when destroying NEWT Window/Display via ...Sven Gothel2023-10-021-1/+1
* Minor cleanup of imports, etc: FBObject, GLContext*, Texture, ..Sven Gothel2023-08-131-8/+4
* Add {GL, GLContext}.getDefaultDrawBuffer() to complement getDefaultReadBuffer()Sven Gothel2023-07-151-0/+2
* MacOSXCGLDrawableFactory.canCreateGLPbuffer(): Disabled for MacOS >= 10.13 (H...Sven Gothel2023-05-061-0/+4
* Clock: Use Clock.currentNanos() instead of System.nanoTime(); Enhancing FPSCo...Sven Gothel2023-03-071-2/+3
* Moved GlueGen's PlatformPropsImpl's static OSXVersion to GLContextImpl.MacOSV...Sven Gothel2023-01-151-3/+26
* Replace AccessController.doPrivileged() w/ SecurityUtil.doPrivileged()Sven Gothel2023-01-141-5/+6
* Bug 1312: GLContextShareSet CleanupSven Gothel2019-12-311-2/+2
* Bug 1347: Resolve Merged EGL/Desktop Profile MappingSven Gothel2019-12-281-5/+34
* Bug 1200: GLRendererQuirks.NoSurfacelessCtx still persists on Linux/X11 NVIDI...Sven Gothel2019-12-081-3/+3
* Bug 1200: probeSurfacelessCtx works at least since NVIDIA 430.40.Sven Gothel2019-11-281-2/+2
* Bug 1156: Utilize internal glGetStringi (same as glGetString) - RobostnessSven Gothel2019-11-221-68/+114
* Bug 1391 Bug 1392: Implement GLRendererQuirks DontChooseFBConfigBestMatch and...Sven Gothel2019-09-071-1/+9
* Bug 1391: Cleanup to submit fix: Update known Quirk range; BuggyColorRenderbu...Sven Gothel2019-09-071-5/+7
* Bug 1384: Move remaining 'lose' property quirks into GLRendererQuirks.OverrideSven Gothel2019-08-231-22/+2
* Bug 1385: Limit Quirk GL3CompatNonCompliant to Mesa < 18.2.0Sven Gothel2019-08-231-3/+4
* Bug 1383: Tighten version/profile qualification: fail if: requested compat pr...Sven Gothel2019-08-231-2/+10
* Bug 1383: Final fix: Always test GL3CompatNonCompliant and test on requested ...Sven Gothel2019-08-221-2/+16
* Bug 1383: GLContextImpl.setGLFunctionAvailbility(..): Ensure only one request...Sven Gothel2019-08-221-2/+33
* Bug 1383: Cleanup GLContextImpl.setGLFunctionAvailability(..): Parameter, var...Sven Gothel2019-08-221-119/+151
* Bug 1384: Allow GLRendererQuirks to be overridden by user propertiesSven Gothel2019-08-211-3/+6
* iOS: Initial working commit supporting iOS (ipad pro 11)Sven Gothel2019-06-231-4/+7
* Bug 1357 Related: GLRendererQuirks NoSetSwapIntervalPostRetarget and NoDouble...Julien Gouesse2019-03-251-5/+9
* Update GLContextImpl.javaCampbell Jones2017-12-261-1/+1
* Remove deprectated classes and methodsSven Gothel2015-10-151-3/+23
* Bug 1189 - Add OpenGL ES 3.2 and new GL 4.5 Extensions support - Part5: GL_AR...Sven Gothel2015-10-071-6/+14
* GLContextImpl: clarify surfacelessOK -> isSurfacelessSven Gothel2015-10-051-6/+6
* Bug 1202: Fix vsync regression on OSX when using CALayerSven Gothel2015-09-011-2/+2
* Bug 1207 - GLDebugMessageHandler: Support GL_KHR_debug for Desktop and ES pro...Sven Gothel2015-08-301-7/+7
* Bug 1203: Optimize OpenGL Profile probing/mapping (Skip redundant queries)Sven Gothel2015-08-301-37/+62
* Bug 1203: Fix regression: Handle GLRendererQuirks.GLES3ViaEGLES2ConfigSven Gothel2015-08-301-1/+4
* Bug 1203: Fix regression of ES3 minMajor constraint lack (commit b8ba30a0bc7c...Sven Gothel2015-08-291-7/+3
* Bug 1202 (related): Fix SEMVER regressions mostly due to Bug 1202 commits (ad...Sven Gothel2015-08-291-2/+4
* Bug 1203: Implement regular EGL OpenGL Profile probing (ES* + GL*)Sven Gothel2015-08-291-0/+34
* Bug 1200: Refine fix for crash on GNU/Linux x86_64 'NVidia beta driver 355.06...Sven Gothel2015-08-291-10/+11
* Bug 1203: Cleanup and Prepare for regular EGL Profile probingSven Gothel2015-08-291-80/+211
* Bug 1203: GLDrawable-Stateless operations in GLContextImpl, using ctxVersion ...Sven Gothel2015-08-291-44/+101
* Bug 1200: Fix crash on GNU/Linux x86_64 'NVidia beta driver 355.06' @ probeSu...Sven Gothel2015-08-271-0/+10
* Bug 1203: Properly format DEBUG output related to mapGLVersions: Use '-MapGLV...Sven Gothel2015-08-271-14/+17
* Bug 1203 (Related): Only attempt to retrieve getGLIntVersion(..) if requiredSven Gothel2015-08-271-37/+38
* Bug 1202 - Move GLContextImpl.*SwapInterval* into its own sectionSven Gothel2015-08-271-28/+32
* Bug 1202 - Add support of Adaptive Vsync via [GLX|WGL]_EXT_swap_control_tearSven Gothel2015-08-271-0/+31
* GLContextImpl.setRendererQuirks(..): Reduce duplicated code of adding quirksSven Gothel2015-08-261-45/+31
* GLContextImpl: Update uncommented code (method name changed)Sven Gothel2015-07-241-2/+2
* Bug 1150 - Fix GLContextImpl.createImpl(..) NoARBCreateContext and '!ARB GL >...Sven Gothel2015-03-261-27/+38
* Bug 1135 - GL/GLContext: Add isGLES31Compatible()Sven Gothel2015-03-061-12/+24
* Bug 1135 - Cleanup: Remove GL_NV_vertex_array_range extension support in GLCo...Sven Gothel2015-03-061-20/+1
* Add missing privileged section for NativeLibrary lookup: GLContextImpl and FF...Sven Gothel2015-02-051-55/+68
* Bug 682 - Relocating javax.media.opengl.* -> com.jogamp.opengl.* (Part 1)Sven Gothel2015-02-021-24/+24
* Bug 1068 - Unify Surfaceless probing; Fix Surfaceless for OSX and Windows (pr...Sven Gothel2015-01-231-0/+2