diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2011-06-26 15:46:50 -0700 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2011-06-26 15:46:50 -0700 |
commit | a26c1d6cbe5a8c61cbce16fac0c227e7fdf5a3d4 (patch) | |
tree | dd4573cef1710472a96e4fe285a4a8b195ac4ea4 /project | |
parent | 3e51304538f163c33421f0f3441f160b6ac1a6dc (diff) | |
parent | d77b13a86d1fed9e9993c23af3f9ad2274c9f96f (diff) |
Merge pull request #222 from jmarshallnz/dimblackfix
Move Dim/Black screensavers to the window manager (fixes dirty-region rendering)
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 1a281aebee..236859a796 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1155,6 +1155,7 @@ <ClCompile Include="..\..\xbmc\windows\GUIWindowLoginScreen.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowPointer.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowScreensaver.cpp" /> + <ClCompile Include="..\..\xbmc\windows\GUIWindowScreensaverDim.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowStartup.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowSystemInfo.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowWeather.cpp" /> @@ -1995,6 +1996,7 @@ <ClInclude Include="..\..\xbmc\windows\GUIWindowLoginScreen.h" /> <ClInclude Include="..\..\xbmc\windows\GUIWindowPointer.h" /> <ClInclude Include="..\..\xbmc\windows\GUIWindowScreensaver.h" /> + <ClInclude Include="..\..\xbmc\windows\GUIWindowScreensaverDim.h" /> <ClInclude Include="..\..\xbmc\windows\GUIWindowStartup.h" /> <ClInclude Include="..\..\xbmc\windows\GUIWindowSystemInfo.h" /> <ClInclude Include="..\..\xbmc\windows\GUIWindowWeather.h" /> @@ -2057,4 +2059,4 @@ </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project>
\ No newline at end of file +</Project> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 7aaf2ad10d..f07d4de2bd 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2222,6 +2222,9 @@ <ClCompile Include="..\..\xbmc\windows\GUIWindowScreensaver.cpp"> <Filter>windows</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\windows\GUIWindowScreensaverDim.cpp"> + <Filter>windows</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\windows\GUIWindowStartup.cpp"> <Filter>windows</Filter> </ClCompile> @@ -4684,6 +4687,9 @@ <ClInclude Include="..\..\xbmc\windows\GUIWindowScreensaver.h"> <Filter>windows</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\windows\GUIWindowScreensaverDim.h"> + <Filter>windows</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\windows\GUIWindowStartup.h"> <Filter>windows</Filter> </ClInclude> @@ -4956,4 +4962,4 @@ <Filter>win32</Filter> </CustomBuild> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |