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

Unified Diff: ui/gl/gl_image_ozone.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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
« no previous file with comments | « ui/gl/gl_image_egl.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_image_ozone.cc
diff --git a/ui/gl/gl_image_ozone.cc b/ui/gl/gl_image_ozone.cc
index a1c13296aae350753acdf900fd529e583276d5fe..b0793c13ac9eb2a320df853ad3ad4f4f5ef421c1 100644
--- a/ui/gl/gl_image_ozone.cc
+++ b/ui/gl/gl_image_ozone.cc
@@ -5,6 +5,7 @@
#include "ui/gl/gl_image.h"
#include "base/debug/trace_event.h"
+#include "ui/gfx/ozone/surface_factory_ozone.h"
#include "ui/gl/gl_image_egl.h"
#include "ui/gl/gl_image_stub.h"
#include "ui/gl/gl_implementation.h"
@@ -31,11 +32,20 @@ scoped_refptr<GLImage> GLImage::CreateGLImageForGpuMemoryBuffer(
gfx::Size size,
unsigned internalformat) {
TRACE_EVENT0("gpu", "GLImage::CreateGLImageForGpuMemoryBuffer");
+
+ buffer.native_buffer = reinterpret_cast<void*>(
+ gfx::SurfaceFactoryOzone::GetInstance()->CreateNativeBuffer(
+ size, internalformat));
+
switch (GetGLImplementation()) {
case kGLImplementationOSMesaGL:
- return NULL;
- case kGLImplementationEGLGLES2:
- return NULL;
+ case kGLImplementationEGLGLES2: {
+ scoped_refptr<GLImageEGL> image(new GLImageEGL(size));
+ if (!image->Initialize(buffer))
+ return NULL;
+
+ return image;
+ }
case kGLImplementationMockGL:
return new GLImageStub;
default:
« no previous file with comments | « ui/gl/gl_image_egl.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698