This repository was archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathD2DRenderContext.cpp
142 lines (117 loc) · 2.84 KB
/
D2DRenderContext.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#include "pch.h"
#include "D2DRenderContext.h"
#include "D2DShape.h"
#include "D2DSolidColorBrush.h"
namespace Telerik
{
namespace UI
{
namespace Drawing
{
D2DRenderContext::D2DRenderContext(void)
{
}
void D2DRenderContext::Initialize(D3DResources^ resources, Size dipSize, UINT width, UINT height, float dpi)
{
this->dipSize = dipSize;
this->pixelWidth = width;
this->pixelHeight = height;
this->dpi = dpi;
HRESULT result;
result = D2D1CreateFactory(D2D1_FACTORY_TYPE_MULTI_THREADED, __uuidof(ID2D1Factory1), &this->factory);
if(!SUCCEEDED(result))
{
throw;
}
// create D2D device
result = this->factory.Get()->CreateDevice(resources->DXGIDevice.Get(), &this->device);
if(!SUCCEEDED(result))
{
throw;
}
// TODO: Check why D2D1_DEVICE_CONTEXT_OPTIONS_ENABLE_MULTITHREADED_OPTIMIZATIONS is not working as expected
result = this->device->CreateDeviceContext(D2D1_DEVICE_CONTEXT_OPTIONS_ENABLE_MULTITHREADED_OPTIMIZATIONS, &this->context);
if(!SUCCEEDED(result))
{
throw;
}
this->factory->CreateStrokeStyle(
D2D1::StrokeStyleProperties(D2D1_CAP_STYLE_FLAT, D2D1_CAP_STYLE_FLAT, D2D1_CAP_STYLE_FLAT, D2D1_LINE_JOIN_ROUND),
nullptr,
0,
&this->strokeStyle
);
this->context->SetDpi(dpi, dpi);
result = DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory1), &this->writeFactory);
if(!SUCCEEDED(result))
{
throw;
}
}
void D2DRenderContext::Uninitialize()
{
while (!this->transforms.empty())
{
this->transforms.pop();
}
this->bitmap.Reset();
this->device.Reset();
this->factory.Reset();
this->writeFactory.Reset();
this->strokeStyle.Reset();
}
void D2DRenderContext::BeginDraw()
{
if(this->canDraw)
{
return;
}
this->context->BeginDraw();
this->canDraw = true;
this->Clear();
}
void D2DRenderContext::EndDraw()
{
if(!this->canDraw)
{
return;
}
HRESULT hr;
hr = this->context->EndDraw();
if(!SUCCEEDED(hr))
{
throw;
}
this->canDraw = false;
}
void D2DRenderContext::Clear()
{
if(this->canDraw)
{
this->context->Clear(D2D1::ColorF(0, 0, 0, 0));
}
}
void D2DRenderContext::PushTransform(D2D1::Matrix3x2F matrix)
{
if(!this->canDraw)
{
return;
}
D2D1::Matrix3x2F currentTransform;
this->context->GetTransform(¤tTransform);
this->transforms.push(currentTransform);
this->context->SetTransform(currentTransform * matrix);
}
void D2DRenderContext::PopTransform()
{
if(!this->canDraw || this->transforms.size() == 0)
{
return;
}
D2D1::Matrix3x2F lastTransform = this->transforms.top();
this->transforms.pop();
this->context->SetTransform(lastTransform);
}
}
}
}