Remove everything related to the depth-prepass

depth-preass is no longer supported.
This commit is contained in:
Mathias Agopian
2020-01-29 11:05:54 -08:00
committed by Mathias Agopian
parent 00a6a68b9c
commit 610dca88a3
16 changed files with 15 additions and 189 deletions

View File

@@ -193,13 +193,6 @@ Java_com_google_android_filament_View_nSetDynamicLightingOptions(JNIEnv*,
view->setDynamicLightingOptions(zLightNear, zLightFar);
}
extern "C" JNIEXPORT void JNICALL
Java_com_google_android_filament_View_nSetDepthPrepass(JNIEnv*,
jclass, jlong nativeView, jint value) {
View* view = (View*) nativeView;
view->setDepthPrepass(View::DepthPrepass(value));
}
extern "C" JNIEXPORT void JNICALL
Java_com_google_android_filament_View_nSetPostProcessingEnabled(JNIEnv*,
jclass, jlong nativeView, jboolean enabled) {