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

Unified Diff: core/cross/cairo/layer.cc

Issue 6255003: O2D:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/cross/cairo/layer.h ('k') | core/cross/cairo/pattern.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/cross/cairo/layer.cc
===================================================================
--- core/cross/cairo/layer.cc (revision 71475)
+++ core/cross/cairo/layer.cc (working copy)
@@ -50,14 +50,16 @@
Layer::Layer(ServiceLocator* service_locator)
: ObjectBase(service_locator),
- alpha_(1.0),
+ visible_(true),
+ alpha_(0.0),
x_(0),
y_(0),
z_(0),
width_(0),
height_(0),
scale_x_(1.0),
- scale_y_(1.0) {
+ scale_y_(1.0),
+ paint_operator_(BLEND) {
DLOG(INFO) << "Create Layer";
Renderer* renderer = service_locator->GetService<Renderer>();
RendererCairo* renderer_cairo = down_cast<RendererCairo*>(renderer);
« no previous file with comments | « core/cross/cairo/layer.h ('k') | core/cross/cairo/pattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698