Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | #define LOG_TAG "Surface" |
| 18 | #include <utils/Log.h> |
| 19 | |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 20 | #include <android/native_window_jni.h> |
Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 21 | #include <surfaceflinger/Surface.h> |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 22 | #include <android_runtime/android_view_Surface.h> |
Glenn Kasten | 846db33 | 2011-03-04 11:44:32 -0800 | [diff] [blame] | 23 | #include <android_runtime/android_graphics_SurfaceTexture.h> |
Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 24 | |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 25 | using namespace android; |
| 26 | |
| 27 | ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface) { |
Ted Bonkenburg | 1ee6011 | 2011-07-26 09:51:18 -0700 | [diff] [blame] | 28 | sp<ANativeWindow> win = android_Surface_getNativeWindow(env, surface); |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 29 | if (win != NULL) { |
| 30 | win->incStrong((void*)ANativeWindow_acquire); |
| 31 | } |
| 32 | return win.get(); |
| 33 | } |
| 34 | |
Glenn Kasten | 846db33 | 2011-03-04 11:44:32 -0800 | [diff] [blame] | 35 | ANativeWindow* ANativeWindow_fromSurfaceTexture(JNIEnv* env, jobject surfaceTexture) { |
| 36 | sp<ANativeWindow> win = android_SurfaceTexture_getNativeWindow(env, surfaceTexture); |
| 37 | if (win != NULL) { |
| 38 | win->incStrong((void*)ANativeWindow_acquire); |
| 39 | } |
| 40 | return win.get(); |
| 41 | } |
| 42 | |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 43 | void ANativeWindow_acquire(ANativeWindow* window) { |
| 44 | window->incStrong((void*)ANativeWindow_acquire); |
| 45 | } |
| 46 | |
| 47 | void ANativeWindow_release(ANativeWindow* window) { |
| 48 | window->decStrong((void*)ANativeWindow_acquire); |
| 49 | } |
Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 50 | |
| 51 | static int32_t getWindowProp(ANativeWindow* window, int what) { |
| 52 | int value; |
| 53 | int res = window->query(window, what, &value); |
| 54 | return res < 0 ? res : value; |
| 55 | } |
| 56 | |
| 57 | int32_t ANativeWindow_getWidth(ANativeWindow* window) { |
| 58 | return getWindowProp(window, NATIVE_WINDOW_WIDTH); |
| 59 | } |
| 60 | |
| 61 | int32_t ANativeWindow_getHeight(ANativeWindow* window) { |
| 62 | return getWindowProp(window, NATIVE_WINDOW_HEIGHT); |
| 63 | } |
| 64 | |
| 65 | int32_t ANativeWindow_getFormat(ANativeWindow* window) { |
| 66 | return getWindowProp(window, NATIVE_WINDOW_FORMAT); |
| 67 | } |
Dianne Hackborn | 8ae5a8e | 2010-07-01 18:44:46 -0700 | [diff] [blame] | 68 | |
| 69 | int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, |
Mathias Agopian | 3026a1c | 2010-10-24 18:35:26 -0700 | [diff] [blame] | 70 | int32_t height, int32_t format) { |
Mathias Agopian | 09d7ed7 | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 71 | int32_t err = native_window_set_buffers_geometry(window, width, height, format); |
| 72 | if (!err) { |
| 73 | int mode = NATIVE_WINDOW_SCALING_MODE_FREEZE; |
| 74 | if (width && height) { |
| 75 | mode = NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW; |
| 76 | } |
| 77 | err = native_window_set_scaling_mode(window, mode); |
| 78 | } |
| 79 | return err; |
Dianne Hackborn | 8ae5a8e | 2010-07-01 18:44:46 -0700 | [diff] [blame] | 80 | } |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 81 | |
| 82 | int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer, |
| 83 | ARect* inOutDirtyBounds) { |
Mathias Agopian | 949be32 | 2011-07-13 17:39:11 -0700 | [diff] [blame] | 84 | return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds); |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | int32_t ANativeWindow_unlockAndPost(ANativeWindow* window) { |
Mathias Agopian | 949be32 | 2011-07-13 17:39:11 -0700 | [diff] [blame] | 88 | return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST); |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 89 | } |