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

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: nits + comments 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..3f622870ca49a3f4b05db6225da82f6b01e6fa1a 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_buffer_mode) {
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_buffer_mode));
}
SurfaceTexture::~SurfaceTexture() {
@@ -52,6 +52,12 @@ void SurfaceTexture::UpdateTexImage() {
j_surface_texture_.obj());
}
+void SurfaceTexture::ReleaseTexImage() {
bulach 2014/03/10 12:32:31 should this be protected by base::android::BuildIn
reveman 2014/03/10 13:33:05 I'd prefer DCHECK(single_buffer_mode_)
+ 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