blob: 5c016c478df7c03c885e775f5febda5c6bf5b6b7 [file] [log] [blame]
Dianne Hackborn54a181b2010-06-30 18:35:14 -07001/*
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 Hackborn289b9b62010-07-09 11:44:11 -070020#include <android/native_window_jni.h>
Dianne Hackborn54a181b2010-06-30 18:35:14 -070021#include <surfaceflinger/Surface.h>
Dianne Hackborn289b9b62010-07-09 11:44:11 -070022#include <android_runtime/android_view_Surface.h>
tedbo05031612011-06-06 16:02:47 -070023#include <android_runtime/android_graphics_ParcelSurfaceTexture.h>
Glenn Kasten846db332011-03-04 11:44:32 -080024#include <android_runtime/android_graphics_SurfaceTexture.h>
Dianne Hackborn54a181b2010-06-30 18:35:14 -070025
Dianne Hackborn289b9b62010-07-09 11:44:11 -070026using namespace android;
27
28ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface) {
tedbo05031612011-06-06 16:02:47 -070029 sp<ANativeWindow> win;
30 if (android_Surface_isInstanceOf(env, surface)) {
31 win = android_Surface_getNativeWindow(env, surface);
32 } else if (android_SurfaceTexture_isInstanceOf(env, surface)) {
33 win = android_SurfaceTexture_getNativeWindow(env, surface);
34 } else if (android_ParcelSurfaceTexture_isInstanceOf(env, surface)) {
35 win = android_ParcelSurfaceTexture_getNativeWindow(env, surface);
36 }
Dianne Hackborn289b9b62010-07-09 11:44:11 -070037 if (win != NULL) {
38 win->incStrong((void*)ANativeWindow_acquire);
39 }
40 return win.get();
41}
42
Glenn Kasten846db332011-03-04 11:44:32 -080043ANativeWindow* ANativeWindow_fromSurfaceTexture(JNIEnv* env, jobject surfaceTexture) {
44 sp<ANativeWindow> win = android_SurfaceTexture_getNativeWindow(env, surfaceTexture);
45 if (win != NULL) {
46 win->incStrong((void*)ANativeWindow_acquire);
47 }
48 return win.get();
49}
50
Dianne Hackborn289b9b62010-07-09 11:44:11 -070051void ANativeWindow_acquire(ANativeWindow* window) {
52 window->incStrong((void*)ANativeWindow_acquire);
53}
54
55void ANativeWindow_release(ANativeWindow* window) {
56 window->decStrong((void*)ANativeWindow_acquire);
57}
Dianne Hackborn54a181b2010-06-30 18:35:14 -070058
59static int32_t getWindowProp(ANativeWindow* window, int what) {
60 int value;
61 int res = window->query(window, what, &value);
62 return res < 0 ? res : value;
63}
64
65int32_t ANativeWindow_getWidth(ANativeWindow* window) {
66 return getWindowProp(window, NATIVE_WINDOW_WIDTH);
67}
68
69int32_t ANativeWindow_getHeight(ANativeWindow* window) {
70 return getWindowProp(window, NATIVE_WINDOW_HEIGHT);
71}
72
73int32_t ANativeWindow_getFormat(ANativeWindow* window) {
74 return getWindowProp(window, NATIVE_WINDOW_FORMAT);
75}
Dianne Hackborn8ae5a8e2010-07-01 18:44:46 -070076
77int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width,
Mathias Agopian3026a1c2010-10-24 18:35:26 -070078 int32_t height, int32_t format) {
Mathias Agopianda5a4442011-03-31 20:59:58 -070079 return native_window_set_buffers_geometry(window, width, height, format);
Dianne Hackborn8ae5a8e2010-07-01 18:44:46 -070080}
Dianne Hackborn289b9b62010-07-09 11:44:11 -070081
82int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
83 ARect* inOutDirtyBounds) {
Mathias Agopian949be322011-07-13 17:39:11 -070084 return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds);
Dianne Hackborn289b9b62010-07-09 11:44:11 -070085}
86
87int32_t ANativeWindow_unlockAndPost(ANativeWindow* window) {
Mathias Agopian949be322011-07-13 17:39:11 -070088 return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST);
Dianne Hackborn289b9b62010-07-09 11:44:11 -070089}