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

Unified Diff: content/common/gpu/gpu_memory_buffer_factory.h

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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/gpu_memory_buffer_factory.h
diff --git a/content/common/gpu/gpu_memory_buffer_factory.h b/content/common/gpu/gpu_memory_buffer_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..1107c9cfafc05958e753217e98623f65cfb35b24
--- /dev/null
+++ b/content/common/gpu/gpu_memory_buffer_factory.h
@@ -0,0 +1,55 @@
+// Copyright 2014 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_GPU_MEMORY_BUFFER_FACTORY_H_
+#define CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_H_
+
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "ui/gfx/geometry/size.h"
+#include "ui/gfx/gpu_memory_buffer.h"
+
+namespace gfx {
+class GLImage;
+}
+
+namespace content {
+
+class GpuMemoryBufferFactory {
+ public:
+ GpuMemoryBufferFactory() {}
+ virtual ~GpuMemoryBufferFactory() {}
+
+ // Creates a new platform specific factory instance.
+ static scoped_ptr<GpuMemoryBufferFactory> Create();
+
+ // Creates a GPU memory buffer instance from |handle|. Whether the storage for
+ // the buffer is passed with the handle or allocated as part of buffer
+ // creation depends on the type. A valid handle is returned on success.
+ virtual gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer(
+ const gfx::GpuMemoryBufferHandle& handle,
+ const gfx::Size& size,
+ unsigned internalformat,
+ unsigned usage) = 0;
+
+ // Destroys GPU memory buffer identified by |handle|.
+ virtual void DestroyGpuMemoryBuffer(
+ const gfx::GpuMemoryBufferHandle& handle) = 0;
+
+ // Creates a GLImage instance for GPU memory buffer identified by |handle|.
+ // |client_id| should be set to the client requesting the creation of instance
+ // and can be used by factory implementation to verify access rights.
+ virtual scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer(
+ const gfx::GpuMemoryBufferHandle& handle,
+ const gfx::Size& size,
+ unsigned internalformat,
+ int client_id) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferFactory);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_H_
« no previous file with comments | « content/common/gpu/gpu_command_buffer_stub.cc ('k') | content/common/gpu/gpu_memory_buffer_factory_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698