| 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 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ |
| 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ | 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ |
| 7 | 7 |
| 8 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" | 8 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 const gfx::GpuMemoryBufferHandle& handle, | 28 const gfx::GpuMemoryBufferHandle& handle, |
| 29 const gfx::Size& size, | 29 const gfx::Size& size, |
| 30 unsigned internalformat, | 30 unsigned internalformat, |
| 31 const DestructionCallback& callback); | 31 const DestructionCallback& callback); |
| 32 | 32 |
| 33 static bool IsFormatSupported(unsigned internalformat); | 33 static bool IsFormatSupported(unsigned internalformat); |
| 34 static bool IsUsageSupported(unsigned usage); | 34 static bool IsUsageSupported(unsigned usage); |
| 35 static bool IsConfigurationSupported(unsigned internalformat, unsigned usage); | 35 static bool IsConfigurationSupported(unsigned internalformat, unsigned usage); |
| 36 | 36 |
| 37 // Overridden from gfx::GpuMemoryBuffer: | 37 // Overridden from gfx::GpuMemoryBuffer: |
| 38 virtual void* Map() OVERRIDE; | 38 virtual void* Map() override; |
| 39 virtual void Unmap() OVERRIDE; | 39 virtual void Unmap() override; |
| 40 virtual uint32 GetStride() const OVERRIDE; | 40 virtual uint32 GetStride() const override; |
| 41 virtual gfx::GpuMemoryBufferHandle GetHandle() const OVERRIDE; | 41 virtual gfx::GpuMemoryBufferHandle GetHandle() const override; |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 GpuMemoryBufferImplOzoneNativeBuffer(const gfx::Size& size, | 44 GpuMemoryBufferImplOzoneNativeBuffer(const gfx::Size& size, |
| 45 unsigned internalformat, | 45 unsigned internalformat, |
| 46 const DestructionCallback& callback, | 46 const DestructionCallback& callback, |
| 47 const gfx::GpuMemoryBufferId& id); | 47 const gfx::GpuMemoryBufferId& id); |
| 48 virtual ~GpuMemoryBufferImplOzoneNativeBuffer(); | 48 virtual ~GpuMemoryBufferImplOzoneNativeBuffer(); |
| 49 | 49 |
| 50 gfx::GpuMemoryBufferId id_; | 50 gfx::GpuMemoryBufferId id_; |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativeBuffer); | 52 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativeBuffer); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace content | 55 } // namespace content |
| 56 | 56 |
| 57 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ | 57 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_H_ |
| OLD | NEW |