diff options
author | Leon Scroggins III <scroggo@google.com> | 2020-01-22 11:57:19 -0500 |
---|---|---|
committer | Leon Scroggins III <scroggo@google.com> | 2020-01-22 15:18:36 -0500 |
commit | 7871f4953ac073018fc459d3fd8b4d035454a093 (patch) | |
tree | f16c3785cedc9790f9dcc087c858a78efe0f6825 /native | |
parent | 563a7b081026ca383308ba798a697e7965ab6f59 (diff) |
Rename AndroidBitmap_compress callback
Bug: 135133301
Test: No change in behavior, no new tests
Along with Id5d039761054cf8e7fb906624a277714c21156de, which does the
rename in the header, this does the rename in the impl.
Change-Id: I27244df241a8141b0fd39e02e778eef2975f4dc0
Diffstat (limited to 'native')
-rw-r--r-- | native/graphics/jni/bitmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/graphics/jni/bitmap.cpp b/native/graphics/jni/bitmap.cpp index 4f21ccba2419..3d0fd254f9a8 100644 --- a/native/graphics/jni/bitmap.cpp +++ b/native/graphics/jni/bitmap.cpp @@ -96,7 +96,7 @@ int AndroidBitmap_compress(const AndroidBitmapInfo* info, const void* pixels, int32_t format, int32_t quality, void* userContext, - AndroidBitmap_compress_write_fn fn) { + AndroidBitmap_CompressWriteFunc fn) { if (NULL == info || NULL == pixels || NULL == fn) { return ANDROID_BITMAP_RESULT_BAD_PARAMETER; } |