diff options
author | 2025-02-05 14:12:59 -0800 | |
---|---|---|
committer | 2025-02-05 14:12:59 -0800 | |
commit | 3f9ee01a0bcd2b06bd53359cfd2c18a717f66eb6 (patch) | |
tree | d33a559ce9ad741c1b6eb6a7e4d5d1fe80c33a96 /libs/ui/DisplayIdentification.cpp | |
parent | f7d8ed5ac5fc88962d20daa5804975a62f3d131b (diff) | |
parent | bddaa2414e35c6e455de0863a2e91ade3695bf59 (diff) |
Merge "SF: Turn DisplayId::fromValue to an explicit wrapper" into main
Diffstat (limited to 'libs/ui/DisplayIdentification.cpp')
-rw-r--r-- | libs/ui/DisplayIdentification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/DisplayIdentification.cpp b/libs/ui/DisplayIdentification.cpp index b7ef9b3738..78e84fc4dc 100644 --- a/libs/ui/DisplayIdentification.cpp +++ b/libs/ui/DisplayIdentification.cpp @@ -444,7 +444,7 @@ PhysicalDisplayId generateEdidDisplayId(const Edid& edid) { (edid.hashedBlockZeroSerialNumberOpt.value_or(0) >> 11) ^ (edid.hashedDescriptorBlockSerialNumberOpt.value_or(0) << 23); - return PhysicalDisplayId::fromEdidHash(id); + return PhysicalDisplayId::fromValue(id); } } // namespace android |