blob: 04718cd981fffd8e92de2481c530a656169f08d6 [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#ifndef _ANDROID_VIEW_SURFACE_H
18#define _ANDROID_VIEW_SURFACE_H
19
20#include <android/native_window.h>
Mathias Agopiane68b4f72017-02-08 18:48:32 -080021#include <system/graphics.h>
Jooyung Han63f5f922019-02-21 14:43:45 +090022#include <ui/PublicFormat.h>
Dianne Hackborn54a181b2010-06-30 18:35:14 -070023
24#include "jni.h"
25
26namespace android {
27
tedbo4e8a5c92011-06-22 15:52:53 -070028class Surface;
Andy McFaddend47f7d82012-12-18 09:48:38 -080029class IGraphicBufferProducer;
tedbo4e8a5c92011-06-22 15:52:53 -070030
Jeff Brown64a55af2012-08-26 02:47:39 -070031/* Gets the underlying ANativeWindow for a Surface. */
32extern sp<ANativeWindow> android_view_Surface_getNativeWindow(
33 JNIEnv* env, jobject surfaceObj);
34
35/* Returns true if the object is an instance of Surface. */
36extern bool android_view_Surface_isInstanceOf(JNIEnv* env, jobject obj);
Dianne Hackborn54a181b2010-06-30 18:35:14 -070037
tedbo4e8a5c92011-06-22 15:52:53 -070038/* Gets the underlying Surface from a Surface Java object. */
Jeff Brown64a55af2012-08-26 02:47:39 -070039extern sp<Surface> android_view_Surface_getSurface(JNIEnv* env, jobject surfaceObj);
tedbo4e8a5c92011-06-22 15:52:53 -070040
Jiwen 'Steve' Caid28e8282017-03-31 11:19:50 -070041/* Creates a Surface from an android::Surface. */
42extern jobject android_view_Surface_createFromSurface(JNIEnv* env,
43 const sp<Surface>& surface);
44
Andy McFaddend47f7d82012-12-18 09:48:38 -080045/* Creates a Surface from an IGraphicBufferProducer. */
Mathias Agopian29479eb2013-02-14 14:36:04 -080046extern jobject android_view_Surface_createFromIGraphicBufferProducer(JNIEnv* env,
Andy McFaddend47f7d82012-12-18 09:48:38 -080047 const sp<IGraphicBufferProducer>& bufferProducer);
Jeff Browncbad9762012-09-04 21:57:59 -070048
Eino-Ville Talvala805f3c92015-02-26 10:57:55 -080049/* Convert from android.graphics.ImageFormat/PixelFormat enums to graphics.h HAL
50 * format */
51extern int android_view_Surface_mapPublicFormatToHalFormat(PublicFormat f);
52
53/* Convert from android.graphics.ImageFormat/PixelFormat enums to graphics.h HAL
54 * dataspace */
55extern android_dataspace android_view_Surface_mapPublicFormatToHalDataspace(
56 PublicFormat f);
57
58/* Convert from HAL format, dataspace pair to
59 * android.graphics.ImageFormat/PixelFormat.
60 * For unknown/unspecified pairs, returns PublicFormat::UNKNOWN */
61extern PublicFormat android_view_Surface_mapHalFormatDataspaceToPublicFormat(
62 int format, android_dataspace dataSpace);
63
Dianne Hackborn54a181b2010-06-30 18:35:14 -070064} // namespace android
65
66#endif // _ANDROID_VIEW_SURFACE_H