-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic-raytracing-samples.sln
114 lines (114 loc) · 7.06 KB
/
basic-raytracing-samples.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "framework", "framework\framework.vcxproj", "{1BC7FECA-4C79-4B0A-B018-6E341527B11E}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "magma", "third-party\magma\projects\vs\magma.vcxproj", "{8D9D4A3E-439A-4210-8879-259B20D992CA}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "01-triangle", "01-triangle\01-triangle.vcxproj", "{50E82F8F-9204-4728-B05D-DEB21635CA3D}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "02-transform", "02-transform\02-transform.vcxproj", "{E947AD0C-32C0-46D3-A6D3-C7F6F36CCB86}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "03-procedural-intersection", "03-procedural-intersection\03-procedural-intersection.vcxproj", "{69A680CF-6600-4BD9-8134-46654BC5BEA8}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "04-texture-alpha", "04-texture-alpha\04-texture-alpha.vcxproj", "{3AF8BC37-AC6A-4E0D-A5E0-5774F7762D73}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "05-mesh", "05-mesh\05-mesh.vcxproj", "{F95E5B7F-A7E5-4F30-8B68-2D6FB13C5611}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "06-model", "06-model\06-model.vcxproj", "{DFE596CF-B846-4C56-9070-4E94EF1A7E2B}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "07-texture-mapping", "07-texture-mapping\07-texture-mapping.vcxproj", "{33572A38-A1C1-4AEF-BB5B-BCECC6BCD153}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "08-shader-binding-table", "08-shader-binding-table\08-shader-binding-table.vcxproj", "{5945DE42-5378-4F8F-8534-8B899F57908B}"
ProjectSection(ProjectDependencies) = postProject
{8D9D4A3E-439A-4210-8879-259B20D992CA} = {8D9D4A3E-439A-4210-8879-259B20D992CA}
{1BC7FECA-4C79-4B0A-B018-6E341527B11E} = {1BC7FECA-4C79-4B0A-B018-6E341527B11E}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1BC7FECA-4C79-4B0A-B018-6E341527B11E}.Debug|x64.ActiveCfg = Debug|x64
{1BC7FECA-4C79-4B0A-B018-6E341527B11E}.Debug|x64.Build.0 = Debug|x64
{1BC7FECA-4C79-4B0A-B018-6E341527B11E}.Release|x64.ActiveCfg = Release|x64
{1BC7FECA-4C79-4B0A-B018-6E341527B11E}.Release|x64.Build.0 = Release|x64
{8D9D4A3E-439A-4210-8879-259B20D992CA}.Debug|x64.ActiveCfg = Debug|x64
{8D9D4A3E-439A-4210-8879-259B20D992CA}.Debug|x64.Build.0 = Debug|x64
{8D9D4A3E-439A-4210-8879-259B20D992CA}.Release|x64.ActiveCfg = Release|x64
{8D9D4A3E-439A-4210-8879-259B20D992CA}.Release|x64.Build.0 = Release|x64
{50E82F8F-9204-4728-B05D-DEB21635CA3D}.Debug|x64.ActiveCfg = Debug|x64
{50E82F8F-9204-4728-B05D-DEB21635CA3D}.Debug|x64.Build.0 = Debug|x64
{50E82F8F-9204-4728-B05D-DEB21635CA3D}.Release|x64.ActiveCfg = Release|x64
{50E82F8F-9204-4728-B05D-DEB21635CA3D}.Release|x64.Build.0 = Release|x64
{E947AD0C-32C0-46D3-A6D3-C7F6F36CCB86}.Debug|x64.ActiveCfg = Debug|x64
{E947AD0C-32C0-46D3-A6D3-C7F6F36CCB86}.Debug|x64.Build.0 = Debug|x64
{E947AD0C-32C0-46D3-A6D3-C7F6F36CCB86}.Release|x64.ActiveCfg = Release|x64
{E947AD0C-32C0-46D3-A6D3-C7F6F36CCB86}.Release|x64.Build.0 = Release|x64
{69A680CF-6600-4BD9-8134-46654BC5BEA8}.Debug|x64.ActiveCfg = Debug|x64
{69A680CF-6600-4BD9-8134-46654BC5BEA8}.Debug|x64.Build.0 = Debug|x64
{69A680CF-6600-4BD9-8134-46654BC5BEA8}.Release|x64.ActiveCfg = Release|x64
{69A680CF-6600-4BD9-8134-46654BC5BEA8}.Release|x64.Build.0 = Release|x64
{3AF8BC37-AC6A-4E0D-A5E0-5774F7762D73}.Debug|x64.ActiveCfg = Debug|x64
{3AF8BC37-AC6A-4E0D-A5E0-5774F7762D73}.Debug|x64.Build.0 = Debug|x64
{3AF8BC37-AC6A-4E0D-A5E0-5774F7762D73}.Release|x64.ActiveCfg = Release|x64
{3AF8BC37-AC6A-4E0D-A5E0-5774F7762D73}.Release|x64.Build.0 = Release|x64
{F95E5B7F-A7E5-4F30-8B68-2D6FB13C5611}.Debug|x64.ActiveCfg = Debug|x64
{F95E5B7F-A7E5-4F30-8B68-2D6FB13C5611}.Debug|x64.Build.0 = Debug|x64
{F95E5B7F-A7E5-4F30-8B68-2D6FB13C5611}.Release|x64.ActiveCfg = Release|x64
{F95E5B7F-A7E5-4F30-8B68-2D6FB13C5611}.Release|x64.Build.0 = Release|x64
{DFE596CF-B846-4C56-9070-4E94EF1A7E2B}.Debug|x64.ActiveCfg = Debug|x64
{DFE596CF-B846-4C56-9070-4E94EF1A7E2B}.Debug|x64.Build.0 = Debug|x64
{DFE596CF-B846-4C56-9070-4E94EF1A7E2B}.Release|x64.ActiveCfg = Release|x64
{DFE596CF-B846-4C56-9070-4E94EF1A7E2B}.Release|x64.Build.0 = Release|x64
{33572A38-A1C1-4AEF-BB5B-BCECC6BCD153}.Debug|x64.ActiveCfg = Debug|x64
{33572A38-A1C1-4AEF-BB5B-BCECC6BCD153}.Debug|x64.Build.0 = Debug|x64
{33572A38-A1C1-4AEF-BB5B-BCECC6BCD153}.Release|x64.ActiveCfg = Release|x64
{33572A38-A1C1-4AEF-BB5B-BCECC6BCD153}.Release|x64.Build.0 = Release|x64
{5945DE42-5378-4F8F-8534-8B899F57908B}.Debug|x64.ActiveCfg = Debug|x64
{5945DE42-5378-4F8F-8534-8B899F57908B}.Debug|x64.Build.0 = Debug|x64
{5945DE42-5378-4F8F-8534-8B899F57908B}.Release|x64.ActiveCfg = Release|x64
{5945DE42-5378-4F8F-8534-8B899F57908B}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F88C6098-C784-4B80-80B6-77704379AAA1}
EndGlobalSection
EndGlobal