blob: ddb01a0671ed27b99b6068731d1f13085a3ea2b4 [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 Reckf4faeac2015-03-05 13:50:31 -080030 SkBitmap* bm = GraphicsJNI::getSkBitmap(env, jbitmap);
Dima Zavin32276312010-02-04 12:15:09 -080031 if (NULL == bm) {
32 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
33 }
34
35 if (info) {
36 info->width = bm->width();
37 info->height = bm->height();
38 info->stride = bm->rowBytes();
39 info->flags = 0;
40
Mike Reed1103b322014-07-08 12:36:44 -040041 switch (bm->colorType()) {
42 case kN32_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080043 info->format = ANDROID_BITMAP_FORMAT_RGBA_8888;
44 break;
Mike Reed1103b322014-07-08 12:36:44 -040045 case kRGB_565_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080046 info->format = ANDROID_BITMAP_FORMAT_RGB_565;
47 break;
Mike Reed1103b322014-07-08 12:36:44 -040048 case kARGB_4444_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080049 info->format = ANDROID_BITMAP_FORMAT_RGBA_4444;
50 break;
Mike Reed1103b322014-07-08 12:36:44 -040051 case kAlpha_8_SkColorType:
Dima Zavin32276312010-02-04 12:15:09 -080052 info->format = ANDROID_BITMAP_FORMAT_A_8;
53 break;
54 default:
55 info->format = ANDROID_BITMAP_FORMAT_NONE;
56 break;
57 }
58 }
Andrew Hsieheba82542012-12-12 11:27:44 +080059 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080060}
61
62int AndroidBitmap_lockPixels(JNIEnv* env, jobject jbitmap, void** addrPtr) {
63 if (NULL == env || NULL == jbitmap) {
64 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
65 }
66
John Reckf4faeac2015-03-05 13:50:31 -080067 SkBitmap* bm = GraphicsJNI::getSkBitmap(env, jbitmap);
Dima Zavin32276312010-02-04 12:15:09 -080068 if (NULL == bm) {
69 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
70 }
71
72 bm->lockPixels();
73 void* addr = bm->getPixels();
74 if (NULL == addr) {
75 bm->unlockPixels();
76 return ANDROID_BITMAP_RESULT_ALLOCATION_FAILED;
77 }
78
79 if (addrPtr) {
80 *addrPtr = addr;
81 }
Andrew Hsieheba82542012-12-12 11:27:44 +080082 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080083}
84
85int AndroidBitmap_unlockPixels(JNIEnv* env, jobject jbitmap) {
86 if (NULL == env || NULL == jbitmap) {
87 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
88 }
89
John Reckf4faeac2015-03-05 13:50:31 -080090 SkBitmap* bm = GraphicsJNI::getSkBitmap(env, jbitmap);
Dima Zavin32276312010-02-04 12:15:09 -080091 if (NULL == bm) {
92 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
93 }
94
Alexandre Elias17e5f4c2011-07-12 17:58:23 -070095 // notifyPixelsChanged() needs be called to apply writes to GL-backed
96 // bitmaps. Note that this will slow down read-only accesses to the
97 // bitmaps, but the NDK methods are primarily intended to be used for
98 // writes.
99 bm->notifyPixelsChanged();
100
Dima Zavin32276312010-02-04 12:15:09 -0800101 bm->unlockPixels();
Andrew Hsieheba82542012-12-12 11:27:44 +0800102 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -0800103}
104