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

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

Issue 1419623008: ui: Use single buffer SurfaceTexture mode for native GpuMemoryBuffers on Android. Base URL: https://chromium.googlesource.com/chromium/src.git@1419733005
Patch Set: libs = [] Created 5 years 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
« no previous file with comments | « ui/gl/android/surface_texture.h ('k') | ui/gl/gl_image_surface_texture.h » ('j') | 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 232705d6fab026478029d1b647ed10b49a0ccc5e..4a48452f77cc74c7a06a032762b956b005cee435 100644
--- a/ui/gl/android/surface_texture.cc
+++ b/ui/gl/android/surface_texture.cc
@@ -6,6 +6,7 @@
#include <android/native_window_jni.h>
+#include "base/android/build_info.h"
#include "base/android/jni_android.h"
#include "base/logging.h"
#include "jni/SurfaceTexturePlatformWrapper_jni.h"
@@ -21,6 +22,14 @@ scoped_refptr<SurfaceTexture> SurfaceTexture::Create(int texture_id) {
Java_SurfaceTexturePlatformWrapper_create(env, texture_id));
}
+scoped_refptr<SurfaceTexture> SurfaceTexture::CreateSingleBuffered(
+ int texture_id) {
+ DCHECK(IsSingleBufferModeSupported());
+ JNIEnv* env = base::android::AttachCurrentThread();
+ return new SurfaceTexture(
+ Java_SurfaceTexturePlatformWrapper_createSingleBuffered(env, texture_id));
+}
+
SurfaceTexture::SurfaceTexture(
const base::android::ScopedJavaLocalRef<jobject>& j_surface_texture) {
j_surface_texture_.Reset(j_surface_texture);
@@ -46,6 +55,13 @@ void SurfaceTexture::UpdateTexImage() {
j_surface_texture_.obj());
}
+void SurfaceTexture::ReleaseTexImage() {
+ DCHECK(IsSingleBufferModeSupported());
+ JNIEnv* env = base::android::AttachCurrentThread();
+ Java_SurfaceTexturePlatformWrapper_releaseTexImage(env,
+ j_surface_texture_.obj());
+}
+
void SurfaceTexture::GetTransformMatrix(float mtx[16]) {
JNIEnv* env = base::android::AttachCurrentThread();
@@ -89,6 +105,11 @@ ANativeWindow* SurfaceTexture::CreateSurface() {
return native_window;
}
+// static
+bool SurfaceTexture::IsSingleBufferModeSupported() {
+ return base::android::BuildInfo::GetInstance()->sdk_int() >= 19;
+}
+
bool SurfaceTexture::RegisterSurfaceTexture(JNIEnv* env) {
return RegisterNativesImpl(env);
}
« no previous file with comments | « ui/gl/android/surface_texture.h ('k') | ui/gl/gl_image_surface_texture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698