| OLD | NEW |
| 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 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" | 5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" |
| 6 | 6 |
| 7 #include "ui/gl/gl_bindings.h" | 7 #include "ui/gl/gl_bindings.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| 11 GpuMemoryBufferImpl::GpuMemoryBufferImpl(gfx::Size size, | 11 GpuMemoryBufferImpl::GpuMemoryBufferImpl(const gfx::Size& size, |
| 12 unsigned internalformat) | 12 unsigned internalformat) |
| 13 : size_(size), internalformat_(internalformat), mapped_(false) { | 13 : size_(size), internalformat_(internalformat), mapped_(false) { |
| 14 DCHECK(IsFormatValid(internalformat)); | 14 DCHECK(IsFormatValid(internalformat)); |
| 15 } | 15 } |
| 16 | 16 |
| 17 GpuMemoryBufferImpl::~GpuMemoryBufferImpl() {} | 17 GpuMemoryBufferImpl::~GpuMemoryBufferImpl() {} |
| 18 | 18 |
| 19 // static | 19 // static |
| 20 bool GpuMemoryBufferImpl::IsFormatValid(unsigned internalformat) { | 20 bool GpuMemoryBufferImpl::IsFormatValid(unsigned internalformat) { |
| 21 switch (internalformat) { | 21 switch (internalformat) { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 45 case GL_RGBA8_OES: | 45 case GL_RGBA8_OES: |
| 46 return 4; | 46 return 4; |
| 47 default: | 47 default: |
| 48 NOTREACHED(); | 48 NOTREACHED(); |
| 49 return 0; | 49 return 0; |
| 50 } | 50 } |
| 51 } | 51 } |
| 52 | 52 |
| 53 bool GpuMemoryBufferImpl::IsMapped() const { return mapped_; } | 53 bool GpuMemoryBufferImpl::IsMapped() const { return mapped_; } |
| 54 | 54 |
| 55 uint32 GpuMemoryBufferImpl::GetStride() const { | |
| 56 return size_.width() * BytesPerPixel(internalformat_); | |
| 57 } | |
| 58 | |
| 59 } // namespace content | 55 } // namespace content |
| OLD | NEW |