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

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

Issue 255713008: Change glimage to accept a type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_ 5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_
6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_ 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ui/gfx/gpu_memory_buffer.h" 9 #include "ui/gfx/gpu_memory_buffer.h"
10 #include "ui/gfx/size.h" 10 #include "ui/gfx/size.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 // Provides common implementation of a GPU memory buffer. 14 // Provides common implementation of a GPU memory buffer.
15 class GpuMemoryBufferImpl : public gfx::GpuMemoryBuffer { 15 class GpuMemoryBufferImpl : public gfx::GpuMemoryBuffer {
16 public: 16 public:
17 static scoped_ptr<GpuMemoryBufferImpl> Create( 17 static scoped_ptr<GpuMemoryBufferImpl> Create(
18 gfx::GpuMemoryBufferHandle handle, 18 gfx::GpuMemoryBufferHandle handle,
19 gfx::Size size, 19 gfx::Size size,
20 unsigned internalformat); 20 unsigned internalformat);
21 21
22 virtual ~GpuMemoryBufferImpl(); 22 virtual ~GpuMemoryBufferImpl();
23 23
24 static bool IsFormatValid(unsigned internalformat); 24 static bool IsFormatValid(unsigned internalformat);
25 static bool IsUsageValid(unsigned usage);
25 static size_t BytesPerPixel(unsigned internalformat); 26 static size_t BytesPerPixel(unsigned internalformat);
26 27
27 // Overridden from gfx::GpuMemoryBuffer: 28 // Overridden from gfx::GpuMemoryBuffer:
28 virtual bool IsMapped() const OVERRIDE; 29 virtual bool IsMapped() const OVERRIDE;
29 virtual uint32 GetStride() const OVERRIDE; 30 virtual uint32 GetStride() const OVERRIDE;
30 31
31 protected: 32 protected:
32 GpuMemoryBufferImpl(gfx::Size size, unsigned internalformat); 33 GpuMemoryBufferImpl(gfx::Size size, unsigned internalformat);
33 34
34 const gfx::Size size_; 35 const gfx::Size size_;
35 unsigned internalformat_; 36 unsigned internalformat_;
36 bool mapped_; 37 bool mapped_;
37 38
38 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImpl); 39 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImpl);
39 }; 40 };
40 41
41 } // namespace content 42 } // namespace content
42 43
43 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_ 44 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698