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
3 // found in the LICENSE file.
5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h"
7 #include "ui/gl/gl_bindings.h"
11 GpuMemoryBufferImpl::GpuMemoryBufferImpl(const gfx::Size
& size
,
12 unsigned internalformat
)
13 : size_(size
), internalformat_(internalformat
), mapped_(false) {
14 DCHECK(IsFormatValid(internalformat
));
17 GpuMemoryBufferImpl::~GpuMemoryBufferImpl() {}
20 bool GpuMemoryBufferImpl::IsFormatValid(unsigned internalformat
) {
21 switch (internalformat
) {
31 bool GpuMemoryBufferImpl::IsUsageValid(unsigned usage
) {
33 case GL_IMAGE_MAP_CHROMIUM
:
34 case GL_IMAGE_SCANOUT_CHROMIUM
:
42 size_t GpuMemoryBufferImpl::BytesPerPixel(unsigned internalformat
) {
43 switch (internalformat
) {
53 bool GpuMemoryBufferImpl::IsMapped() const { return mapped_
; }
55 } // namespace content