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

Unified Diff: gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.h

Issue 2353453002: ui: Remove SurfaceTexture GpuMemoryBuffer type. (Closed)
Patch Set: ui: Remove SurfaceTexture GpuMemoryBuffer type. Created 4 years, 3 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 | « gpu/ipc/client/gpu_memory_buffer_impl.cc ('k') | gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.h
diff --git a/gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.h b/gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.h
deleted file mode 100644
index 3e4f862a0a319cdaefdde713bf47d08c5b155833..0000000000000000000000000000000000000000
--- a/gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// 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 GPU_IPC_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
-#define GPU_IPC_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
-
-#include <android/native_window.h>
-#include <stddef.h>
-
-#include <memory>
-
-#include "base/macros.h"
-#include "gpu/gpu_export.h"
-#include "gpu/ipc/client/gpu_memory_buffer_impl.h"
-
-namespace gpu {
-
-// Implementation of GPU memory buffer based on SurfaceTextures.
-class GPU_EXPORT GpuMemoryBufferImplSurfaceTexture
- : public GpuMemoryBufferImpl {
- public:
- ~GpuMemoryBufferImplSurfaceTexture() override;
-
- static std::unique_ptr<GpuMemoryBufferImplSurfaceTexture> CreateFromHandle(
- const gfx::GpuMemoryBufferHandle& handle,
- const gfx::Size& size,
- gfx::BufferFormat format,
- gfx::BufferUsage usage,
- const DestructionCallback& callback);
-
- static bool IsConfigurationSupported(gfx::BufferFormat format,
- gfx::BufferUsage usage);
-
- static base::Closure AllocateForTesting(const gfx::Size& size,
- gfx::BufferFormat format,
- gfx::BufferUsage usage,
- gfx::GpuMemoryBufferHandle* handle);
-
- // Overridden from gfx::GpuMemoryBuffer:
- bool Map() override;
- void* memory(size_t plane) override;
- void Unmap() override;
- int stride(size_t plane) const override;
- gfx::GpuMemoryBufferHandle GetHandle() const override;
-
- private:
- GpuMemoryBufferImplSurfaceTexture(gfx::GpuMemoryBufferId id,
- const gfx::Size& size,
- gfx::BufferFormat format,
- const DestructionCallback& callback,
- ANativeWindow* native_window);
-
- ANativeWindow* native_window_;
- ANativeWindow_Buffer buffer_;
-
- DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplSurfaceTexture);
-};
-
-} // namespace gpu
-
-#endif // GPU_IPC_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
« no previous file with comments | « gpu/ipc/client/gpu_memory_buffer_impl.cc ('k') | gpu/ipc/client/gpu_memory_buffer_impl_surface_texture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698