Update Vulkan and OpenGL ES versions specified in Android manifest

Specify that Vulkan 1.1.0 is used if supported.

Remove explicit requirement of OpenGL ES 3.0 as OpenGL ES 1.0 is also supported as fallback and the client should pick the highest supported version.
This commit is contained in:
Robert Müller 2024-07-27 12:05:04 +02:00
parent a1ef70c114
commit 2b3ae2425d

View file

@ -1,7 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Vulkan 1.1.0 is used if supported -->
<uses-feature <uses-feature
android:glEsVersion="0x00030000" /> android:name="android.hardware.vulkan.version"
android:version="0x00401000" />
<!-- android:glEsVersion is not specified as OpenGL ES 1.0 is supported as fallback -->
<uses-feature <uses-feature
android:name="android.hardware.screen.landscape" /> android:name="android.hardware.screen.landscape" />