diff options
author | crupest <crupest@outlook.com> | 2019-06-27 00:18:48 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-06-27 00:18:48 +0800 |
commit | baa7cf141b8121473edceae16c1a20a6d47bd202 (patch) | |
tree | 9349633a9d0bc286fe29f480bd70e4c2ad1f3075 /src/win/graph/win_brush.cpp | |
parent | f404a3b2eb7bb9865d0c6f938538899996a53d8c (diff) | |
download | cru-baa7cf141b8121473edceae16c1a20a6d47bd202.tar.gz cru-baa7cf141b8121473edceae16c1a20a6d47bd202.tar.bz2 cru-baa7cf141b8121473edceae16c1a20a6d47bd202.zip |
......
Diffstat (limited to 'src/win/graph/win_brush.cpp')
-rw-r--r-- | src/win/graph/win_brush.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/win/graph/win_brush.cpp b/src/win/graph/win_brush.cpp deleted file mode 100644 index 0c783366..00000000 --- a/src/win/graph/win_brush.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include "cru/win/graph/win_brush.hpp" - -#include "cru/win/exception.hpp" -#include "cru/win/graph/win_native_factory.hpp" -#include "cru/win/graph/util/convert_util.hpp" - -#include <cassert> - -namespace cru::win::graph { -WinSolidColorBrush::WinSolidColorBrush(IWinNativeFactory* factory, - const ui::Color& color) { - assert(factory); - ThrowIfFailed(factory->GetD2D1DeviceContext()->CreateSolidColorBrush( - util::Convert(color), &brush_)); -} - -ui::Color WinSolidColorBrush::GetColor() { - return util::Convert(brush_->GetColor()); -} -void WinSolidColorBrush::SetColor(const ui::Color& color) { - brush_->SetColor(util::Convert(color)); -} -} // namespace cru::win::graph |