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

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

Issue 1846253003: Revert of Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « content/common/gpu/gpu_config.h ('k') | content/common/gpu/gpu_memory_buffer_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..566269f3a684974c67807ca6e3fdc5926d674fe2
--- /dev/null
+++ b/content/common/gpu/gpu_memory_buffer_factory.h
@@ -0,0 +1,67 @@
+// 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 <vector>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "content/common/content_export.h"
+#include "gpu/ipc/common/surface_handle.h"
+#include "ui/gfx/geometry/size.h"
+#include "ui/gfx/gpu_memory_buffer.h"
+
+namespace gpu {
+class ImageFactory;
+}
+
+namespace content {
+
+class CONTENT_EXPORT GpuMemoryBufferFactory {
+ public:
+ virtual ~GpuMemoryBufferFactory() {}
+
+ // Creates a new factory instance for native GPU memory buffers.
+ static scoped_ptr<GpuMemoryBufferFactory> CreateNativeType();
+
+ // Creates a new GPU memory buffer instance. A valid handle is returned on
+ // success. It can be called on any thread.
+ virtual gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer(
+ gfx::GpuMemoryBufferId id,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ gfx::BufferUsage usage,
+ int client_id,
+ gpu::SurfaceHandle surface_handle) = 0;
+
+ // Creates a new GPU memory buffer instance from an existing handle. A valid
+ // handle is returned on success. It can be called on any thread.
+ virtual gfx::GpuMemoryBufferHandle CreateGpuMemoryBufferFromHandle(
+ const gfx::GpuMemoryBufferHandle& handle,
+ gfx::GpuMemoryBufferId id,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ int client_id) = 0;
+
+ // Destroys GPU memory buffer identified by |id|.
+ // It can be called on any thread.
+ virtual void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id,
+ int client_id) = 0;
+
+ // Type-checking downcast routine.
+ virtual gpu::ImageFactory* AsImageFactory() = 0;
+
+ protected:
+ GpuMemoryBufferFactory() {}
+
+ 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_config.h ('k') | content/common/gpu/gpu_memory_buffer_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698