(GL) Add comments

This commit is contained in:
twinaphex 2019-03-18 16:02:28 +01:00
parent 7c93da1360
commit 794f9c8968
3 changed files with 15 additions and 1 deletions

View File

@ -15,6 +15,12 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
/* Middle of the road OpenGL driver.
*
* Minimum version (desktop): OpenGL 2.0+
* Minimum version (mobile) : OpenGLES 2.0+
*/
#ifdef _MSC_VER
#pragma comment(lib, "opengl32")
#endif

View File

@ -15,7 +15,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
/* We are targeting a minimum of OpenGL 1.1 and the Microsoft "GDI Generic" software GL implementation.
/* OpenGL driver.
*
* We are targeting a minimum of OpenGL 1.1 and the Microsoft "GDI Generic" software GL implementation.
* Any additional features added for later 1.x versions should only be enabled if they are detected at runtime. */
#include <stddef.h>

View File

@ -13,6 +13,12 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
/* Modern OpenGL driver.
*
* Minimum version (desktop): OpenGL 3.2+
* Minimum version (mobile) : OpenGLES 3.0+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif