Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #ifndef UI_GL_GL_IMAGE_SHM_H_ | 5 #ifndef UI_GL_GL_IMAGE_SHM_H_ |
| 6 #define UI_GL_GL_IMAGE_SHM_H_ | 6 #define UI_GL_GL_IMAGE_SHM_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "ui/gl/gl_image.h" | 9 #include "ui/gl/gl_image.h" |
| 10 | 10 |
| 11 namespace gfx { | 11 namespace gfx { |
| 12 | 12 |
| 13 class GL_EXPORT GLImageShm : public GLImage { | 13 class GL_EXPORT GLImageShm : public GLImage { |
| 14 public: | 14 public: |
| 15 explicit GLImageShm(gfx::Size size); | 15 GLImageShm(const gfx::Size& size, unsigned internalformat); |
|
piman
2013/08/13 00:38:24
nit: I think the consensus is to pass structs with
reveman
2013/08/13 01:48:26
Latest patch pass |size| by value.
| |
| 16 | 16 |
| 17 bool Initialize(gfx::GpuMemoryBufferHandle buffer); | 17 bool Initialize(gfx::GpuMemoryBufferHandle buffer); |
| 18 | 18 |
| 19 // Overridden from GLImage: | 19 // Overridden from GLImage: |
| 20 virtual void Destroy() OVERRIDE; | 20 virtual void Destroy() OVERRIDE; |
| 21 virtual gfx::Size GetSize() OVERRIDE; | 21 virtual gfx::Size GetSize() OVERRIDE; |
| 22 virtual bool BindTexImage() OVERRIDE; | 22 virtual bool BindTexImage() OVERRIDE; |
| 23 virtual void ReleaseTexImage() OVERRIDE; | 23 virtual void ReleaseTexImage() OVERRIDE; |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 virtual ~GLImageShm(); | 26 virtual ~GLImageShm(); |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 scoped_ptr<base::SharedMemory> shared_memory_; | 29 scoped_ptr<base::SharedMemory> shared_memory_; |
| 30 gfx::Size size_; | 30 gfx::Size size_; |
| 31 unsigned internalformat_; | |
| 31 | 32 |
| 32 DISALLOW_COPY_AND_ASSIGN(GLImageShm); | 33 DISALLOW_COPY_AND_ASSIGN(GLImageShm); |
| 33 }; | 34 }; |
| 34 | 35 |
| 35 } // namespace gfx | 36 } // namespace gfx |
| 36 | 37 |
| 37 #endif // UI_GL_GL_IMAGE_SHM_H_ | 38 #endif // UI_GL_GL_IMAGE_SHM_H_ |
| OLD | NEW |