Package com.google.android.filament
Class View.RenderQuality
- java.lang.Object
-
- com.google.android.filament.View.RenderQuality
-
- Enclosing class:
- View
public static class View.RenderQuality extends java.lang.ObjectStructure used to set the precision of the color buffer and related quality settings.
-
-
Field Summary
Fields Modifier and Type Field Description View.QualityLevelhdrColorBufferSets the quality of the HDR color buffer.
-
Constructor Summary
Constructors Constructor Description RenderQuality()
-
-
-
Field Detail
-
hdrColorBuffer
@NonNull public View.QualityLevel hdrColorBuffer
Sets the quality of the HDR color buffer. A quality of HIGH or ULTRA means using an RGB16F or RGBA16F color buffer. This means colors in the LDR range (0..1) have a 10 bit precision. A quality of LOW or MEDIUM means using an R11G11B10F opaque color buffer or an RGBA16F transparent color buffer. With R11G11B10F colors in the LDR range have a precision of either 6 bits (red and green channels) or 5 bits (blue channel).
-
-