diff options
author | Ben Avison <bavison@riscosopen.org> | 2014-01-15 17:18:38 +0000 |
---|---|---|
committer | Ben Avison <bavison@riscosopen.org> | 2015-01-26 14:19:52 +0000 |
commit | c8a899ae026c4ac35340100163c98697cbd39931 (patch) | |
tree | a4860ac8c0e7e4f37cb23f79806a6b91e9bfaa44 /project/VS2010Express/XBMC.vcxproj | |
parent | 3b29905cc65241cdcc6f3a738a9f6517504b4646 (diff) |
Add a cache of font glyph bounding box vertices.
This is implemented as a template because ultimately we will key on different
parameters and store values of different types, depending upon whether we
have a GLES or non-GLES backend, and for GLES, whether or not the currently
applicable transformation matrices permit the use of hardware clipping.
Diffstat (limited to 'project/VS2010Express/XBMC.vcxproj')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 31167e7d7b..ddadac0734 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -434,6 +434,7 @@ <ClCompile Include="..\..\xbmc\guilib\GUIFadeLabelControl.cpp" /> <ClCompile Include="..\..\xbmc\guilib\GUIFixedListContainer.cpp" /> <ClCompile Include="..\..\xbmc\guilib\GUIFont.cpp" /> + <ClCompile Include="..\..\xbmc\guilib\GUIFontCache.cpp" /> <ClCompile Include="..\..\xbmc\guilib\GUIFontManager.cpp" /> <ClCompile Include="..\..\xbmc\guilib\GUIFontTTF.cpp" /> <ClCompile Include="..\..\xbmc\guilib\GUIFontTTFDX.cpp" /> @@ -1744,6 +1745,7 @@ <ClInclude Include="..\..\xbmc\guilib\GUIFadeLabelControl.h" /> <ClInclude Include="..\..\xbmc\guilib\GUIFixedListContainer.h" /> <ClInclude Include="..\..\xbmc\guilib\GUIFont.h" /> + <ClInclude Include="..\..\xbmc\guilib\GUIFontCache.h" /> <ClInclude Include="..\..\xbmc\guilib\GUIFontManager.h" /> <ClInclude Include="..\..\xbmc\guilib\GUIFontTTF.h" /> <ClInclude Include="..\..\xbmc\guilib\GUIFontTTFDX.h" /> @@ -2541,4 +2543,4 @@ </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project>
\ No newline at end of file +</Project> |