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

Side by Side Diff: ui/gl/gl_image_ozone_native_pixmap.h

Issue 1258713002: ozone: unify GpuMemoryBufferFactoryOzoneNativePixmap in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix linux_chromium_gn_dgb build Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « ui/gl/gl_image_linux_dma_buffer.cc ('k') | ui/gl/gl_image_ozone_native_pixmap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_GL_GL_IMAGE_OZONE_NATIVE_PIXMAP_H_
6 #define UI_GL_GL_IMAGE_OZONE_NATIVE_PIXMAP_H_
7
8 #include "ui/gfx/gpu_memory_buffer.h"
9 #include "ui/gl/gl_image_egl.h"
10 #include "ui/ozone/public/native_pixmap.h"
11
12 namespace gfx {
13
14 class GL_EXPORT GLImageOzoneNativePixmap : public GLImageEGL {
15 public:
16 GLImageOzoneNativePixmap(const Size& size, unsigned internalformat);
17
18 bool Initialize(ui::NativePixmap* pixmap, GpuMemoryBuffer::Format format);
19
20 // Overridden from GLImage:
21 unsigned GetInternalFormat() override;
22 void Destroy(bool have_context) override;
23 bool ScheduleOverlayPlane(AcceleratedWidget widget,
24 int z_order,
25 OverlayTransform transform,
26 const Rect& bounds_rect,
27 const RectF& crop_rect) override;
28
29 protected:
30 ~GLImageOzoneNativePixmap() override;
31
32 private:
33 unsigned internalformat_;
34 scoped_refptr<ui::NativePixmap> pixmap_;
35 };
36
37 } // namespace gfx
38
39 #endif // UI_GL_GL_IMAGE_OZONE_NATIVE_PIXMAP_H_
OLDNEW
« no previous file with comments | « ui/gl/gl_image_linux_dma_buffer.cc ('k') | ui/gl/gl_image_ozone_native_pixmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698