blob: 648d1e398399d63d521c06f30ee8a132e763ff78 [file] [log] [blame]
John Reck04fc5832014-02-05 16:38:25 -08001/*
2 * Copyright (C) 2014 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 "OpenGLRenderer"
18
19#include "jni.h"
20#include "GraphicsJNI.h"
21#include <nativehelper/JNIHelp.h>
22
Andreas Gampeed6b9df2014-11-20 22:02:20 -080023#include "core_jni_helpers.h"
John Reck04fc5832014-02-05 16:38:25 -080024#include <android_runtime/android_graphics_SurfaceTexture.h>
25
26#include <gui/GLConsumer.h>
27
Behdad Esfahbod6ba30b82014-07-15 16:22:32 -040028#include <Paint.h>
John Reck04fc5832014-02-05 16:38:25 -080029#include <SkBitmap.h>
30#include <SkCanvas.h>
31#include <SkMatrix.h>
John Reck04fc5832014-02-05 16:38:25 -080032#include <SkXfermode.h>
33
34#include <DeferredLayerUpdater.h>
John Reck04fc5832014-02-05 16:38:25 -080035#include <LayerRenderer.h>
36#include <SkiaShader.h>
37#include <Rect.h>
John Reck113e0822014-03-18 09:22:59 -070038#include <RenderNode.h>
John Reck04fc5832014-02-05 16:38:25 -080039
40namespace android {
41
42using namespace uirenderer;
43
44#ifdef USE_OPENGL_RENDERER
45
John Reck04fc5832014-02-05 16:38:25 -080046static jboolean android_view_HardwareLayer_prepare(JNIEnv* env, jobject clazz,
47 jlong layerUpdaterPtr, jint width, jint height, jboolean isOpaque) {
48 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
49 bool changed = false;
50 changed |= layer->setSize(width, height);
51 changed |= layer->setBlend(!isOpaque);
52 return changed;
53}
54
55static void android_view_HardwareLayer_setLayerPaint(JNIEnv* env, jobject clazz,
Derek Sollenberger674554f2014-02-19 16:47:32 +000056 jlong layerUpdaterPtr, jlong paintPtr) {
John Reck04fc5832014-02-05 16:38:25 -080057 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
58 if (layer) {
Behdad Esfahbod6ba30b82014-07-15 16:22:32 -040059 Paint* paint = reinterpret_cast<Paint*>(paintPtr);
John Reck04fc5832014-02-05 16:38:25 -080060 layer->setPaint(paint);
John Reck04fc5832014-02-05 16:38:25 -080061 }
62}
63
64static void android_view_HardwareLayer_setTransform(JNIEnv* env, jobject clazz,
65 jlong layerUpdaterPtr, jlong matrixPtr) {
66 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
67 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixPtr);
68 layer->setTransform(matrix);
69}
70
71static void android_view_HardwareLayer_setSurfaceTexture(JNIEnv* env, jobject clazz,
72 jlong layerUpdaterPtr, jobject surface, jboolean isAlreadyAttached) {
73 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
74 sp<GLConsumer> surfaceTexture(SurfaceTexture_getSurfaceTexture(env, surface));
75 layer->setSurfaceTexture(surfaceTexture, !isAlreadyAttached);
76}
77
78static void android_view_HardwareLayer_updateSurfaceTexture(JNIEnv* env, jobject clazz,
79 jlong layerUpdaterPtr) {
80 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
81 layer->updateTexImage();
82}
83
John Reck04fc5832014-02-05 16:38:25 -080084static jlong android_view_HardwareLayer_getLayer(JNIEnv* env, jobject clazz,
85 jlong layerUpdaterPtr) {
86 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
87 return reinterpret_cast<jlong>( layer->backingLayer() );
88}
89
90static jint android_view_HardwareLayer_getTexName(JNIEnv* env, jobject clazz,
91 jlong layerUpdaterPtr) {
92 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
93 return layer->backingLayer()->getTexture();
94}
95
96#endif // USE_OPENGL_RENDERER
97
98// ----------------------------------------------------------------------------
99// JNI Glue
100// ----------------------------------------------------------------------------
101
102const char* const kClassPathName = "android/view/HardwareLayer";
103
104static JNINativeMethod gMethods[] = {
105#ifdef USE_OPENGL_RENDERER
106
John Reck04fc5832014-02-05 16:38:25 -0800107 { "nPrepare", "(JIIZ)Z", (void*) android_view_HardwareLayer_prepare },
Derek Sollenberger674554f2014-02-19 16:47:32 +0000108 { "nSetLayerPaint", "(JJ)V", (void*) android_view_HardwareLayer_setLayerPaint },
John Reck04fc5832014-02-05 16:38:25 -0800109 { "nSetTransform", "(JJ)V", (void*) android_view_HardwareLayer_setTransform },
110 { "nSetSurfaceTexture", "(JLandroid/graphics/SurfaceTexture;Z)V",
111 (void*) android_view_HardwareLayer_setSurfaceTexture },
112 { "nUpdateSurfaceTexture", "(J)V", (void*) android_view_HardwareLayer_updateSurfaceTexture },
John Reck04fc5832014-02-05 16:38:25 -0800113
John Reck04fc5832014-02-05 16:38:25 -0800114 { "nGetLayer", "(J)J", (void*) android_view_HardwareLayer_getLayer },
115 { "nGetTexName", "(J)I", (void*) android_view_HardwareLayer_getTexName },
116#endif
117};
118
119int register_android_view_HardwareLayer(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800120 return RegisterMethodsOrDie(env, kClassPathName, gMethods, NELEM(gMethods));
John Reck04fc5832014-02-05 16:38:25 -0800121}
122
123};