This CL contains two parts: - changes to matc/filamat - changes to filament itself Filamat can now generate ES2 compatible shaders. Only the unlit variant is supported. Fog and picking are supported as well. post-processing, skinning, instancing, all lighting and shadowing are not supported. Filament is updated to not issue commands that are not supported in ES2. Addtionnally, the hello-triangle sample is updated to work on an ES2 device.
24 lines
731 B
XML
24 lines
731 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:exported="true"
|
|
android:name=".MainActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |