aboutsummaryrefslogtreecommitdiff
path: root/src/win/graph/win_font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/win/graph/win_font.cpp')
-rw-r--r--src/win/graph/win_font.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/win/graph/win_font.cpp b/src/win/graph/win_font.cpp
index 96983d3e..a359d73e 100644
--- a/src/win/graph/win_font.cpp
+++ b/src/win/graph/win_font.cpp
@@ -1,22 +1,23 @@
#include "cru/win/graph/win_font.hpp"
#include "cru/win/exception.hpp"
-#include "cru/win/graph/graph_manager.hpp"
+#include "cru/win/graph/win_native_factory.hpp"
#include <array>
#include <cassert>
#include <utility>
namespace cru::win::graph {
-WinFontDescriptor::WinFontDescriptor(GraphManager* graph_manager,
+WinFontDescriptor::WinFontDescriptor(IWinNativeFactory* factory,
const std::wstring_view& font_family,
float font_size) {
- assert(graph_manager);
+ assert(factory);
std::array<wchar_t, LOCALE_NAME_MAX_LENGTH> buffer;
- if (!::GetUserDefaultLocaleName(buffer.data(), static_cast<int>(buffer.size())))
+ if (!::GetUserDefaultLocaleName(buffer.data(),
+ static_cast<int>(buffer.size())))
throw Win32Error(::GetLastError(), "Failed to get locale.");
- ThrowIfFailed(graph_manager->GetDWriteFactory()->CreateTextFormat(
+ ThrowIfFailed(factory->GetDWriteFactory()->CreateTextFormat(
font_family.data(), nullptr, DWRITE_FONT_WEIGHT_NORMAL,
DWRITE_FONT_STYLE_NORMAL, DWRITE_FONT_STRETCH_NORMAL, font_size,
buffer.data(), &text_format_));