blob: a4cc630f23277418a5d71d6e786c1ad8e3b740d1 [file] [log] [blame]
Romain Guyaa6c24c2011-04-28 18:40:04 -07001/*
2 * Copyright (C) 2011 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
17package android.view;
18
Romain Guyc89b14b2012-08-08 14:53:48 -070019import android.graphics.Canvas;
Romain Guy302a9df2011-08-16 13:55:02 -070020import android.graphics.Matrix;
Romain Guy2bf68f02012-03-02 13:37:47 -080021import android.graphics.Rect;
Romain Guyaa6c24c2011-04-28 18:40:04 -070022import android.graphics.SurfaceTexture;
23
24/**
25 * An OpenGL ES 2.0 implementation of {@link HardwareLayer}. This
26 * implementation can be used as a texture. Rendering into this
27 * layer is not controlled by a {@link HardwareCanvas}.
28 */
29class GLES20TextureLayer extends GLES20Layer {
30 private int mTexture;
31 private SurfaceTexture mSurface;
32
Romain Guya9489272011-06-22 20:58:11 -070033 GLES20TextureLayer(boolean isOpaque) {
Romain Guyaa6c24c2011-04-28 18:40:04 -070034 int[] layerInfo = new int[2];
Romain Guya9489272011-06-22 20:58:11 -070035 mLayer = GLES20Canvas.nCreateTextureLayer(isOpaque, layerInfo);
Romain Guyaa6c24c2011-04-28 18:40:04 -070036
37 if (mLayer != 0) {
38 mTexture = layerInfo[0];
39 mFinalizer = new Finalizer(mLayer);
40 } else {
41 mFinalizer = null;
Romain Guyef09a212012-09-25 12:17:14 -070042 }
Romain Guyaa6c24c2011-04-28 18:40:04 -070043 }
44
45 @Override
46 boolean isValid() {
47 return mLayer != 0 && mTexture != 0;
48 }
49
50 @Override
Chet Haase603f6de2012-09-14 15:31:25 -070051 boolean resize(int width, int height) {
52 return isValid();
Romain Guyaa6c24c2011-04-28 18:40:04 -070053 }
54
55 @Override
56 HardwareCanvas getCanvas() {
57 return null;
58 }
59
60 @Override
Romain Guyc89b14b2012-08-08 14:53:48 -070061 HardwareCanvas start(Canvas currentCanvas) {
Romain Guyaa6c24c2011-04-28 18:40:04 -070062 return null;
63 }
64
65 @Override
Romain Guy78dd96d2013-05-03 14:24:16 -070066 HardwareCanvas start(Canvas currentCanvas, Rect dirty) {
67 return null;
68 }
69
70 @Override
Romain Guyc89b14b2012-08-08 14:53:48 -070071 void end(Canvas currentCanvas) {
Romain Guyaa6c24c2011-04-28 18:40:04 -070072 }
73
74 SurfaceTexture getSurfaceTexture() {
75 if (mSurface == null) {
Grace Kloba5c5050d2011-06-23 22:32:04 -070076 mSurface = new SurfaceTexture(mTexture, false);
Romain Guyaa6c24c2011-04-28 18:40:04 -070077 }
78 return mSurface;
79 }
80
Jamie Gennis2af35242012-04-05 11:44:30 -070081 void setSurfaceTexture(SurfaceTexture surfaceTexture) {
82 if (mSurface != null) {
83 mSurface.release();
84 }
85 mSurface = surfaceTexture;
86 mSurface.attachToGLContext(mTexture);
87 }
88
Romain Guy02ccac62011-06-24 13:20:23 -070089 @Override
Romain Guya9489272011-06-22 20:58:11 -070090 void update(int width, int height, boolean isOpaque) {
Romain Guy02ccac62011-06-24 13:20:23 -070091 super.update(width, height, isOpaque);
Romain Guya9489272011-06-22 20:58:11 -070092 GLES20Canvas.nUpdateTextureLayer(mLayer, width, height, isOpaque, mSurface);
Romain Guyaa6c24c2011-04-28 18:40:04 -070093 }
Romain Guy302a9df2011-08-16 13:55:02 -070094
95 @Override
Romain Guy846a5332012-07-11 17:44:57 -070096 void setOpaque(boolean isOpaque) {
97 throw new UnsupportedOperationException("Use update(int, int, boolean) instead");
98 }
99
100 @Override
Romain Guy302a9df2011-08-16 13:55:02 -0700101 void setTransform(Matrix matrix) {
102 GLES20Canvas.nSetTextureLayerTransform(mLayer, matrix.native_instance);
103 }
Romain Guy2bf68f02012-03-02 13:37:47 -0800104
105 @Override
Romain Guy11cb6422012-09-21 00:39:43 -0700106 void redrawLater(DisplayList displayList, Rect dirtyRect) {
Romain Guy2bf68f02012-03-02 13:37:47 -0800107 }
Romain Guyaa6c24c2011-04-28 18:40:04 -0700108}