Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: cc/resources/ui_resource_bitmap.cc

Issue 22870016: Update the nine patch layer to use UI resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed from raw SkPixelRef pointers to skia::RefPtr<SkPixelRef> Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "cc/resources/ui_resource_bitmap.h" 5 #include "cc/resources/ui_resource_bitmap.h"
6 6
7 #include "base/logging.h"
7 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "third_party/skia/include/core/SkBitmap.h"
8 10
9 namespace cc { 11 namespace cc {
10 12
11 scoped_refptr<UIResourceBitmap> 13 uint8_t* UIResourceBitmap::GetPixels() const {
12 UIResourceBitmap::Create(uint8_t* pixels, 14 if (!pixel_ref_)
13 UIResourceFormat format, 15 return NULL;
14 gfx::Size size) { 16 return static_cast<uint8_t*>(pixel_ref_->pixels());
15 scoped_refptr<UIResourceBitmap> ret = new UIResourceBitmap();
16 ret->pixels_ = scoped_ptr<uint8_t[]>(pixels);
17 ret->format_ = format;
18 ret->size_ = size;
19
20 return ret;
21 } 17 }
22 18
23 UIResourceBitmap::UIResourceBitmap() {} 19 void UIResourceBitmap::Create(const skia::RefPtr<SkPixelRef>& pixel_ref,
20 UIResourceFormat format,
21 gfx::Size size) {
22 DCHECK(size.width() && size.height());
23 DCHECK(pixel_ref && pixel_ref->isImmutable());
24 format_ = format;
25 size_ = size;
26 pixel_ref_ = pixel_ref;
27 }
28
29 UIResourceBitmap::UIResourceBitmap(const SkBitmap& skbitmap) {
30 DCHECK_EQ(skbitmap.config(), SkBitmap::kARGB_8888_Config);
31 skia::RefPtr<SkPixelRef> pixel_ref;
32 SkBitmap skbitmap_copy;
33 if (skbitmap.isImmutable()) {
34 pixel_ref = skia::SharePtr(skbitmap.pixelRef());
35 } else {
36 skbitmap.copyTo(&skbitmap_copy, skbitmap.config());
37 skbitmap_copy.setImmutable();
38 pixel_ref = skia::SharePtr(skbitmap_copy.pixelRef());
39 }
40
41 Create(pixel_ref,
42 UIResourceBitmap::RGBA8,
43 gfx::Size(skbitmap.width(), skbitmap.height()));
44 }
45
46 UIResourceBitmap::UIResourceBitmap(const UIResourceBitmap& src)
47 : format_(INVALID_FORMAT), size_(gfx::Size()) {
48 (*this) = src;
49 }
50
51 UIResourceBitmap& UIResourceBitmap::operator=(const UIResourceBitmap& src) {
52 format_ = src.format_;
53 size_ = src.size_;
54 pixel_ref_ = src.pixel_ref_;
55 return *this;
56 }
57
58 UIResourceBitmap::UIResourceBitmap()
59 : format_(INVALID_FORMAT), size_(gfx::Size()) {}
60
24 UIResourceBitmap::~UIResourceBitmap() {} 61 UIResourceBitmap::~UIResourceBitmap() {}
25 62
26 } // namespace cc 63 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698