Skip to content

Commit b2ecef5

Browse files
Yixin ZhuYixin Zhu
Yixin Zhu
authored and
Yixin Zhu
committed
add colorrecorder
1 parent c0bd7fa commit b2ecef5

11 files changed

+1298
-0
lines changed

Diff for: ColorRecorder/ColorBasics-D2D.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorBasics-D2D", "ColorBasics-D2D.vcxproj", "{25D068F1-4D71-4EC2-BA78-8F6C694101A5}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Release|x64 = Release|x64
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{25D068F1-4D71-4EC2-BA78-8F6C694101A5}.Debug|x64.ActiveCfg = Debug|x64
15+
{25D068F1-4D71-4EC2-BA78-8F6C694101A5}.Debug|x64.Build.0 = Debug|x64
16+
{25D068F1-4D71-4EC2-BA78-8F6C694101A5}.Release|x64.ActiveCfg = Release|x64
17+
{25D068F1-4D71-4EC2-BA78-8F6C694101A5}.Release|x64.Build.0 = Release|x64
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

Diff for: ColorRecorder/ColorBasics-D2D.vcxproj

+172
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|Win32">
13+
<Configuration>Release</Configuration>
14+
<Platform>Win32</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ClCompile Include="ColorBasics.cpp" />
23+
<ClCompile Include="ImageRenderer.cpp" />
24+
</ItemGroup>
25+
<ItemGroup>
26+
<Image Include="app.ico" />
27+
</ItemGroup>
28+
<ItemGroup>
29+
<ResourceCompile Include="ColorBasics.rc" />
30+
</ItemGroup>
31+
<ItemGroup>
32+
<ClInclude Include="ColorBasics.h" />
33+
<ClInclude Include="ImageRenderer.h" />
34+
<ClInclude Include="resource.h" />
35+
<ClInclude Include="stdafx.h" />
36+
</ItemGroup>
37+
<PropertyGroup Label="Globals">
38+
<ProjectGuid>{25D068F1-4D71-4EC2-BA78-8F6C694101A5}</ProjectGuid>
39+
<Keyword>Win32Proj</Keyword>
40+
<RootNamespace>ColorBasics-D2D</RootNamespace>
41+
</PropertyGroup>
42+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
44+
<ConfigurationType>Application</ConfigurationType>
45+
<UseDebugLibraries>true</UseDebugLibraries>
46+
<PlatformToolset>v140</PlatformToolset>
47+
<CharacterSet>Unicode</CharacterSet>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
50+
<ConfigurationType>Application</ConfigurationType>
51+
<UseDebugLibraries>true</UseDebugLibraries>
52+
<PlatformToolset>v140</PlatformToolset>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
56+
<ConfigurationType>Application</ConfigurationType>
57+
<UseDebugLibraries>false</UseDebugLibraries>
58+
<PlatformToolset>v140</PlatformToolset>
59+
<WholeProgramOptimization>true</WholeProgramOptimization>
60+
<CharacterSet>Unicode</CharacterSet>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
63+
<ConfigurationType>Application</ConfigurationType>
64+
<UseDebugLibraries>false</UseDebugLibraries>
65+
<PlatformToolset>v140</PlatformToolset>
66+
<WholeProgramOptimization>true</WholeProgramOptimization>
67+
<CharacterSet>Unicode</CharacterSet>
68+
</PropertyGroup>
69+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
70+
<ImportGroup Label="ExtensionSettings">
71+
</ImportGroup>
72+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
73+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
74+
</ImportGroup>
75+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
76+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
77+
</ImportGroup>
78+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
79+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
80+
</ImportGroup>
81+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
82+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
83+
</ImportGroup>
84+
<PropertyGroup Label="UserMacros" />
85+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86+
<LinkIncremental>true</LinkIncremental>
87+
<IncludePath>$(KINECTSDK20_DIR)\inc;$(IncludePath)</IncludePath>
88+
<LibraryPath>$(KINECTSDK20_DIR)\lib\x64;$(LibraryPath)</LibraryPath>
89+
</PropertyGroup>
90+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
91+
<LinkIncremental>true</LinkIncremental>
92+
<IncludePath>$(KINECTSDK20_DIR)\inc;$(IncludePath)</IncludePath>
93+
<LibraryPath>$(KINECTSDK20_DIR)\lib\x86;$(LibraryPath)</LibraryPath>
94+
</PropertyGroup>
95+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
96+
<LinkIncremental>false</LinkIncremental>
97+
<IncludePath>$(KINECTSDK20_DIR)\inc;$(IncludePath)</IncludePath>
98+
<LibraryPath>$(KINECTSDK20_DIR)\lib\x64;$(LibraryPath)</LibraryPath>
99+
</PropertyGroup>
100+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
101+
<LinkIncremental>false</LinkIncremental>
102+
<IncludePath>$(KINECTSDK20_DIR)\inc;$(IncludePath)</IncludePath>
103+
<LibraryPath>$(KINECTSDK20_DIR)\lib\x86;$(LibraryPath)</LibraryPath>
104+
</PropertyGroup>
105+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
106+
<ClCompile>
107+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
108+
<Optimization>Disabled</Optimization>
109+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110+
</ClCompile>
111+
<Link>
112+
<SubSystem>Windows</SubSystem>
113+
<GenerateDebugInformation>true</GenerateDebugInformation>
114+
<EntryPointSymbol>
115+
</EntryPointSymbol>
116+
<AdditionalDependencies>kinect20.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
117+
</Link>
118+
</ItemDefinitionGroup>
119+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
120+
<ClCompile>
121+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
122+
<Optimization>Disabled</Optimization>
123+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
124+
</ClCompile>
125+
<Link>
126+
<SubSystem>Windows</SubSystem>
127+
<GenerateDebugInformation>true</GenerateDebugInformation>
128+
<EntryPointSymbol>
129+
</EntryPointSymbol>
130+
<AdditionalDependencies>kinect20.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
131+
</Link>
132+
</ItemDefinitionGroup>
133+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
134+
<ClCompile>
135+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
136+
<Optimization>MaxSpeed</Optimization>
137+
<FunctionLevelLinking>true</FunctionLevelLinking>
138+
<IntrinsicFunctions>true</IntrinsicFunctions>
139+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
140+
</ClCompile>
141+
<Link>
142+
<SubSystem>Windows</SubSystem>
143+
<GenerateDebugInformation>true</GenerateDebugInformation>
144+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
145+
<OptimizeReferences>true</OptimizeReferences>
146+
<EntryPointSymbol>
147+
</EntryPointSymbol>
148+
<AdditionalDependencies>kinect20.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
149+
</Link>
150+
</ItemDefinitionGroup>
151+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
152+
<ClCompile>
153+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
154+
<Optimization>MaxSpeed</Optimization>
155+
<FunctionLevelLinking>true</FunctionLevelLinking>
156+
<IntrinsicFunctions>true</IntrinsicFunctions>
157+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
158+
</ClCompile>
159+
<Link>
160+
<SubSystem>Windows</SubSystem>
161+
<GenerateDebugInformation>true</GenerateDebugInformation>
162+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
163+
<OptimizeReferences>true</OptimizeReferences>
164+
<EntryPointSymbol>
165+
</EntryPointSymbol>
166+
<AdditionalDependencies>kinect20.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
167+
</Link>
168+
</ItemDefinitionGroup>
169+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
170+
<ImportGroup Label="ExtensionTargets">
171+
</ImportGroup>
172+
</Project>

0 commit comments

Comments
 (0)