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

Side by Side Diff: content/common/gpu/client/gpu_memory_buffer_impl_surface_texture.h

Issue 195583003: Add initial GpuMemoryBufferSurfaceTexture implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
7
8 #include "content/common/gpu/client/gpu_memory_buffer_impl.h"
9
10 struct ANativeWindow;
11
12 namespace content {
13
14 // Provides implementation of a GPU memory buffer based on a surface texture id.
15 class GpuMemoryBufferImplSurfaceTexture : public GpuMemoryBufferImpl {
16 public:
17 GpuMemoryBufferImplSurfaceTexture(gfx::Size size, unsigned internalformat);
18 virtual ~GpuMemoryBufferImplSurfaceTexture();
19
20 bool Initialize(gfx::GpuMemoryBufferHandle handle);
21
22 static bool IsFormatSupported(unsigned internalformat);
23 static int WindowFormat(unsigned internalformat);
24
25 // Overridden from gfx::GpuMemoryBuffer:
26 virtual void Map(AccessMode mode, void** vaddr) OVERRIDE;
27 virtual void Unmap() OVERRIDE;
28 virtual gfx::GpuMemoryBufferHandle GetHandle() const OVERRIDE;
29 virtual uint32 GetStride() const OVERRIDE;
30
31 private:
32 gfx::SurfaceTextureId surface_texture_id_;
33 ANativeWindow* native_window_;
34 size_t stride_;
35
36 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplSurfaceTexture);
37 };
38
39 } // namespace content
40
41 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_SURFACE_TEXTURE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698