summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWiwit Rifa'i <wiwitrifai@google.com>2023-04-19 05:16:38 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-04-19 05:16:38 +0000
commit4fc15e8b94343f01a39fdd51f015d4093c489619 (patch)
tree9a2e985ec72d982eb22fe8a50d6a81581ed76b14
parentbe0d3d7fc36085be615de0a476c092871e1f8043 (diff)
parenta7bfd6bd39f85c35ae097e8902d7fcb3a38b4ff4 (diff)
downloadzuma-4fc15e8b94343f01a39fdd51f015d4093c489619.tar.gz
libacryl_plugins: fix swapped offset-value for setEotfScalar am: a7bfd6bd39
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/google/graphics/zuma/+/22699045 Change-Id: I19c2f4722ec81282fb3f39aaeed64554af9b2ce1 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--libacryl_plugins/libacryl_hdr_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libacryl_plugins/libacryl_hdr_plugin.cpp b/libacryl_plugins/libacryl_hdr_plugin.cpp
index d768123..9d3b235 100644
--- a/libacryl_plugins/libacryl_hdr_plugin.cpp
+++ b/libacryl_plugins/libacryl_hdr_plugin.cpp
@@ -174,7 +174,7 @@ public:
}
void setEotfScalar(const uint16_t eotf_scalar, uint32_t offset) {
- set_and_get_next_offset(eotf_scalar, offset);
+ set_and_get_next_offset(offset, eotf_scalar);
}
} mCmdList;