- This is an initial implementation, not yet complete - Goal of this sample is to run a series of offscreen single frame captures, and capmre the result against a set of golden images - Uses existing scene description in libs/viewer and test/renderdiff - Uses existing image difference description/implementation in libs/imagediff - Add imagediff API to filament-utils-android
36 lines
824 B
Groovy
36 lines
824 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
}
|
|
|
|
project.ext.isSample = true
|
|
|
|
kotlin {
|
|
jvmToolchain(versions.jdk)
|
|
}
|
|
|
|
android {
|
|
namespace 'com.google.android.filament.validation'
|
|
|
|
compileSdkVersion versions.compileSdk
|
|
defaultConfig {
|
|
applicationId "com.google.android.filament.validation"
|
|
minSdkVersion versions.minSdk
|
|
targetSdkVersion versions.targetSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility versions.jdk
|
|
targetCompatibility versions.jdk
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation deps.kotlin
|
|
implementation deps.coroutines.core
|
|
implementation project(':filament-android')
|
|
implementation project(':gltfio-android')
|
|
implementation project(':filament-utils-android')
|
|
implementation project(':filament-utils-android')
|
|
}
|