summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-09-19 22:11:45 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-09-19 22:11:45 +0000
commit66c6aed217ec262dbe72d2afa064592edad1eda0 (patch)
tree55bc11cd6c8064ab2420e6365959a488f1e7fac6
parenta3f59eb04b471e767d938f1cd1d6b77efeda8f62 (diff)
parent7ba60782952adf8fd855320cf840c30f4a4a77f4 (diff)
Merge "Use `` for code font rather than ||." into main am: aedcfe8397 am: ba1dae5b26 am: e35dba527f am: 04c0922f7b am: 7ba6078295
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2753315 Change-Id: I9c76c9c344c75be12769c53d38de3a1ed5330e43 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--include/android/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/android/bitmap.h b/include/android/bitmap.h
index 35f87f96ae..87a14c021d 100644
--- a/include/android/bitmap.h
+++ b/include/android/bitmap.h
@@ -196,7 +196,7 @@ enum AndroidBitmapCompressFormat {
*
* @param userContext Pointer to user-defined data passed to
* {@link AndroidBitmap_compress}.
- * @param data Compressed data of |size| bytes to write.
+ * @param data Compressed data of `size` bytes to write.
* @param size Length in bytes of data to write.
* @return Whether the operation succeeded.
*/
@@ -205,7 +205,7 @@ typedef bool (*AndroidBitmap_CompressWriteFunc)(void* userContext,
size_t size) __INTRODUCED_IN(30);
/**
- * Compress |pixels| as described by |info|.
+ * Compress `pixels` as described by `info`.
*
* Available since API level 30.
*