소스 검색

Fix building of raylib_opengl_interop on PLATFORM_DESKTOP_SDL (#3826)

I tested this with CMake. I don't know if the examples makefile
currently handles this case.
pull/3839/head
Peter0x44 11 달 전
committed by GitHub
부모
커밋
1df91e74b9
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      examples/others/raylib_opengl_interop.c

+ 2
- 2
examples/others/raylib_opengl_interop.c 파일 보기

@ -26,7 +26,7 @@
#include "raylib.h"
#if defined(PLATFORM_DESKTOP)
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_DESKTOP_SDL)
#if defined(GRAPHICS_API_OPENGL_ES2)
#include "glad_gles2.h" // Required for: OpenGL functionality
#define glGenVertexArrays glGenVertexArraysOES
@ -163,4 +163,4 @@ int main(void)
//--------------------------------------------------------------------------------------
return 0;
}
}

불러오는 중...
취소
저장