DXGL r117 - Code Review

Jump to navigation Jump to search
Repository:DXGL
Revision:r116‎ | r117 | r118 >
Date:00:31, 8 March 2012
Author:admin
Status:new
Tags:
Comment:
Support Windows 8 High Contrast themes
Modified paths:
  • /dxglcfg/dxglcfg.vcxproj (modified) (history)
  • /dxglcfg/xp.manifest (modified) (history)
  • /dxgltest/dxgltest.vcxproj (modified) (history)
  • /dxgltest/xp.manifest (modified) (history)

Diff [purge]

Index: dxglcfg/dxglcfg.vcxproj
@@ -64,15 +64,19 @@
6565 <PropertyGroup Label="UserMacros" />
6666 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
6767 <LinkIncremental>true</LinkIncremental>
 68+ <GenerateManifest>false</GenerateManifest>
6869 </PropertyGroup>
6970 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug no DXGL|Win32'">
7071 <LinkIncremental>true</LinkIncremental>
 72+ <GenerateManifest>false</GenerateManifest>
7173 </PropertyGroup>
7274 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
7375 <LinkIncremental>false</LinkIncremental>
 76+ <GenerateManifest>false</GenerateManifest>
7477 </PropertyGroup>
7578 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release no DXGL|Win32'">
7679 <LinkIncremental>false</LinkIncremental>
 80+ <GenerateManifest>false</GenerateManifest>
7781 </PropertyGroup>
7882 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
7983 <ClCompile>
Index: dxglcfg/xp.manifest
@@ -6,7 +6,7 @@
77 name="WilliamFeely.DXGL.DXGLCfg"
88 type="win32"
99 />
10 -<description>Your application description here.</description>
 10+<description>DXGL Configuration Program</description>
1111 <dependency>
1212 <dependentAssembly>
1313 <assemblyIdentity
@@ -19,4 +19,11 @@
2020 />
2121 </dependentAssembly>
2222 </dependency>
 23+ <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
 24+ <application>
 25+ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
 26+ <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
 27+ <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
 28+ </application>
 29+ </compatibility>
2330 </assembly>
\ No newline at end of file
Index: dxgltest/dxgltest.vcxproj
@@ -69,6 +69,7 @@
7070 <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
7171 <RunCodeAnalysis>false</RunCodeAnalysis>
7272 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
 73+ <GenerateManifest>false</GenerateManifest>
7374 </PropertyGroup>
7475 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug no DXGL|Win32'">
7576 <LinkIncremental>true</LinkIncremental>
@@ -77,6 +78,7 @@
7879 <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
7980 <RunCodeAnalysis>false</RunCodeAnalysis>
8081 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
 82+ <GenerateManifest>false</GenerateManifest>
8183 </PropertyGroup>
8284 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
8385 <LinkIncremental>false</LinkIncremental>
@@ -83,6 +85,7 @@
8486 <IncludePath>$(WXWIN)\include;$(WXWIN)\lib\vc_lib\mswu;$(IncludePath)</IncludePath>
8587 <LibraryPath>$(WXWIN)\lib\vc_lib;$(DXSDK_DIR)lib\x86;$(LibraryPath)</LibraryPath>
8688 <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
 89+ <GenerateManifest>false</GenerateManifest>
8790 </PropertyGroup>
8891 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release no DXGL|Win32'">
8992 <LinkIncremental>false</LinkIncremental>
@@ -89,6 +92,7 @@
9093 <IncludePath>$(WXWIN)\include;$(WXWIN)\lib\vc_lib\mswu;$(IncludePath)</IncludePath>
9194 <LibraryPath>$(WXWIN)\lib\vc_lib;$(DXSDK_DIR)lib\x86;$(LibraryPath)</LibraryPath>
9295 <SourcePath>$(WXWIN)\src;$(SourcePath)</SourcePath>
 96+ <GenerateManifest>false</GenerateManifest>
9397 </PropertyGroup>
9498 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
9599 <ClCompile>
Index: dxgltest/xp.manifest
@@ -6,7 +6,7 @@
77 name="WilliamFeely.DXGL.DXGLTest"
88 type="win32"
99 />
10 -<description>Your application description here.</description>
 10+<description>DXGL Test Application</description>
1111 <dependency>
1212 <dependentAssembly>
1313 <assemblyIdentity
@@ -19,4 +19,11 @@
2020 />
2121 </dependentAssembly>
2222 </dependency>
 23+ <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
 24+ <application>
 25+ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
 26+ <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
 27+ <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
 28+ </application>
 29+ </compatibility>
2330 </assembly>
\ No newline at end of file