mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
HDR: Generalize Pixel 6 workaround to TP
PiperOrigin-RevId: 485366659
This commit is contained in:
parent
972e169bd8
commit
6de5d9336d
1 changed files with 2 additions and 2 deletions
|
|
@ -293,8 +293,8 @@ import org.checkerframework.dataflow.qual.Pure;
|
|||
}
|
||||
|
||||
private static boolean deviceNeedsNoToneMappingWorkaround() {
|
||||
// Pixel build ID does not support tone mapping. See http://b/249297370#comment8.
|
||||
return Build.ID.startsWith("TP1A.220905.004");
|
||||
// Pixel build ID prefix does not support tone mapping. See http://b/249297370#comment8.
|
||||
return Util.MANUFACTURER.equals("Google") && Build.ID.startsWith("TP1A");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue