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

Unified Diff: content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc

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
Index: content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc
diff --git a/content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc b/content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc
new file mode 100644
index 0000000000000000000000000000000000000000..08737c264249c01f89bc1cf8aeab174bee144c56
--- /dev/null
+++ b/content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc
@@ -0,0 +1,128 @@
+// 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.
+
+#include "content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h"
+
+#include "ui/gl/gl_image_ozone_native_pixmap.h"
+#include "ui/ozone/public/client_native_pixmap.h"
+#include "ui/ozone/public/client_native_pixmap_factory.h"
+#include "ui/ozone/public/ozone_platform.h"
+#include "ui/ozone/public/surface_factory_ozone.h"
+
+namespace content {
+
+GpuMemoryBufferFactoryOzoneNativePixmap::
+ GpuMemoryBufferFactoryOzoneNativePixmap() {}
+
+GpuMemoryBufferFactoryOzoneNativePixmap::
+ ~GpuMemoryBufferFactoryOzoneNativePixmap() {}
+
+gfx::GpuMemoryBufferHandle
+GpuMemoryBufferFactoryOzoneNativePixmap::CreateGpuMemoryBuffer(
+ gfx::GpuMemoryBufferId id,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ gfx::BufferUsage usage,
+ int client_id,
+ gpu::SurfaceHandle surface_handle) {
+ scoped_refptr<ui::NativePixmap> pixmap =
+ ui::OzonePlatform::GetInstance()
+ ->GetSurfaceFactoryOzone()
+ ->CreateNativePixmap(surface_handle, size, format, usage);
+ if (!pixmap.get()) {
+ DLOG(ERROR) << "Failed to create pixmap " << size.width() << "x"
+ << size.height() << " format " << static_cast<int>(format)
+ << ", usage " << static_cast<int>(usage);
+ return gfx::GpuMemoryBufferHandle();
+ }
+
+ gfx::GpuMemoryBufferHandle new_handle;
+ new_handle.type = gfx::OZONE_NATIVE_PIXMAP;
+ new_handle.id = id;
+ new_handle.native_pixmap_handle = pixmap->ExportHandle();
+
+ {
+ base::AutoLock lock(native_pixmaps_lock_);
+ NativePixmapMapKey key(id.id, client_id);
+ DCHECK(native_pixmaps_.find(key) == native_pixmaps_.end());
+ native_pixmaps_[key] = pixmap;
+ }
+
+ return new_handle;
+}
+
+gfx::GpuMemoryBufferHandle
+GpuMemoryBufferFactoryOzoneNativePixmap::CreateGpuMemoryBufferFromHandle(
+ const gfx::GpuMemoryBufferHandle& handle,
+ gfx::GpuMemoryBufferId id,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ int client_id) {
+ scoped_refptr<ui::NativePixmap> pixmap =
+ ui::OzonePlatform::GetInstance()
+ ->GetSurfaceFactoryOzone()
+ ->CreateNativePixmapFromHandle(size, format,
+ handle.native_pixmap_handle);
+ if (!pixmap.get()) {
+ DLOG(ERROR) << "Failed to create pixmap from handle";
+ return gfx::GpuMemoryBufferHandle();
+ }
+
+ gfx::GpuMemoryBufferHandle new_handle;
+ new_handle.type = gfx::OZONE_NATIVE_PIXMAP;
+ new_handle.id = id;
+ new_handle.native_pixmap_handle = pixmap->ExportHandle();
+
+ {
+ base::AutoLock lock(native_pixmaps_lock_);
+ NativePixmapMapKey key(id.id, client_id);
+ DCHECK(native_pixmaps_.find(key) == native_pixmaps_.end());
+ native_pixmaps_[key] = pixmap;
+ }
+
+ return new_handle;
+}
+
+void GpuMemoryBufferFactoryOzoneNativePixmap::DestroyGpuMemoryBuffer(
+ gfx::GpuMemoryBufferId id,
+ int client_id) {
+ base::AutoLock lock(native_pixmaps_lock_);
+ auto it = native_pixmaps_.find(NativePixmapMapKey(id.id, client_id));
+ DCHECK(it != native_pixmaps_.end());
+ native_pixmaps_.erase(it);
+}
+
+gpu::ImageFactory* GpuMemoryBufferFactoryOzoneNativePixmap::AsImageFactory() {
+ return this;
+}
+
+scoped_refptr<gl::GLImage>
+GpuMemoryBufferFactoryOzoneNativePixmap::CreateImageForGpuMemoryBuffer(
+ const gfx::GpuMemoryBufferHandle& handle,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ unsigned internalformat,
+ int client_id) {
+ DCHECK_EQ(handle.type, gfx::OZONE_NATIVE_PIXMAP);
+ scoped_refptr<ui::NativePixmap> pixmap;
+ {
+ base::AutoLock lock(native_pixmaps_lock_);
+ NativePixmapMap::iterator it =
+ native_pixmaps_.find(NativePixmapMapKey(handle.id.id, client_id));
+ if (it == native_pixmaps_.end()) {
+ return nullptr;
+ }
+ pixmap = it->second;
+ }
+
+ scoped_refptr<gfx::GLImageOzoneNativePixmap> image(
+ new gfx::GLImageOzoneNativePixmap(size, internalformat));
+ if (!image->Initialize(pixmap.get(), format)) {
+ LOG(ERROR) << "Failed to create GLImage";
+ return nullptr;
+ }
+ return image;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698