Bug 935297 - Followup to fix build, add ToPoint helper

This commit is contained in:
Matt Woodrow 2013-11-07 22:50:10 +13:00
Родитель e4b4010ae6
Коммит 61cf03dd1b
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -143,6 +143,11 @@ static inline Matrix ToMatrix(const D2D1_MATRIX_3X2_F &aTransform)
aTransform._31, aTransform._32);
}
static inline Point ToPoint(const D2D1_POINT_2F &aPoint)
{
return Point(aPoint.x, aPoint.y);
}
static inline DXGI_FORMAT DXGIFormat(SurfaceFormat aFormat)
{
switch (aFormat) {