diff options
| author | Romain Guy <romainguy@google.com> | 2011-08-16 13:55:02 -0700 |
|---|---|---|
| committer | Romain Guy <romainguy@google.com> | 2011-08-16 13:55:02 -0700 |
| commit | 302a9df1d50373c82923bb84ff665dfce584fb22 (patch) | |
| tree | 01a6e183b3c0f49676730a679397a31692942f8d /core/java/android/view/GLES20Canvas.java | |
| parent | 95a78c38373bb99258d83a6ab2c92825d979f200 (diff) | |
Add an API to set the transform on a TextureView's surface texture.
Bug #5156689
Change-Id: I635a625885c9b832a60d44ece0de7613ceb84109
Diffstat (limited to 'core/java/android/view/GLES20Canvas.java')
| -rw-r--r-- | core/java/android/view/GLES20Canvas.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/view/GLES20Canvas.java b/core/java/android/view/GLES20Canvas.java index e586370b4830..cfbb47c30d55 100644 --- a/core/java/android/view/GLES20Canvas.java +++ b/core/java/android/view/GLES20Canvas.java @@ -151,6 +151,7 @@ class GLES20Canvas extends HardwareCanvas { static native void nResizeLayer(int layerId, int width, int height, int[] layerInfo); static native void nUpdateTextureLayer(int layerId, int width, int height, boolean opaque, SurfaceTexture surface); + static native void nSetTextureLayerTransform(int layerId, int matrix); static native void nDestroyLayer(int layerId); static native void nDestroyLayerDeferred(int layerId); static native boolean nCopyLayer(int layerId, int bitmap); |
