mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(GL) Add comments
This commit is contained in:
parent
7c93da1360
commit
794f9c8968
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user