mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Gfx: Implement DWrite interfaces required for loading fonts
This commit is contained in:
parent
8c184a3dbb
commit
3827353c08
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include "CanvasD2D.h"
|
#include "CanvasD2D.h"
|
||||||
#include "TextFormatD2D.h"
|
#include "TextFormatD2D.h"
|
||||||
|
#include "Util/DWriteFontCollectionLoader.h"
|
||||||
#include "WICBitmapLockGDIP.h"
|
#include "WICBitmapLockGDIP.h"
|
||||||
#include "../../Library/Litestep.h"
|
#include "../../Library/Litestep.h"
|
||||||
|
|
||||||
@ -106,6 +107,9 @@ bool CanvasD2D::Initialize()
|
|||||||
|
|
||||||
hr = c_DWFactory->GetGdiInterop(&c_DWGDIInterop);
|
hr = c_DWFactory->GetGdiInterop(&c_DWGDIInterop);
|
||||||
if (FAILED(hr)) return false;
|
if (FAILED(hr)) return false;
|
||||||
|
|
||||||
|
hr = c_DWFactory->RegisterFontCollectionLoader(Util::DWriteFontCollectionLoader::GetInstance());
|
||||||
|
if (FAILED(hr)) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -119,6 +123,8 @@ void CanvasD2D::Finalize()
|
|||||||
SafeRelease(&c_D2DFactory);
|
SafeRelease(&c_D2DFactory);
|
||||||
SafeRelease(&c_WICFactory);
|
SafeRelease(&c_WICFactory);
|
||||||
SafeRelease(&c_DWGDIInterop);
|
SafeRelease(&c_DWGDIInterop);
|
||||||
|
|
||||||
|
c_DWFactory->UnregisterFontCollectionLoader(Util::DWriteFontCollectionLoader::GetInstance());
|
||||||
SafeRelease(&c_DWFactory);
|
SafeRelease(&c_DWFactory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,7 @@ public:
|
|||||||
virtual void FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& brush) override;
|
virtual void FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& brush) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
friend class FontCollectionD2D;
|
||||||
friend class TextFormatD2D;
|
friend class TextFormatD2D;
|
||||||
|
|
||||||
CanvasD2D(const CanvasD2D& other) {}
|
CanvasD2D(const CanvasD2D& other) {}
|
||||||
|
@ -17,22 +17,63 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "FontCollectionD2D.h"
|
#include "FontCollectionD2D.h"
|
||||||
|
#include "CanvasD2D.h"
|
||||||
|
#include "Util/DWriteFontCollectionLoader.h"
|
||||||
#include <GdiPlus.h>
|
#include <GdiPlus.h>
|
||||||
|
|
||||||
namespace Gfx {
|
namespace Gfx {
|
||||||
|
|
||||||
FontCollectionD2D::FontCollectionD2D() : FontCollection()
|
FontCollectionD2D::FontCollectionD2D() : FontCollection(),
|
||||||
|
m_Collection()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
FontCollectionD2D::~FontCollectionD2D()
|
FontCollectionD2D::~FontCollectionD2D()
|
||||||
{
|
{
|
||||||
|
Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
void FontCollectionD2D::Dispose()
|
||||||
|
{
|
||||||
|
for (IDWriteFontFile* fileReference : m_FileReferences)
|
||||||
|
{
|
||||||
|
fileReference->Release();
|
||||||
|
}
|
||||||
|
m_FileReferences.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool FontCollectionD2D::InitializeCollection()
|
||||||
|
{
|
||||||
|
if (!m_Collection)
|
||||||
|
{
|
||||||
|
auto loader = Util::DWriteFontCollectionLoader::GetInstance();
|
||||||
|
CanvasD2D::c_DWFactory->CreateCustomFontCollection(
|
||||||
|
loader, &m_FileReferences, sizeof(m_FileReferences), &m_Collection);
|
||||||
|
}
|
||||||
|
|
||||||
|
return m_Collection;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FontCollectionD2D::AddFile(const WCHAR* file)
|
bool FontCollectionD2D::AddFile(const WCHAR* file)
|
||||||
{
|
{
|
||||||
// FIXME.
|
// If DirecWrite font collection already exists, we need to destroy it as fonts cannot be added to
|
||||||
return true;
|
// an existing collection. The collection will be recreated on the next call to
|
||||||
|
// InitializeCollection().
|
||||||
|
if (m_Collection)
|
||||||
|
{
|
||||||
|
m_Collection->Release();
|
||||||
|
m_Collection = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
IDWriteFontFile* fileReference;
|
||||||
|
HRESULT hr = CanvasD2D::c_DWFactory->CreateFontFileReference(file, nullptr, &fileReference);
|
||||||
|
if (SUCCEEDED(hr))
|
||||||
|
{
|
||||||
|
m_FileReferences.push_back(fileReference);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Gfx
|
} // namespace Gfx
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#define RM_GFX_FONTCOLLECTIOND2D_H_
|
#define RM_GFX_FONTCOLLECTIOND2D_H_
|
||||||
|
|
||||||
#include "FontCollection.h"
|
#include "FontCollection.h"
|
||||||
|
#include <vector>
|
||||||
|
#include <dwrite.h>
|
||||||
|
|
||||||
namespace Gfx {
|
namespace Gfx {
|
||||||
|
|
||||||
@ -41,6 +43,11 @@ private:
|
|||||||
FontCollectionD2D(const FontCollectionD2D& other) {}
|
FontCollectionD2D(const FontCollectionD2D& other) {}
|
||||||
|
|
||||||
void Dispose();
|
void Dispose();
|
||||||
|
|
||||||
|
bool InitializeCollection();
|
||||||
|
|
||||||
|
std::vector<IDWriteFontFile*> m_FileReferences;
|
||||||
|
IDWriteFontCollection* m_Collection;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Gfx
|
} // namespace Gfx
|
||||||
|
67
Common/Gfx/Util/DWriteFontCollectionLoader.cpp
Normal file
67
Common/Gfx/Util/DWriteFontCollectionLoader.cpp
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2013 Birunthan Mohanathas
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "DWriteFontCollectionLoader.h"
|
||||||
|
#include "DWriteFontFileEnumerator.h"
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
namespace Gfx {
|
||||||
|
namespace Util {
|
||||||
|
|
||||||
|
DWriteFontCollectionLoader* DWriteFontCollectionLoader::GetInstance()
|
||||||
|
{
|
||||||
|
static DWriteFontCollectionLoader s_Instance;
|
||||||
|
return &s_Instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
ULONG STDMETHODCALLTYPE DWriteFontCollectionLoader::AddRef()
|
||||||
|
{
|
||||||
|
// This is a singleton class so return a dummy value.
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
ULONG STDMETHODCALLTYPE DWriteFontCollectionLoader::Release()
|
||||||
|
{
|
||||||
|
// This is a singleton class so return a dummy value.
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT STDMETHODCALLTYPE DWriteFontCollectionLoader::QueryInterface(IID const& riid, void** ppvObject)
|
||||||
|
{
|
||||||
|
if (riid == IID_IUnknown ||
|
||||||
|
riid == __uuidof(IDWriteFontCollectionLoader))
|
||||||
|
{
|
||||||
|
*ppvObject = this;
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
*ppvObject = NULL;
|
||||||
|
return E_NOINTERFACE;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT STDMETHODCALLTYPE DWriteFontCollectionLoader::CreateEnumeratorFromKey(
|
||||||
|
IDWriteFactory* factory, void const* collectionKey, UINT32 collectionKeySize,
|
||||||
|
IDWriteFontFileEnumerator** fontFileEnumerator)
|
||||||
|
{
|
||||||
|
*fontFileEnumerator = new DWriteFontFileEnumerator(
|
||||||
|
*(const std::vector<IDWriteFontFile*>*)collectionKey);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Util
|
||||||
|
} // namespace Gfx
|
53
Common/Gfx/Util/DWriteFontCollectionLoader.h
Normal file
53
Common/Gfx/Util/DWriteFontCollectionLoader.h
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2013 Birunthan Mohanathas
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef RM_GFX_UTIL_DWRITEFONTCOLLECTIONLOADER_H_
|
||||||
|
#define RM_GFX_UTIL_DWRITEFONTCOLLECTIONLOADER_H_
|
||||||
|
|
||||||
|
#include <dwrite.h>
|
||||||
|
|
||||||
|
namespace Gfx {
|
||||||
|
namespace Util {
|
||||||
|
|
||||||
|
// Implements the IDWriteFontCollectionLoader interface as a singleton object. When
|
||||||
|
// CreateEnumeratorFromKey is called, a new DWriteFontFileEnumerator object is created using
|
||||||
|
// |fontCollectionKey| (which is assumed to be a pointer to std::vector<IDWriteFontFile*>).
|
||||||
|
class DWriteFontCollectionLoader : public IDWriteFontCollectionLoader
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static DWriteFontCollectionLoader* GetInstance();
|
||||||
|
|
||||||
|
// IUnknown
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID uuid, void** object) override;
|
||||||
|
virtual ULONG STDMETHODCALLTYPE AddRef() override;
|
||||||
|
virtual ULONG STDMETHODCALLTYPE Release() override;
|
||||||
|
|
||||||
|
// IFontCollectionLoader
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateEnumeratorFromKey(
|
||||||
|
IDWriteFactory* factory, void const* fontCollectionKey, UINT32 fontCollectionKeySize,
|
||||||
|
IDWriteFontFileEnumerator** fontFileEnumerator) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
DWriteFontCollectionLoader() {}
|
||||||
|
DWriteFontCollectionLoader(const DWriteFontCollectionLoader& other) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Util
|
||||||
|
} // namespace Gfx
|
||||||
|
|
||||||
|
#endif
|
77
Common/Gfx/Util/DWriteFontFileEnumerator.cpp
Normal file
77
Common/Gfx/Util/DWriteFontFileEnumerator.cpp
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2013 Birunthan Mohanathas
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "DWriteFontFileEnumerator.h"
|
||||||
|
|
||||||
|
namespace Gfx {
|
||||||
|
namespace Util {
|
||||||
|
|
||||||
|
DWriteFontFileEnumerator::DWriteFontFileEnumerator(const std::vector<IDWriteFontFile*>& fontFiles) :
|
||||||
|
m_RefCount(1),
|
||||||
|
m_FontFiles(fontFiles),
|
||||||
|
m_CurrentFontFileIndex(-1)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ULONG STDMETHODCALLTYPE DWriteFontFileEnumerator::AddRef()
|
||||||
|
{
|
||||||
|
++m_RefCount;
|
||||||
|
return m_RefCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
ULONG STDMETHODCALLTYPE DWriteFontFileEnumerator::Release()
|
||||||
|
{
|
||||||
|
--m_RefCount;
|
||||||
|
if (m_RefCount == 0)
|
||||||
|
{
|
||||||
|
delete this;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return m_RefCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT STDMETHODCALLTYPE DWriteFontFileEnumerator::QueryInterface(IID const& riid, void** ppvObject)
|
||||||
|
{
|
||||||
|
if (riid == IID_IUnknown ||
|
||||||
|
riid == __uuidof(IDWriteFontFileEnumerator))
|
||||||
|
{
|
||||||
|
*ppvObject = this;
|
||||||
|
AddRef();
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
*ppvObject = NULL;
|
||||||
|
return E_NOINTERFACE;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT STDMETHODCALLTYPE DWriteFontFileEnumerator::MoveNext(BOOL* hasCurrentFile)
|
||||||
|
{
|
||||||
|
*hasCurrentFile = (++m_CurrentFontFileIndex < m_FontFiles.size());
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT STDMETHODCALLTYPE DWriteFontFileEnumerator::GetCurrentFontFile(IDWriteFontFile** fontFile)
|
||||||
|
{
|
||||||
|
IDWriteFontFile* currentFontFile = m_FontFiles[m_CurrentFontFileIndex];
|
||||||
|
currentFontFile->AddRef();
|
||||||
|
*fontFile = currentFontFile;
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Util
|
||||||
|
} // namespace Gfx
|
56
Common/Gfx/Util/DWriteFontFileEnumerator.h
Normal file
56
Common/Gfx/Util/DWriteFontFileEnumerator.h
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2013 Birunthan Mohanathas
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License
|
||||||
|
as published by the Free Software Foundation; either version 2
|
||||||
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef RM_GFX_UTIL_DWRITEFONTFILEENUMERATOR_H_
|
||||||
|
#define RM_GFX_UTIL_DWRITEFONTFILEENUMERATOR_H_
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
#include <dwrite.h>
|
||||||
|
|
||||||
|
namespace Gfx {
|
||||||
|
namespace Util {
|
||||||
|
|
||||||
|
// Implements IDWriteFontFileEnumerator by enumerating over std::vector<IDWriteFontFile*>.
|
||||||
|
class DWriteFontFileEnumerator : public IDWriteFontFileEnumerator
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DWriteFontFileEnumerator(const std::vector<IDWriteFontFile*>& fontFiles);
|
||||||
|
|
||||||
|
// IUnknown
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID uuid, void** object) override;
|
||||||
|
virtual ULONG STDMETHODCALLTYPE AddRef() override;
|
||||||
|
virtual ULONG STDMETHODCALLTYPE Release() override;
|
||||||
|
|
||||||
|
// IDWriteFontFileEnumerator
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE MoveNext(BOOL* hasCurrentFile) override;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetCurrentFontFile(IDWriteFontFile** currentFontFile) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
ULONG m_RefCount;
|
||||||
|
|
||||||
|
const std::vector<IDWriteFontFile*>& m_FontFiles;
|
||||||
|
|
||||||
|
// Current index of |m_FontFiles|. The type is int instead of size_t as it starts from -1 as
|
||||||
|
// required by IDWriteFontFileEnumerator.
|
||||||
|
int m_CurrentFontFileIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Util
|
||||||
|
} // namespace Gfx
|
||||||
|
|
||||||
|
#endif
|
@ -74,6 +74,8 @@
|
|||||||
<ClCompile Include="..\Common\Gfx\TextFormat.cpp" />
|
<ClCompile Include="..\Common\Gfx\TextFormat.cpp" />
|
||||||
<ClCompile Include="..\Common\Gfx\TextFormatD2D.cpp" />
|
<ClCompile Include="..\Common\Gfx\TextFormatD2D.cpp" />
|
||||||
<ClCompile Include="..\Common\Gfx\TextFormatGDIP.cpp" />
|
<ClCompile Include="..\Common\Gfx\TextFormatGDIP.cpp" />
|
||||||
|
<ClCompile Include="..\Common\Gfx\Util\DWriteFontCollectionLoader.cpp" />
|
||||||
|
<ClCompile Include="..\Common\Gfx\Util\DWriteFontFileEnumerator.cpp" />
|
||||||
<ClCompile Include="..\Common\Gfx\WICBitmapDIB.cpp" />
|
<ClCompile Include="..\Common\Gfx\WICBitmapDIB.cpp" />
|
||||||
<ClCompile Include="..\Common\Gfx\WICBitmapLockDIB.cpp" />
|
<ClCompile Include="..\Common\Gfx\WICBitmapLockDIB.cpp" />
|
||||||
<ClCompile Include="..\Common\Gfx\WICBitmapLockGDIP.cpp" />
|
<ClCompile Include="..\Common\Gfx\WICBitmapLockGDIP.cpp" />
|
||||||
@ -296,6 +298,8 @@
|
|||||||
<ClInclude Include="..\Common\Gfx\TextFormat.h" />
|
<ClInclude Include="..\Common\Gfx\TextFormat.h" />
|
||||||
<ClInclude Include="..\Common\Gfx\TextFormatD2D.h" />
|
<ClInclude Include="..\Common\Gfx\TextFormatD2D.h" />
|
||||||
<ClInclude Include="..\Common\Gfx\TextFormatGDIP.h" />
|
<ClInclude Include="..\Common\Gfx\TextFormatGDIP.h" />
|
||||||
|
<ClInclude Include="..\Common\Gfx\Util\DWriteFontCollectionLoader.h" />
|
||||||
|
<ClInclude Include="..\Common\Gfx\Util\DWriteFontFileEnumerator.h" />
|
||||||
<ClInclude Include="..\Common\Gfx\WICBitmapDIB.h" />
|
<ClInclude Include="..\Common\Gfx\WICBitmapDIB.h" />
|
||||||
<ClInclude Include="..\Common\Gfx\WICBitmapLockDIB.h" />
|
<ClInclude Include="..\Common\Gfx\WICBitmapLockDIB.h" />
|
||||||
<ClInclude Include="..\Common\Gfx\WICBitmapLockGDIP.h" />
|
<ClInclude Include="..\Common\Gfx\WICBitmapLockGDIP.h" />
|
||||||
|
@ -31,6 +31,9 @@
|
|||||||
<Filter Include="Common\Gfx">
|
<Filter Include="Common\Gfx">
|
||||||
<UniqueIdentifier>{26d9c191-5857-45c2-9e73-b0b88964728f}</UniqueIdentifier>
|
<UniqueIdentifier>{26d9c191-5857-45c2-9e73-b0b88964728f}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="Common\Gfx\Util">
|
||||||
|
<UniqueIdentifier>{acfbb3c5-84fd-471f-845c-f7d178d35c55}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="ConfigParser.cpp">
|
<ClCompile Include="ConfigParser.cpp">
|
||||||
@ -369,6 +372,12 @@
|
|||||||
<ClCompile Include="..\Common\Gfx\TextFormatGDIP.cpp">
|
<ClCompile Include="..\Common\Gfx\TextFormatGDIP.cpp">
|
||||||
<Filter>Common\Gfx</Filter>
|
<Filter>Common\Gfx</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\Common\Gfx\Util\DWriteFontFileEnumerator.cpp">
|
||||||
|
<Filter>Common\Gfx\Util</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\Common\Gfx\Util\DWriteFontCollectionLoader.cpp">
|
||||||
|
<Filter>Common\Gfx\Util</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\Common\Gfx\WICBitmapDIB.cpp">
|
<ClCompile Include="..\Common\Gfx\WICBitmapDIB.cpp">
|
||||||
<Filter>Common\Gfx</Filter>
|
<Filter>Common\Gfx</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -650,6 +659,12 @@
|
|||||||
<ClInclude Include="..\Common\Gfx\TextFormatGDIP.h">
|
<ClInclude Include="..\Common\Gfx\TextFormatGDIP.h">
|
||||||
<Filter>Common\Gfx</Filter>
|
<Filter>Common\Gfx</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\Common\Gfx\Util\DWriteFontFileEnumerator.h">
|
||||||
|
<Filter>Common\Gfx\Util</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\Common\Gfx\Util\DWriteFontCollectionLoader.h">
|
||||||
|
<Filter>Common\Gfx\Util</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\Common\Gfx\WICBitmapDIB.h">
|
<ClInclude Include="..\Common\Gfx\WICBitmapDIB.h">
|
||||||
<Filter>Common\Gfx</Filter>
|
<Filter>Common\Gfx</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user