summaryrefslogtreecommitdiff
path: root/retrace/glws_waffle.cpp
AgeCommit message (Collapse)AuthorFilesLines
2017-03-27glws: add 'read' buffer parameter to makeCurrent()Brian Paul1-1/+2
So that we can support the wglMakeContextCurrentARB() and glXMakeContextCurrent() functions.
2016-06-30glretrace: Consistently use 32 bits visuals.Jose Fonseca1-1/+1
Different APIs interpret RGBA/DS bits differently: some return a visual with the smallest number of bits, others return the largest number of bits. All modern GL implementations should support 32bits visuals. So use them for sake of consistency.
2016-04-04helpers: rename glprofile to glfeatures.Jose Fonseca1-3/+3
This module will have more than just description of OpenGL profiles, but actual features.
2015-10-28glws: Update Waffle support for interface changes.Jose Fonseca1-4/+27
2015-09-15glws: Allow to overrider WAFFLE_PLATFORM via env var.Jose Fonseca1-33/+70
2015-06-27glws: Ensure context is initialized the first time it is made current.Jose Fonseca1-1/+1
2015-03-13glretrace: Set FORWARD_COMPATIBLE_BIT as per trace.Jose Fonseca1-0/+3
Not thoroughly tested across all platforms. But hopefully close enough.
2015-01-06eglretrace: Drop glws::bindApi.José Fonseca1-6/+0
Just call eglBindAPI internally in the EGL backend.
2015-01-06glretrace: Drop deprecated glws::ProfileJosé Fonseca1-4/+4
2015-01-05glretrace: Drop deprecated ProfileDesc.José Fonseca1-11/+8
2015-01-05glws: Avoid referring to PROFILE_xxx directly in Waffle backend.José Fonseca1-38/+52
2014-07-23glretrace: Abstract eglBindAPI inside glws.José Fonseca1-0/+6
Instead of calling eglBindAPI directly.
2014-01-22glws_waffle: Support shared contexts.José Fonseca1-6/+5
2014-01-21Implement --samples=N glretrace flag for X11 GL_ARB_multisampleNigel Stewart1-1/+1
Implementation for EGL, Waffle and WGL yet to be done.
2013-11-29eglretrace: Allow to build eglretrace with Waffle on desktop systems.José Fonseca1-1/+16
One needs to set ENABLE_WAFFLE and the Waffle_* variables manually. This allows to reproduce issue #197 outside Android.
2013-11-13glws: Update waffle support for glws interface changes.José Fonseca1-7/+10
2013-11-13Android: Port eglretracer for Android (v5)Juha-Pekka Heikkila1-0/+220
I fixed shareContext problem pointed out by Chad. In shareContext event I chose to just abort out as for time being I could not make it any nicer. Signed-off-by: José Fonseca <jfonseca@vmware.com>