blob: f2e29c22bae359da72809df4e8433124beb1657c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#pragma once
#include "win_pre_config.hpp"
#include "../basic_types.hpp"
#include "cru/common/base.hpp"
namespace cru::platform::win {
class WindowRenderTarget;
class GraphManager final : public Object {
public:
GraphManager();
GraphManager(const GraphManager& other) = delete;
GraphManager(GraphManager&& other) = delete;
GraphManager& operator=(const GraphManager& other) = delete;
GraphManager& operator=(GraphManager&& other) = delete;
~GraphManager() override = default;
public:
ID2D1Factory1* GetD2D1Factory() const { return d2d1_factory_.Get(); }
ID2D1DeviceContext* GetD2D1DeviceContext() const {
return d2d1_device_context_.Get();
}
ID3D11Device* GetD3D11Device() const { return d3d11_device_.Get(); }
IDXGIFactory2* GetDxgiFactory() const { return dxgi_factory_.Get(); }
IDWriteFactory* GetDWriteFactory() const { return dwrite_factory_.Get(); }
IDWriteFontCollection* GetSystemFontCollection() const {
return dwrite_system_font_collection_.Get();
}
private:
Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
Microsoft::WRL::ComPtr<ID2D1Factory1> d2d1_factory_;
Microsoft::WRL::ComPtr<ID2D1DeviceContext> d2d1_device_context_;
Microsoft::WRL::ComPtr<IDXGIFactory2> dxgi_factory_;
Microsoft::WRL::ComPtr<IDWriteFactory> dwrite_factory_;
Microsoft::WRL::ComPtr<IDWriteFontCollection> dwrite_system_font_collection_;
};
} // namespace cru::platform::win
|