Skip to content

Commit

Permalink
Filament 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed Jul 30, 2020
1 parent b4623c9 commit 642fb58
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repositories {
}
dependencies {
implementation 'com.google.android.filament:filament-android:1.8.0'
implementation 'com.google.android.filament:filament-android:1.8.1'
}
```

Expand Down Expand Up @@ -63,7 +63,7 @@ A much smaller alternative to `filamat-android` that can only generate OpenGL sh
iOS projects can use CocoaPods to install the latest release:

```
pod 'Filament', '~> 1.8.0'
pod 'Filament', '~> 1.8.1'
```

### Snapshots
Expand Down
21 changes: 20 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,26 @@ A new header is inserted each time a *tag* is created.

## Next release

- Updated the Emscripten SDK to 1.39.19
## v1.8.1

- New CocoaPods sample for iOS.
- Filament for iOS now supports iOS 11.
- Updated the Emscripten SDK to 1.39.19.
- Fixed skinning issue with Emscripten.
- JavaScript APIs for color grading and the vignette effect.
- Added various missing APIs to Java and JavaScript bindings.
- Fixed camera aspect ratio when loading a camera from a glTF file.
- gltfio now uses specular anti-aliasing by default.
- gltfio now supports the KHR_materials_transmission extension.
- Compiled materials do not perform unnecessary fp32 operations anymore.
- Improved quality and performance of the depth of field effect.
- Fixed transform hierarchy memory corruption when a node is set to be parentless.
- Fixed crashed in some browsers and on some mobile devices caused by
Google-style line directives in shaders.
- Color grading now has a quality option which affects the size and bit depth of the 3D LUT.
- Fixed crash in the Metal backend when more than 16 samplers are bound.
- Added validation in Texture::setImage().
- Fixed refraction/transmission roughness when specular anti-aliasing is enabled.

## v1.8.0

Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.google.android.filament
VERSION_NAME=1.8.0
VERSION_NAME=1.8.1

POM_DESCRIPTION=Real-time physically based rendering engine for Android.

Expand Down
4 changes: 2 additions & 2 deletions ios/CocoaPods/Filament.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |spec|
spec.name = "Filament"
spec.version = "1.8.0"
spec.version = "1.8.1"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.homepage = "https://google.github.io/filament"
spec.authors = "Google LLC."
spec.summary = "Filament is a real-time physically based rendering engine for Android, iOS, Windows, Linux, macOS, and WASM/WebGL."
spec.platform = :ios, "11.0"
spec.source = { :http => "https://github.com/google/filament/releases/download/v1.8.0/filament-20200709-ios.tgz" }
spec.source = { :http => "https://github.com/google/filament/releases/download/v1.8.1/filament-1.8.1-ios.tgz" }

spec.subspec "filament" do |ss|
ss.source_files =
Expand Down

0 comments on commit 642fb58

Please sign in to comment.