mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +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/>.
|
* 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
|
#ifdef _MSC_VER
|
||||||
#pragma comment(lib, "opengl32")
|
#pragma comment(lib, "opengl32")
|
||||||
#endif
|
#endif
|
||||||
|
@ -15,7 +15,9 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* 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. */
|
* Any additional features added for later 1.x versions should only be enabled if they are detected at runtime. */
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
@ -13,6 +13,12 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* 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
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user