Skip to content

Commit

Permalink
Merge pull request #11746 from psyke83/patch-1
Browse files Browse the repository at this point in the history
CMakeLists: fix EGL detection for ARM devices
  • Loading branch information
hrydgard authored Jan 26, 2019
2 parents 0758925 + 99c2440 commit 33803b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ if(MINGW AND NOT DEFINED USE_SYSTEM_FFMPEG)
endif()

if(NOT ANDROID AND NOT IOS)
if(ARM OR SIMULATOR)
if(ARM_DEVICE OR SIMULATOR)
set(USING_EGL ON)
endif()
endif()
Expand Down

4 comments on commit 33803b0

@master1274
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nvidia Shield Tablet crash Vulkan.

@hrydgard
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@master1274 yeah, it's got nothing to do with this commit. Fixing shortly.

@master1274
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

В новой сборке всё исправлено. Спасибо.

@hrydgard
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great. In the future, please post in English.

Please sign in to comment.