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

Side by Side Diff: content/common/gpu/gpu_memory_buffer_factory_win.cc

Issue 331723003: gpu: Remove Create/DeleteImage IPC by adding an X11_PIXMAP_BUFFER GpuMemoryBuffer type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 #include "content/common/gpu/gpu_memory_buffer_factory.h"
6
7 #include "base/logging.h"
8 #include "ui/gl/gl_image.h"
9 #include "ui/gl/gl_image_shared_memory.h"
10
11 namespace content {
12 namespace {
13
14 class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
15 public:
16 // Overridden from GpuMemoryBufferFactory:
17 virtual gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer(
18 const gfx::GpuMemoryBufferHandle& handle,
19 const gfx::Size& size,
20 unsigned internalformat,
21 unsigned usage) OVERRIDE {
22 NOTREACHED();
23 return gfx::GpuMemoryBufferHandle();
24 }
25 virtual void DestroyGpuMemoryBuffer(
26 const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
27 NOTREACHED();
28 }
29 virtual scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer(
30 const gfx::GpuMemoryBufferHandle& handle,
31 const gfx::Size& size,
32 unsigned internalformat,
33 int client_id) OVERRIDE {
34 switch (handle.type) {
35 case gfx::SHARED_MEMORY_BUFFER: {
36 scoped_refptr<gfx::GLImageSharedMemory> image(
37 new gfx::GLImageSharedMemory(size, internalformat));
38 if (!image->Initialize(handle))
39 return NULL;
40
41 return image;
42 }
43 default:
44 NOTREACHED();
45 return scoped_refptr<gfx::GLImage>();
46 }
47 }
48 };
49
50 } // namespace
51
52 // static
53 scoped_ptr<GpuMemoryBufferFactory> GpuMemoryBufferFactory::Create() {
54 return make_scoped_ptr<GpuMemoryBufferFactory>(
55 new GpuMemoryBufferFactoryImpl);
56 }
57
58 } // namespace content
OLDNEW
« no previous file with comments | « content/common/gpu/gpu_memory_buffer_factory_ozone.cc ('k') | content/common/gpu/gpu_memory_buffer_factory_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698