summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/debugging_extension.hpp
Commit message (Collapse)AuthorAgeFilesLines
* [tidy] modernize-use-usingBruno de Oliveira Abinader2017-05-121-7/+7
|
* [core] Refactor OpenGL extension loading mechanismKonstantin Käfer2017-03-231-0/+120
Previously, we initialized global variables that held pointers to the extension functions. While this seemed to work, the spec doesn't guarantee that the function pointers are identical for different OpenGL contexts. Therefore, we are now making them a member variable of the Context object.