blob: ca0c9028a4e86d007fd32087dc5c5c701da6774c [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>
Mathias Agopian8335f1c2012-02-25 18:48:35 -080021#include <gui/Surface.h>
Dianne Hackborn289b9b62010-07-09 11:44:11 -070022#include <android_runtime/android_view_Surface.h>
Glenn Kasten846db332011-03-04 11:44:32 -080023#include <android_runtime/android_graphics_SurfaceTexture.h>
Dianne Hackborn54a181b2010-06-30 18:35:14 -070024
Dianne Hackborn289b9b62010-07-09 11:44:11 -070025using namespace android;
26
27ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface) {
Jeff Brown64a55af2012-08-26 02:47:39 -070028 sp<ANativeWindow> win = android_view_Surface_getNativeWindow(env, surface);
Dianne Hackborn289b9b62010-07-09 11:44:11 -070029 if (win != NULL) {
30 win->incStrong((void*)ANativeWindow_acquire);
31 }
32 return win.get();
33}
34
35void ANativeWindow_acquire(ANativeWindow* window) {
36 window->incStrong((void*)ANativeWindow_acquire);
37}
38
39void ANativeWindow_release(ANativeWindow* window) {
40 window->decStrong((void*)ANativeWindow_acquire);
41}
Dianne Hackborn54a181b2010-06-30 18:35:14 -070042
43static int32_t getWindowProp(ANativeWindow* window, int what) {
44 int value;
45 int res = window->query(window, what, &value);
46 return res < 0 ? res : value;
47}
48
49int32_t ANativeWindow_getWidth(ANativeWindow* window) {
50 return getWindowProp(window, NATIVE_WINDOW_WIDTH);
51}
52
53int32_t ANativeWindow_getHeight(ANativeWindow* window) {
54 return getWindowProp(window, NATIVE_WINDOW_HEIGHT);
55}
56
57int32_t ANativeWindow_getFormat(ANativeWindow* window) {
58 return getWindowProp(window, NATIVE_WINDOW_FORMAT);
59}
Dianne Hackborn8ae5a8e2010-07-01 18:44:46 -070060
61int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width,
Mathias Agopian3026a1c2010-10-24 18:35:26 -070062 int32_t height, int32_t format) {
Michael I. Gold0e5ed702012-04-09 19:51:55 -070063 int32_t err = native_window_set_buffers_format(window, format);
Mathias Agopian09d7ed72011-07-13 15:24:42 -070064 if (!err) {
Michael I. Gold0e5ed702012-04-09 19:51:55 -070065 err = native_window_set_buffers_user_dimensions(window, width, height);
66 if (!err) {
67 int mode = NATIVE_WINDOW_SCALING_MODE_FREEZE;
68 if (width && height) {
69 mode = NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW;
70 }
71 err = native_window_set_scaling_mode(window, mode);
72 }
Mathias Agopian09d7ed72011-07-13 15:24:42 -070073 }
74 return err;
Dianne Hackborn8ae5a8e2010-07-01 18:44:46 -070075}
Dianne Hackborn289b9b62010-07-09 11:44:11 -070076
77int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
78 ARect* inOutDirtyBounds) {
Mathias Agopian949be322011-07-13 17:39:11 -070079 return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds);
Dianne Hackborn289b9b62010-07-09 11:44:11 -070080}
81
82int32_t ANativeWindow_unlockAndPost(ANativeWindow* window) {
Mathias Agopian949be322011-07-13 17:39:11 -070083 return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST);
Dianne Hackborn289b9b62010-07-09 11:44:11 -070084}