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

Side by Side Diff: content/common/gpu/client/gpu_memory_buffer_impl_android.cc

Issue 634083002: gpu: Compositor management of GpuMemoryBuffer instances. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cc-pre-chromium-image-refactor
Patch Set: rebase Created 6 years, 2 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" 5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h"
6 6
7 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h" 7 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h"
8 #include "content/common/gpu/client/gpu_memory_buffer_impl_surface_texture.h" 8 #include "content/common/gpu/client/gpu_memory_buffer_impl_surface_texture.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 // static 12 // static
13 void GpuMemoryBufferImpl::Create(const gfx::Size& size, 13 void GpuMemoryBufferImpl::Create(const gfx::Size& size,
14 unsigned internalformat, 14 Format format,
15 unsigned usage, 15 Usage usage,
16 int client_id, 16 int client_id,
17 const CreationCallback& callback) { 17 const CreationCallback& callback) {
18 if (GpuMemoryBufferImplSurfaceTexture::IsConfigurationSupported( 18 if (GpuMemoryBufferImplSurfaceTexture::IsConfigurationSupported(format,
19 internalformat, usage)) { 19 usage)) {
20 GpuMemoryBufferImplSurfaceTexture::Create( 20 GpuMemoryBufferImplSurfaceTexture::Create(
21 size, internalformat, usage, client_id, callback); 21 size, format, client_id, callback);
22 return; 22 return;
23 } 23 }
24 24
25 if (GpuMemoryBufferImplSharedMemory::IsConfigurationSupported( 25 if (GpuMemoryBufferImplSharedMemory::IsConfigurationSupported(
26 size, internalformat, usage)) { 26 size, format, usage)) {
27 GpuMemoryBufferImplSharedMemory::Create( 27 GpuMemoryBufferImplSharedMemory::Create(size, format, callback);
28 size, internalformat, usage, callback);
29 return; 28 return;
30 } 29 }
31 30
32 callback.Run(scoped_ptr<GpuMemoryBufferImpl>()); 31 callback.Run(scoped_ptr<GpuMemoryBufferImpl>());
33 } 32 }
34 33
35 // static 34 // static
36 void GpuMemoryBufferImpl::AllocateForChildProcess( 35 void GpuMemoryBufferImpl::AllocateForChildProcess(
37 const gfx::Size& size, 36 const gfx::Size& size,
38 unsigned internalformat, 37 Format format,
39 unsigned usage, 38 Usage usage,
40 base::ProcessHandle child_process, 39 base::ProcessHandle child_process,
41 int child_client_id, 40 int child_client_id,
42 const AllocationCallback& callback) { 41 const AllocationCallback& callback) {
43 if (GpuMemoryBufferImplSurfaceTexture::IsConfigurationSupported( 42 if (GpuMemoryBufferImplSurfaceTexture::IsConfigurationSupported(format,
44 internalformat, usage)) { 43 usage)) {
45 GpuMemoryBufferImplSurfaceTexture::AllocateForChildProcess( 44 GpuMemoryBufferImplSurfaceTexture::AllocateForChildProcess(
46 size, internalformat, usage, child_client_id, callback); 45 size, format, child_client_id, callback);
47 return; 46 return;
48 } 47 }
49 48
50 if (GpuMemoryBufferImplSharedMemory::IsConfigurationSupported( 49 if (GpuMemoryBufferImplSharedMemory::IsConfigurationSupported(
51 size, internalformat, usage)) { 50 size, format, usage)) {
52 GpuMemoryBufferImplSharedMemory::AllocateForChildProcess( 51 GpuMemoryBufferImplSharedMemory::AllocateForChildProcess(
53 size, internalformat, child_process, callback); 52 size, format, child_process, callback);
54 return; 53 return;
55 } 54 }
56 55
57 callback.Run(gfx::GpuMemoryBufferHandle()); 56 callback.Run(gfx::GpuMemoryBufferHandle());
58 } 57 }
59 58
60 // static 59 // static
61 void GpuMemoryBufferImpl::DeletedByChildProcess( 60 void GpuMemoryBufferImpl::DeletedByChildProcess(
62 gfx::GpuMemoryBufferType type, 61 gfx::GpuMemoryBufferType type,
63 const gfx::GpuMemoryBufferId& id, 62 const gfx::GpuMemoryBufferId& id,
64 base::ProcessHandle child_process) { 63 base::ProcessHandle child_process) {
65 } 64 }
66 65
67 // static 66 // static
68 scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle( 67 scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle(
69 const gfx::GpuMemoryBufferHandle& handle, 68 const gfx::GpuMemoryBufferHandle& handle,
70 const gfx::Size& size, 69 const gfx::Size& size,
71 unsigned internalformat, 70 Format format,
72 const DestructionCallback& callback) { 71 const DestructionCallback& callback) {
73 switch (handle.type) { 72 switch (handle.type) {
74 case gfx::SHARED_MEMORY_BUFFER: 73 case gfx::SHARED_MEMORY_BUFFER:
75 return GpuMemoryBufferImplSharedMemory::CreateFromHandle( 74 return GpuMemoryBufferImplSharedMemory::CreateFromHandle(
76 handle, size, internalformat, callback); 75 handle, size, format, callback);
77 case gfx::SURFACE_TEXTURE_BUFFER: 76 case gfx::SURFACE_TEXTURE_BUFFER:
78 return GpuMemoryBufferImplSurfaceTexture::CreateFromHandle( 77 return GpuMemoryBufferImplSurfaceTexture::CreateFromHandle(
79 handle, size, internalformat, callback); 78 handle, size, format, callback);
80 default: 79 default:
81 return scoped_ptr<GpuMemoryBufferImpl>(); 80 return scoped_ptr<GpuMemoryBufferImpl>();
82 } 81 }
83 } 82 }
84 83
85 } // namespace content 84 } // namespace content
OLDNEW
« no previous file with comments | « content/common/gpu/client/gpu_memory_buffer_impl.cc ('k') | content/common/gpu/client/gpu_memory_buffer_impl_io_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698