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

Unified Diff: content/common/gpu/client/gpu_memory_buffer_impl_shm.h

Issue 77023002: gpu: Add IOSurface backed GpuMemoryBuffer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix overflow check Created 7 years 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
Index: content/common/gpu/client/gpu_memory_buffer_impl_shm.h
diff --git a/content/common/gpu/client/gpu_memory_buffer_impl_shm.h b/content/common/gpu/client/gpu_memory_buffer_impl_shm.h
new file mode 100644
index 0000000000000000000000000000000000000000..be86aabea3cc5befb1543369399bbbd0dc358d53
--- /dev/null
+++ b/content/common/gpu/client/gpu_memory_buffer_impl_shm.h
@@ -0,0 +1,36 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SHM_H_
+#define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SHM_H_
+
+#include "content/common/gpu/client/gpu_memory_buffer_impl.h"
+
+namespace content {
+
+// Provides implementation of a GPU memory buffer based
+// on a shared memory handle.
+class GpuMemoryBufferImplShm : public GpuMemoryBufferImpl {
+ public:
+ GpuMemoryBufferImplShm(gfx::Size size, unsigned internalformat);
+ virtual ~GpuMemoryBufferImplShm();
+
+ bool Initialize(gfx::GpuMemoryBufferHandle handle);
+ bool InitializeFromSharedMemory(
+ scoped_ptr<base::SharedMemory> shared_memory);
+
+ // Overridden from gfx::GpuMemoryBuffer:
+ virtual void Map(AccessMode mode, void** vaddr) OVERRIDE;
+ virtual void Unmap() OVERRIDE;
+ virtual gfx::GpuMemoryBufferHandle GetHandle() const OVERRIDE;
+
+ private:
+ scoped_ptr<base::SharedMemory> shared_memory_;
+
+ DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplShm);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SHM_H_
« no previous file with comments | « content/common/gpu/client/gpu_memory_buffer_impl_ozone.cc ('k') | content/common/gpu/client/gpu_memory_buffer_impl_shm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698