ソースを参照

fix for running gles2 with sdl on desktop (#3542)

pull/3552/head
_Tradam 2年前
committed by GitHub
コミット
e41a0c9721
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更7行の追加0行の削除
  1. +7
    -0
      src/platforms/rcore_desktop_sdl.c

+ 7
- 0
src/platforms/rcore_desktop_sdl.c ファイルの表示

@ -49,7 +49,14 @@
**********************************************************************************************/
#include "SDL.h" // SDL base library (window/rendered, input, timming... functionality)
#ifdef GRAPHICS_API_OPENGL_ES2
// I suspect that the gles2 version of the SDL header should be used
// but the compilation fails if we do. Not including anything appears
// to work fine.
//#include "SDL_opengles2.h"
#else
#include "SDL_opengl.h" // SDL OpenGL functionality (if required, instead of internal renderer)
#endif
//----------------------------------------------------------------------------------
// Types and Structures Definition

読み込み中…
キャンセル
保存