OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 "ui/gl/gl_image_memory.h" | 5 #include "ui/gl/gl_image_memory.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "ui/gl/gl_bindings.h" | 9 #include "ui/gl/gl_bindings.h" |
10 #include "ui/gl/scoped_binders.h" | 10 #include "ui/gl/scoped_binders.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 GLImageMemory::~GLImageMemory() { | 94 GLImageMemory::~GLImageMemory() { |
95 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \ | 95 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \ |
96 defined(USE_OZONE) | 96 defined(USE_OZONE) |
97 DCHECK_EQ(EGL_NO_IMAGE_KHR, egl_image_); | 97 DCHECK_EQ(EGL_NO_IMAGE_KHR, egl_image_); |
98 DCHECK_EQ(0u, egl_texture_id_); | 98 DCHECK_EQ(0u, egl_texture_id_); |
99 #endif | 99 #endif |
100 } | 100 } |
101 | 101 |
102 // static | 102 // static |
103 bool GLImageMemory::StrideInBytes(size_t width, | 103 size_t GLImageMemory::BytesPerPixel(gfx::GpuMemoryBuffer::Format format) { |
104 gfx::GpuMemoryBuffer::Format format, | |
105 size_t* stride_in_bytes) { | |
106 base::CheckedNumeric<size_t> s = width; | |
107 switch (format) { | 104 switch (format) { |
108 case gfx::GpuMemoryBuffer::RGBA_8888: | 105 case gfx::GpuMemoryBuffer::RGBA_8888: |
109 case gfx::GpuMemoryBuffer::BGRA_8888: | 106 case gfx::GpuMemoryBuffer::BGRA_8888: |
110 s *= 4; | 107 return 4; |
111 if (!s.IsValid()) | |
112 return false; | |
113 | |
114 *stride_in_bytes = s.ValueOrDie(); | |
115 return true; | |
116 case gfx::GpuMemoryBuffer::RGBX_8888: | 108 case gfx::GpuMemoryBuffer::RGBX_8888: |
117 NOTREACHED(); | 109 NOTREACHED(); |
118 return false; | 110 return 0; |
119 } | 111 } |
120 | 112 |
121 NOTREACHED(); | 113 NOTREACHED(); |
122 return false; | 114 return 0; |
123 } | 115 } |
124 | 116 |
125 bool GLImageMemory::Initialize(const unsigned char* memory, | 117 bool GLImageMemory::Initialize(const unsigned char* memory, |
126 gfx::GpuMemoryBuffer::Format format) { | 118 gfx::GpuMemoryBuffer::Format format) { |
127 if (!ValidInternalFormat(internalformat_)) { | 119 if (!ValidInternalFormat(internalformat_)) { |
128 LOG(ERROR) << "Invalid internalformat: " << internalformat_; | 120 LOG(ERROR) << "Invalid internalformat: " << internalformat_; |
129 return false; | 121 return false; |
130 } | 122 } |
131 | 123 |
132 if (!ValidFormat(format)) { | 124 if (!ValidFormat(format)) { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 TextureFormat(format_), | 280 TextureFormat(format_), |
289 size_.width(), | 281 size_.width(), |
290 size_.height(), | 282 size_.height(), |
291 0, // border | 283 0, // border |
292 DataFormat(format_), | 284 DataFormat(format_), |
293 DataType(format_), | 285 DataType(format_), |
294 memory_); | 286 memory_); |
295 } | 287 } |
296 | 288 |
297 } // namespace gfx | 289 } // namespace gfx |
OLD | NEW |