blob: aff4fbefb079855abee50bc51fde04af25e2cab1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "skia/ext/vector_canvas.h"
#include "skia/ext/vector_platform_device.h"
namespace skia {
VectorCanvas::VectorCanvas(cairo_t* context, int width, int height) {
bool initialized = initialize(context, width, height);
SkASSERT(initialized);
}
bool VectorCanvas::initialize(cairo_t* context, int width, int height) {
SkDevice* device = VectorPlatformDeviceFactory::CreateDevice(context, width,
height, true);
if (!device)
return false;
setDevice(device);
device->unref(); // was created with refcount 1, and setDevice also refs
return true;
}
} // namespace skia
|