1 | // LAF OS Library |
---|---|
2 | // Copyright (C) 2020 Igara Studio S.A. |
3 | // Copyright (C) 2012-2017 David Capello |
4 | // |
5 | // This file is released under the terms of the MIT license. |
6 | // Read LICENSE.txt for more information. |
7 | |
8 | #ifdef HAVE_CONFIG_H |
9 | #include "config.h" |
10 | #endif |
11 | |
12 | #include "os/skia/skia_system.h" |
13 | |
14 | namespace os { |
15 | |
16 | System* make_system_impl() { |
17 | return new SkiaSystem; |
18 | } |
19 | |
20 | void error_message(const char* msg) |
21 | { |
22 | fputs(msg, stderr); |
23 | // TODO |
24 | } |
25 | |
26 | } // namespace os |
27 |