blob: 05218336878c456aae8cfc180b7aa1bb78840d13 [file] [log] [blame]
Dima Zavin32276312010-02-04 12:15:09 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <android/bitmap.h>
Andreas Gampecad87d72014-11-10 17:13:06 -080018
19#pragma GCC diagnostic push
20#pragma GCC diagnostic ignored "-Wunused-parameter"
Dima Zavin32276312010-02-04 12:15:09 -080021#include <GraphicsJNI.h>
Andreas Gampecad87d72014-11-10 17:13:06 -080022#pragma GCC diagnostic pop
Dima Zavin32276312010-02-04 12:15:09 -080023
24int AndroidBitmap_getInfo(JNIEnv* env, jobject jbitmap,
25 AndroidBitmapInfo* info) {
26 if (NULL == env || NULL == jbitmap) {
27 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
28 }
29
John Recka771b982015-04-10 13:52:57 -070030 SkBitmap bm;
31 GraphicsJNI::getSkBitmap(env, jbitmap, &bm);
Dima Zavin32276312010-02-04 12:15:09 -080032
33 if (info) {
John Recka771b982015-04-10 13:52:57 -070034 info->width = bm.width();
35 info->height = bm.height();
36 info->stride = bm.rowBytes();
Dima Zavin32276312010-02-04 12:15:09 -080037 info->flags = 0;
38
John Recka771b982015-04-10 13:52:57 -070039 switch (bm.colorType()) {
Mike Reed1103b322014-07-08 12:36:44 -040040 case kN32_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080041 info->format = ANDROID_BITMAP_FORMAT_RGBA_8888;
42 break;
Mike Reed1103b322014-07-08 12:36:44 -040043 case kRGB_565_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080044 info->format = ANDROID_BITMAP_FORMAT_RGB_565;
45 break;
Mike Reed1103b322014-07-08 12:36:44 -040046 case kARGB_4444_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080047 info->format = ANDROID_BITMAP_FORMAT_RGBA_4444;
48 break;
Mike Reed1103b322014-07-08 12:36:44 -040049 case kAlpha_8_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080050 info->format = ANDROID_BITMAP_FORMAT_A_8;
51 break;
52 default:
53 info->format = ANDROID_BITMAP_FORMAT_NONE;
54 break;
55 }
56 }
Andrew Hsieheba82542012-12-12 11:27:44 +080057 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080058}
59
60int AndroidBitmap_lockPixels(JNIEnv* env, jobject jbitmap, void** addrPtr) {
61 if (NULL == env || NULL == jbitmap) {
62 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
63 }
64
John Recka771b982015-04-10 13:52:57 -070065 SkPixelRef* pixelRef = GraphicsJNI::getSkPixelRef(env, jbitmap);
66 if (!pixelRef) {
Dima Zavin32276312010-02-04 12:15:09 -080067 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
68 }
69
John Recka771b982015-04-10 13:52:57 -070070 pixelRef->lockPixels();
71 void* addr = pixelRef->pixels();
Dima Zavin32276312010-02-04 12:15:09 -080072 if (NULL == addr) {
John Recka771b982015-04-10 13:52:57 -070073 pixelRef->unlockPixels();
Dima Zavin32276312010-02-04 12:15:09 -080074 return ANDROID_BITMAP_RESULT_ALLOCATION_FAILED;
75 }
John Recka771b982015-04-10 13:52:57 -070076 pixelRef->ref();
Dima Zavin32276312010-02-04 12:15:09 -080077
78 if (addrPtr) {
79 *addrPtr = addr;
80 }
Andrew Hsieheba82542012-12-12 11:27:44 +080081 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080082}
83
84int AndroidBitmap_unlockPixels(JNIEnv* env, jobject jbitmap) {
85 if (NULL == env || NULL == jbitmap) {
86 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
87 }
88
John Recka771b982015-04-10 13:52:57 -070089 SkPixelRef* pixelRef = GraphicsJNI::getSkPixelRef(env, jbitmap);
90 if (!pixelRef) {
Dima Zavin32276312010-02-04 12:15:09 -080091 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
92 }
93
Alexandre Elias17e5f4c2011-07-12 17:58:23 -070094 // notifyPixelsChanged() needs be called to apply writes to GL-backed
95 // bitmaps. Note that this will slow down read-only accesses to the
96 // bitmaps, but the NDK methods are primarily intended to be used for
97 // writes.
John Recka771b982015-04-10 13:52:57 -070098 pixelRef->notifyPixelsChanged();
Alexandre Elias17e5f4c2011-07-12 17:58:23 -070099
John Recka771b982015-04-10 13:52:57 -0700100 pixelRef->unlockPixels();
101 pixelRef->unref();
102
Andrew Hsieheba82542012-12-12 11:27:44 +0800103 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -0800104}
105