Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1154)

Unified Diff: ui/gl/android/surface_texture.cc

Issue 191933002: This is initial API support required for enabling SurfaceTexture backed zero-copy for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« ui/gl/android/surface_texture.h ('K') | « ui/gl/android/surface_texture.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/android/surface_texture.cc
diff --git a/ui/gl/android/surface_texture.cc b/ui/gl/android/surface_texture.cc
index 35f9b47288b6deb3ac9e865e826bed9edef872a2..3d6932d13227013219f4f142b616facdc556b735 100644
--- a/ui/gl/android/surface_texture.cc
+++ b/ui/gl/android/surface_texture.cc
@@ -26,10 +26,10 @@ bool GlContextMethodsAvailable() {
namespace gfx {
-SurfaceTexture::SurfaceTexture(int texture_id) {
+SurfaceTexture::SurfaceTexture(int texture_id, bool single_buffered) {
JNIEnv* env = base::android::AttachCurrentThread();
- j_surface_texture_.Reset(
- Java_SurfaceTexturePlatformWrapper_create(env, texture_id));
+ j_surface_texture_.Reset(Java_SurfaceTexturePlatformWrapper_create(
+ env, texture_id, single_buffered));
}
SurfaceTexture::~SurfaceTexture() {
@@ -52,6 +52,12 @@ void SurfaceTexture::UpdateTexImage() {
j_surface_texture_.obj());
}
+void SurfaceTexture::ReleaseTexImage() {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ Java_SurfaceTexturePlatformWrapper_releaseTexImage(env,
+ j_surface_texture_.obj());
+}
+
void SurfaceTexture::GetTransformMatrix(float mtx[16]) {
JNIEnv* env = base::android::AttachCurrentThread();
« ui/gl/android/surface_texture.h ('K') | « ui/gl/android/surface_texture.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698