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

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

Issue 806653006: Update GPU memory buffers to use StrideInBytes internally. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 #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 "base/logging.h" 7 #include "base/logging.h"
8 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h" 8 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h"
9 #include "ui/gl/gl_bindings.h" 9 #include "ui/gl/gl_bindings.h"
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 } 69 }
70 } 70 }
71 71
72 // static 72 // static
73 GpuMemoryBufferImpl* GpuMemoryBufferImpl::FromClientBuffer( 73 GpuMemoryBufferImpl* GpuMemoryBufferImpl::FromClientBuffer(
74 ClientBuffer buffer) { 74 ClientBuffer buffer) {
75 return reinterpret_cast<GpuMemoryBufferImpl*>(buffer); 75 return reinterpret_cast<GpuMemoryBufferImpl*>(buffer);
76 } 76 }
77 77
78 // static 78 // static
79 size_t GpuMemoryBufferImpl::BytesPerPixel(Format format) { 79 size_t GpuMemoryBufferImpl::BitsPerPixel(Format format) {
80 switch (format) { 80 switch (format) {
81 case RGBA_8888: 81 case RGBA_8888:
82 case RGBX_8888: 82 case RGBX_8888:
83 case BGRA_8888: 83 case BGRA_8888:
84 return 4; 84 return 32;
85 } 85 }
86 86
87 NOTREACHED(); 87 NOTREACHED();
88 return 0; 88 return 0;
89 } 89 }
90 90
91 // static
92 size_t GpuMemoryBufferImpl::PixelsToBytes(
93 size_t pixel_count,
94 gfx::GpuMemoryBuffer::Format format) {
95 size_t size_in_bits = pixel_count * BitsPerPixel(format);
96 DCHECK_EQ(size_in_bits % 8, 0u);
97 return size_in_bits / 8;
98 }
99
91 gfx::GpuMemoryBuffer::Format GpuMemoryBufferImpl::GetFormat() const { 100 gfx::GpuMemoryBuffer::Format GpuMemoryBufferImpl::GetFormat() const {
92 return format_; 101 return format_;
93 } 102 }
94 103
95 bool GpuMemoryBufferImpl::IsMapped() const { 104 bool GpuMemoryBufferImpl::IsMapped() const {
96 return mapped_; 105 return mapped_;
97 } 106 }
98 107
99 ClientBuffer GpuMemoryBufferImpl::AsClientBuffer() { 108 ClientBuffer GpuMemoryBufferImpl::AsClientBuffer() {
100 return reinterpret_cast<ClientBuffer>(this); 109 return reinterpret_cast<ClientBuffer>(this);
101 } 110 }
102 111
103 } // namespace content 112 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698