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

Side by Side Diff: ui/views/controls/button/label_button_border.cc

Issue 2358803007: Refactor LabelButtonAssetBorder to avoid SkArithmeticMode (Closed)
Patch Set: use kPlus xfermode Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ui/views/controls/button/label_button_border.h" 5 #include "ui/views/controls/button/label_button_border.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/skia/include/core/SkPaint.h" 8 #include "third_party/skia/include/core/SkPaint.h"
9 #include "third_party/skia/include/effects/SkArithmeticMode.h" 9 #include "third_party/skia/include/effects/SkArithmeticMode.h"
10 #include "ui/base/resource/resource_bundle.h" 10 #include "ui/base/resource/resource_bundle.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 void LabelButtonAssetBorder::Paint(const View& view, gfx::Canvas* canvas) { 132 void LabelButtonAssetBorder::Paint(const View& view, gfx::Canvas* canvas) {
133 const NativeThemeDelegate* native_theme_delegate = 133 const NativeThemeDelegate* native_theme_delegate =
134 static_cast<const LabelButton*>(&view); 134 static_cast<const LabelButton*>(&view);
135 gfx::Rect rect(native_theme_delegate->GetThemePaintRect()); 135 gfx::Rect rect(native_theme_delegate->GetThemePaintRect());
136 ui::NativeTheme::ExtraParams extra; 136 ui::NativeTheme::ExtraParams extra;
137 const gfx::Animation* animation = native_theme_delegate->GetThemeAnimation(); 137 const gfx::Animation* animation = native_theme_delegate->GetThemeAnimation();
138 ui::NativeTheme::State state = native_theme_delegate->GetThemeState(&extra); 138 ui::NativeTheme::State state = native_theme_delegate->GetThemeState(&extra);
139 139
140 if (animation && animation->is_animating()) { 140 if (animation && animation->is_animating()) {
141 // Linearly interpolate background and foreground painters during animation. 141 // Linearly interpolate background and foreground painters during animation.
142 uint8_t fg_alpha =
143 SkToU8(SkScalarRoundToInt(0xff * animation->GetCurrentValue()));
sky 2016/09/29 16:05:17 CurrentValueBetween(0, 255)?
f(malita) 2016/09/29 16:35:28 Done.
144
142 const SkRect sk_rect = gfx::RectToSkRect(rect); 145 const SkRect sk_rect = gfx::RectToSkRect(rect);
143 canvas->sk_canvas()->saveLayer(&sk_rect, NULL); 146 canvas->sk_canvas()->saveLayer(&sk_rect, nullptr);
147
148 // First, modulate the background by 1 - alpha.
149 canvas->sk_canvas()->saveLayerAlpha(&sk_rect, 0xff - fg_alpha);
144 state = native_theme_delegate->GetBackgroundThemeState(&extra); 150 state = native_theme_delegate->GetBackgroundThemeState(&extra);
145 PaintHelper(this, canvas, state, rect, extra); 151 PaintHelper(this, canvas, state, rect, extra);
152 canvas->sk_canvas()->restore();
sky 2016/09/29 16:05:17 All these raw save/restore make me nervous as they
f(malita) 2016/09/29 16:35:28 We have SkAutoCanvasRestore, which restores to the
146 153
154 // Then modulate the foreground by alpha, and blend using kPlus_Mode.
147 SkPaint paint; 155 SkPaint paint;
148 double scale = animation->GetCurrentValue(); 156 paint.setAlpha(fg_alpha);
149 paint.setXfermode(SkArithmeticMode::Make(0.0f, scale, 1.0 - scale, 0.0)); 157 paint.setXfermodeMode(SkXfermode::kPlus_Mode);
150 canvas->sk_canvas()->saveLayer(&sk_rect, &paint); 158 canvas->sk_canvas()->saveLayer(&sk_rect, &paint);
151 state = native_theme_delegate->GetForegroundThemeState(&extra); 159 state = native_theme_delegate->GetForegroundThemeState(&extra);
152 PaintHelper(this, canvas, state, rect, extra); 160 PaintHelper(this, canvas, state, rect, extra);
153 canvas->sk_canvas()->restore(); 161 canvas->sk_canvas()->restore();
154 162
155 canvas->sk_canvas()->restore(); 163 canvas->sk_canvas()->restore();
156 } else { 164 } else {
157 PaintHelper(this, canvas, state, rect, extra); 165 PaintHelper(this, canvas, state, rect, extra);
158 } 166 }
159 } 167 }
(...skipping 14 matching lines...) Expand all
174 return painters_[focused ? 1 : 0][state].get(); 182 return painters_[focused ? 1 : 0][state].get();
175 } 183 }
176 184
177 void LabelButtonAssetBorder::SetPainter(bool focused, 185 void LabelButtonAssetBorder::SetPainter(bool focused,
178 Button::ButtonState state, 186 Button::ButtonState state,
179 Painter* painter) { 187 Painter* painter) {
180 painters_[focused ? 1 : 0][state].reset(painter); 188 painters_[focused ? 1 : 0][state].reset(painter);
181 } 189 }
182 190
183 } // namespace views 191 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698