summaryrefslogtreecommitdiff
path: root/helpers/glfeatures.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-05-10gltrace: Only check primitive restart index if supported.Jose Fonseca1-0/+5
2016-04-10glstate: Tweak features.Jose Fonseca1-11/+14
Not all similar extensions are alike.
2016-04-10glstate: More accurately check for PBO / 3D tex support before using it.Jose Fonseca1-0/+5
This allows to use glretrace with Microsoft GDI OpenGL 1.1 implementation, just for sanity testing purposes.
2016-04-10glstate: More accurately check for READ_BUFFER/ReadBuffer support.Jose Fonseca1-0/+5
2016-04-10glstate: Check draw (and read) FBOs are advertised before using.Jose Fonseca1-6/+16
2016-04-05gltrace,glretrace: Handle GL_ARB_query_buffer_object correctly.Jose Fonseca1-0/+8
More specifically, treat pointers as offsets when GL_QUERY_BUFFER is bound to a buffer. Code changes follow closely the similar logic used for PBOs. https://github.com/apitrace/apitrace/issues/442
2016-04-04gltrace: Use glfeature to decide when PBOs are supported.Jose Fonseca1-0/+9
2016-04-04helpers: Move GL extension cache object to glfeatures.Jose Fonseca1-0/+38
So it can be used in the wrappers too.
2016-04-04helpers: rename glprofile to glfeatures.Jose Fonseca1-0/+325
This module will have more than just description of OpenGL profiles, but actual features.