1 | // LAF Gfx Library |
---|---|
2 | // Copyright (c) 2020 Igara Studio S.A. |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef GFX_MATRIX_H_INCLUDED |
8 | #define GFX_MATRIX_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #if defined(LAF_SKIA) |
12 | #include "gfx/matrix_skia.h" |
13 | #else |
14 | #include "gfx/matrix_none.h" |
15 | #endif |
16 | |
17 | #endif |
18 |