| 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 "content/common/gpu/gpu_memory_buffer_factory_io_surface.h" | 5 #include "content/common/gpu/gpu_memory_buffer_factory_io_surface.h" |
| 6 | 6 |
| 7 #include <CoreFoundation/CoreFoundation.h> | 7 #include <CoreFoundation/CoreFoundation.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "ui/gl/gl_image_io_surface.h" | 10 #include "ui/gl/gl_image_io_surface.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 switch (format) { | 31 switch (format) { |
| 32 case gfx::GpuMemoryBuffer::BGRA_8888: | 32 case gfx::GpuMemoryBuffer::BGRA_8888: |
| 33 return 4; | 33 return 4; |
| 34 case gfx::GpuMemoryBuffer::ATC: | 34 case gfx::GpuMemoryBuffer::ATC: |
| 35 case gfx::GpuMemoryBuffer::ATCIA: | 35 case gfx::GpuMemoryBuffer::ATCIA: |
| 36 case gfx::GpuMemoryBuffer::DXT1: | 36 case gfx::GpuMemoryBuffer::DXT1: |
| 37 case gfx::GpuMemoryBuffer::DXT5: | 37 case gfx::GpuMemoryBuffer::DXT5: |
| 38 case gfx::GpuMemoryBuffer::ETC1: | 38 case gfx::GpuMemoryBuffer::ETC1: |
| 39 case gfx::GpuMemoryBuffer::RGBA_8888: | 39 case gfx::GpuMemoryBuffer::RGBA_8888: |
| 40 case gfx::GpuMemoryBuffer::RGBX_8888: | 40 case gfx::GpuMemoryBuffer::RGBX_8888: |
| 41 case gfx::GpuMemoryBuffer::YUV_420: |
| 41 NOTREACHED(); | 42 NOTREACHED(); |
| 42 return 0; | 43 return 0; |
| 43 } | 44 } |
| 44 | 45 |
| 45 NOTREACHED(); | 46 NOTREACHED(); |
| 46 return 0; | 47 return 0; |
| 47 } | 48 } |
| 48 | 49 |
| 49 int32 PixelFormat(gfx::GpuMemoryBuffer::Format format) { | 50 int32 PixelFormat(gfx::GpuMemoryBuffer::Format format) { |
| 50 switch (format) { | 51 switch (format) { |
| 51 case gfx::GpuMemoryBuffer::BGRA_8888: | 52 case gfx::GpuMemoryBuffer::BGRA_8888: |
| 52 return 'BGRA'; | 53 return 'BGRA'; |
| 53 case gfx::GpuMemoryBuffer::ATC: | 54 case gfx::GpuMemoryBuffer::ATC: |
| 54 case gfx::GpuMemoryBuffer::ATCIA: | 55 case gfx::GpuMemoryBuffer::ATCIA: |
| 55 case gfx::GpuMemoryBuffer::DXT1: | 56 case gfx::GpuMemoryBuffer::DXT1: |
| 56 case gfx::GpuMemoryBuffer::DXT5: | 57 case gfx::GpuMemoryBuffer::DXT5: |
| 57 case gfx::GpuMemoryBuffer::ETC1: | 58 case gfx::GpuMemoryBuffer::ETC1: |
| 58 case gfx::GpuMemoryBuffer::RGBA_8888: | 59 case gfx::GpuMemoryBuffer::RGBA_8888: |
| 59 case gfx::GpuMemoryBuffer::RGBX_8888: | 60 case gfx::GpuMemoryBuffer::RGBX_8888: |
| 61 case gfx::GpuMemoryBuffer::YUV_420: |
| 60 NOTREACHED(); | 62 NOTREACHED(); |
| 61 return 0; | 63 return 0; |
| 62 } | 64 } |
| 63 | 65 |
| 64 NOTREACHED(); | 66 NOTREACHED(); |
| 65 return 0; | 67 return 0; |
| 66 } | 68 } |
| 67 | 69 |
| 68 const GpuMemoryBufferFactory::Configuration kSupportedConfigurations[] = { | 70 const GpuMemoryBufferFactory::Configuration kSupportedConfigurations[] = { |
| 69 { gfx::GpuMemoryBuffer::BGRA_8888, gfx::GpuMemoryBuffer::MAP } | 71 { gfx::GpuMemoryBuffer::BGRA_8888, gfx::GpuMemoryBuffer::MAP } |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 return scoped_refptr<gfx::GLImage>(); | 169 return scoped_refptr<gfx::GLImage>(); |
| 168 | 170 |
| 169 scoped_refptr<gfx::GLImageIOSurface> image(new gfx::GLImageIOSurface(size)); | 171 scoped_refptr<gfx::GLImageIOSurface> image(new gfx::GLImageIOSurface(size)); |
| 170 if (!image->Initialize(it->second.get())) | 172 if (!image->Initialize(it->second.get())) |
| 171 return scoped_refptr<gfx::GLImage>(); | 173 return scoped_refptr<gfx::GLImage>(); |
| 172 | 174 |
| 173 return image; | 175 return image; |
| 174 } | 176 } |
| 175 | 177 |
| 176 } // namespace content | 178 } // namespace content |
| OLD | NEW |