Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Submission Copy of my GPU Path Tracer #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added PROJ1_WIN/565Raytracer.sdf
Binary file not shown.
Binary file added PROJ1_WIN/565Raytracer.suo
Binary file not shown.
259 changes: 134 additions & 125 deletions PROJ1_WIN/565Raytracer/565Raytracer.vcxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<ProjectSettingsModel DefinitionId="a218e900-1199-4ab1-a767-7976786f04d4" DisplayName="Nexus Project User Settings" xmlns="clr-namespace:Ark.PropertyModel;assembly=Ark">
<SettingsPointModel DefinitionId="3eb7ba04-016d-475e-b0ff-daa5f0e59a08" DisplayName="Launch">
<Property Name="Arguments" Value="scene=&quot;../../scenes/sampleScene.txt&quot;" />
</SettingsPointModel>
</ProjectSettingsModel>
96 changes: 55 additions & 41 deletions PROJ1_WIN/565Raytracer/565Raytracer.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -1,42 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="..\..\src\glslUtility.cpp" />
<ClCompile Include="..\..\src\image.cpp" />
<ClCompile Include="..\..\src\main.cpp" />
<ClCompile Include="..\..\src\scene.cpp" />
<ClCompile Include="..\..\src\utilities.cpp" />
<ClCompile Include="..\..\src\stb_image\stb_image.c">
<Filter>stb_image</Filter>
</ClCompile>
<ClCompile Include="..\..\src\stb_image\stb_image_write.c">
<Filter>stb_image</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\cudaMat4.h" />
<ClInclude Include="..\..\src\glslUtility.h" />
<ClInclude Include="..\..\src\image.h" />
<ClInclude Include="..\..\src\interactions.h" />
<ClInclude Include="..\..\src\intersections.h" />
<ClInclude Include="..\..\src\main.h" />
<ClInclude Include="..\..\src\raytraceKernel.h" />
<ClInclude Include="..\..\src\scene.h" />
<ClInclude Include="..\..\src\sceneStructs.h" />
<ClInclude Include="..\..\src\utilities.h" />
<ClInclude Include="..\..\src\stb_image\stb_image_write.h">
<Filter>stb_image</Filter>
</ClInclude>
<ClInclude Include="..\..\src\stb_image\stb_image.h">
<Filter>stb_image</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<CudaCompile Include="..\..\src\raytraceKernel.cu" />
</ItemGroup>
<ItemGroup>
<Filter Include="stb_image">
<UniqueIdentifier>{011aa553-95e8-4e59-b7ff-1bb89aebe21d}</UniqueIdentifier>
</Filter>
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="..\..\src\glslUtility.cpp" />
<ClCompile Include="..\..\src\image.cpp" />
<ClCompile Include="..\..\src\main.cpp" />
<ClCompile Include="..\..\src\scene.cpp" />
<ClCompile Include="..\..\src\utilities.cpp" />
<ClCompile Include="..\..\src\stb_image\stb_image.c">
<Filter>stb_image</Filter>
</ClCompile>
<ClCompile Include="..\..\src\stb_image\stb_image_write.c">
<Filter>stb_image</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\cudaMat4.h" />
<ClInclude Include="..\..\src\glslUtility.h" />
<ClInclude Include="..\..\src\image.h" />
<ClInclude Include="..\..\src\interactions.h" />
<ClInclude Include="..\..\src\intersections.h" />
<ClInclude Include="..\..\src\main.h" />
<ClInclude Include="..\..\src\raytraceKernel.h" />
<ClInclude Include="..\..\src\scene.h" />
<ClInclude Include="..\..\src\sceneStructs.h" />
<ClInclude Include="..\..\src\utilities.h" />
<ClInclude Include="..\..\src\stb_image\stb_image_write.h">
<Filter>stb_image</Filter>
</ClInclude>
<ClInclude Include="..\..\src\stb_image\stb_image.h">
<Filter>stb_image</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<CudaCompile Include="..\..\src\raytraceKernel.cu" />
</ItemGroup>
<ItemGroup>
<Filter Include="stb_image">
<UniqueIdentifier>{011aa553-95e8-4e59-b7ff-1bb89aebe21d}</UniqueIdentifier>
</Filter>
<Filter Include="Resources">
<UniqueIdentifier>{a43f8314-4257-4e46-b34b-d6d20b8a620e}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<None Include="..\..\scenes\PathTracerScene.txt">
<Filter>Resources</Filter>
</None>
<None Include="..\..\scenes\sampleScene.txt">
<Filter>Resources</Filter>
</None>
<None Include="..\..\scenes\sampleSceneGlossy.txt">
<Filter>Resources</Filter>
</None>
</ItemGroup>
</Project>
16 changes: 10 additions & 6 deletions PROJ1_WIN/565Raytracer/565Raytracer.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerCommandArguments>scene="../../scenes/sampleScene.txt"</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerCommandArguments>scene="../../scenes/sampleScene.txt"</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerCommandArguments>scene="../../scenes/PathTracerScene.txt"</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
35 changes: 35 additions & 0 deletions PROJ1_WIN/565Raytracer/Debug/565Raytracer.Build.CppClean.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\565RAYTRACER.EXE.EMBED.MANIFEST
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\565RAYTRACER.EXE.EMBED.MANIFEST.RES
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\565RAYTRACER.EXE.INTERMEDIATE.MANIFEST
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\565Raytracer_manifest.rc
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\cl.command.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\CL.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\CL.write.1.tlog
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\GLSLUTILITY.OBJ
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\IMAGE.OBJ
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.3156.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.3156.write.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.3156-cvtres.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.3156-cvtres.write.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.command.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link.write.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link-cvtres.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\link-cvtres.write.1.tlog
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\MAIN.OBJ
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\mt.command.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\mt.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\mt.write.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\raytraceKernel.cu.cache
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\rc.command.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\rc.read.1.tlog
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\rc.write.1.tlog
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\SCENE.OBJ
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\STB_IMAGE.OBJ
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\STB_IMAGE_WRITE.OBJ
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\UTILITIES.OBJ
C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\565Raytracer\Debug\vc100.idb
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\565RAYTRACER\DEBUG\VC100.PDB
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\DEBUG\565RAYTRACER.EXE
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\DEBUG\565RAYTRACER.ILK
C:\USERS\APARAJITH SAIRAM\DOCUMENTS\MS CGGT\GPU FALL 2012\PROJECT2-PATHTRACER\PROJ1_WIN\DEBUG\565RAYTRACER.PDB
10 changes: 10 additions & 0 deletions PROJ1_WIN/565Raytracer/Debug/565Raytracer.exe.embed.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
2 changes: 2 additions & 0 deletions PROJ1_WIN/565Raytracer/Debug/565Raytracer.lastbuildstate
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#v4.0:v100
Debug|Win32|C:\Users\Aparajith Sairam\Documents\MS CGGT\GPU Fall 2012\Project2-Pathtracer\PROJ1_WIN\|
Loading