blob: eb4ce84ebc02081ce0b9fd32bd349e177853d655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "cru/platform/graphics/web_canvas/WebCanvasGeometry.h"
#include "cru/platform/graphics/web_canvas/WebCanvasGraphicsFactory.h"
#include "cru/platform/graphics/web_canvas/WebCanvasResource.h"
#include "cru/platform/web/Js.h"
namespace cru::platform::graphics::web_canvas {
WebCanvasGeometryBuilder::WebCanvasGeometryBuilder(
WebCanvasGraphicsFactory* factory)
: WebCanvasResource(factory) {
path2d_ = web::js::Construct("Path2D");
}
} // namespace cru::platform::graphics::web_canvas
|