| Index: ui/ozone/demo/surfaceless_gl_renderer.cc
|
| diff --git a/ui/ozone/demo/surfaceless_gl_renderer.cc b/ui/ozone/demo/surfaceless_gl_renderer.cc
|
| index b6b0b41037aa3d3a0fa6fb52d2a4758682c52f21..f7d6b8f5c5d4b36b6598950dc89650d45a616610 100644
|
| --- a/ui/ozone/demo/surfaceless_gl_renderer.cc
|
| +++ b/ui/ozone/demo/surfaceless_gl_renderer.cc
|
| @@ -12,8 +12,8 @@
|
| #include "ui/gl/gl_bindings.h"
|
| #include "ui/gl/gl_context.h"
|
| #include "ui/gl/gl_image.h"
|
| -#include "ui/gl/gl_image_ozone_native_pixmap.h"
|
| #include "ui/gl/gl_surface.h"
|
| +#include "ui/ozone/gl/gl_image_ozone_native_pixmap.h"
|
| #include "ui/ozone/public/ozone_platform.h"
|
| #include "ui/ozone/public/surface_factory_ozone.h"
|
|
|
| @@ -44,8 +44,8 @@ bool SurfacelessGlRenderer::BufferWrapper::Initialize(
|
| ->GetSurfaceFactoryOzone()
|
| ->CreateNativePixmap(widget, size, gfx::BufferFormat::BGRX_8888,
|
| gfx::BufferUsage::SCANOUT);
|
| - scoped_refptr<gl::GLImageOzoneNativePixmap> image(
|
| - new gl::GLImageOzoneNativePixmap(size, GL_RGB));
|
| + scoped_refptr<ui::GLImageOzoneNativePixmap> image(
|
| + new ui::GLImageOzoneNativePixmap(size, GL_RGB));
|
| if (!image->Initialize(pixmap.get(), gfx::BufferFormat::BGRX_8888)) {
|
| LOG(ERROR) << "Failed to create GLImage";
|
| return false;
|
|
|