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 CC_RESOURCES_UI_RESOURCE_BITMAP_H_ | 5 #ifndef CC_RESOURCES_UI_RESOURCE_BITMAP_H_ |
| 6 #define CC_RESOURCES_UI_RESOURCE_BITMAP_H_ | 6 #define CC_RESOURCES_UI_RESOURCE_BITMAP_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| 11 #include "third_party/skia/include/core/SkTypes.h" | 11 #include "third_party/skia/include/core/SkTypes.h" |
| 12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/size.h" |
| 13 | 13 |
| 14 class SkBitmap; | |
| 15 | |
| 14 namespace cc { | 16 namespace cc { |
| 15 | 17 |
| 16 // Ref-counted bitmap class (can’t use SkBitmap because of ETC1). Thread-safety | 18 // Ref-counted bitmap class (can’t use SkBitmap because of ETC1). Thread-safety |
| 17 // ensures that both main and impl threads can hold references to the bitmap and | 19 // ensures that both main and impl threads can hold references to the bitmap and |
| 18 // that asynchronous uploads are allowed. | 20 // that asynchronous uploads are allowed. |
| 19 class CC_EXPORT UIResourceBitmap | 21 class CC_EXPORT UIResourceBitmap |
| 20 : public base::RefCountedThreadSafe<UIResourceBitmap> { | 22 : public base::RefCountedThreadSafe<UIResourceBitmap> { |
| 21 public: | 23 public: |
| 22 enum UIResourceFormat { | 24 enum UIResourceFormat { |
| 23 RGBA8 | 25 RGBA8 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 38 UIResourceBitmap(); | 40 UIResourceBitmap(); |
| 39 ~UIResourceBitmap(); | 41 ~UIResourceBitmap(); |
| 40 | 42 |
| 41 scoped_ptr<uint8_t[]> pixels_; | 43 scoped_ptr<uint8_t[]> pixels_; |
| 42 UIResourceFormat format_; | 44 UIResourceFormat format_; |
| 43 gfx::Size size_; | 45 gfx::Size size_; |
| 44 | 46 |
| 45 DISALLOW_COPY_AND_ASSIGN(UIResourceBitmap); | 47 DISALLOW_COPY_AND_ASSIGN(UIResourceBitmap); |
| 46 }; | 48 }; |
| 47 | 49 |
| 50 CC_EXPORT scoped_refptr<UIResourceBitmap> CreateUIResourceBitmapFromSkBitmap( | |
|
danakj
2013/08/27 15:42:48
Can this be a static method in the UIResourceBitma
powei
2013/08/27 22:39:28
Done.
| |
| 51 const SkBitmap& skbitmap); | |
| 52 | |
| 48 } // namespace cc | 53 } // namespace cc |
| 49 | 54 |
| 50 #endif // CC_RESOURCES_UI_RESOURCE_BITMAP_H_ | 55 #endif // CC_RESOURCES_UI_RESOURCE_BITMAP_H_ |
| OLD | NEW |