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

CIS 565 Project 2 #19

Open
wants to merge 14 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/565Pathtracer.sdf
Binary file not shown.
Binary file added PROJ1_WIN/565Pathtracer.suo
Binary file not shown.
8 changes: 7 additions & 1 deletion PROJ1_WIN/565Pathtracer/565Pathtracer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\clock.h" />
<ClInclude Include="..\..\src\cudaMat4.h" />
<ClInclude Include="..\..\src\fps.h" />
<ClInclude Include="..\..\src\glslUtility.h" />
<ClInclude Include="..\..\src\image.h" />
<ClInclude Include="..\..\src\interactions.h" />
Expand All @@ -30,9 +32,11 @@
<ClInclude Include="..\..\src\sceneStructs.h" />
<ClInclude Include="..\..\src\stb_image\stb_image.h" />
<ClInclude Include="..\..\src\stb_image\stb_image_write.h" />
<ClInclude Include="..\..\src\timer.h" />
<ClInclude Include="..\..\src\utilities.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\src\fps.cpp" />
<ClCompile Include="..\..\src\glslUtility.cpp" />
<ClCompile Include="..\..\src\image.cpp" />
<ClCompile Include="..\..\src\main.cpp" />
Expand All @@ -49,6 +53,7 @@
<Keyword>Win32Proj</Keyword>
<RootNamespace>565Pathtracer</RootNamespace>
<ProjectName>565Pathtracer</ProjectName>
<CudaToolkitCustomDir>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5</CudaToolkitCustomDir>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
Expand Down Expand Up @@ -196,10 +201,11 @@
<CudaCompile>
<CompileOut>$(ProjectDir)$(Platform)/$(Configuration)/%(Filename)%(Extension).obj</CompileOut>
<Include>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5\include;C:/ProgramData/NVIDIA Corporation/CUDA Samples/v5.5/common/inc;../shared/glew/includes;../shared/freeglut/includes</Include>
<CodeGeneration>compute_10,sm_10</CodeGeneration>
</CudaCompile>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="..\Build\CUDA 4.0.targets" />
</ImportGroup>
</Project>
</Project>
4 changes: 4 additions & 0 deletions PROJ1_WIN/565Pathtracer/565Pathtracer.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<ClCompile Include="..\..\src\stb_image\stb_image_write.c">
<Filter>stb_image</Filter>
</ClCompile>
<ClCompile Include="..\..\src\fps.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\cudaMat4.h" />
Expand All @@ -30,6 +31,9 @@
<ClInclude Include="..\..\src\stb_image\stb_image.h">
<Filter>stb_image</Filter>
</ClInclude>
<ClInclude Include="..\..\src\clock.h" />
<ClInclude Include="..\..\src\fps.h" />
<ClInclude Include="..\..\src\timer.h" />
</ItemGroup>
<ItemGroup>
<CudaCompile Include="..\..\src\raytraceKernel.cu" />
Expand Down
4 changes: 2 additions & 2 deletions PROJ1_WIN/565Pathtracer/565Pathtracer.vcxproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release (v5.5)|Win32'">
<LocalDebuggerCommandArguments>scene=../../scenes/sampleScene.txt</LocalDebuggerCommandArguments>
<LocalDebuggerCommandArguments>scene=../../scenes/color_glass_2.txt</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
</Project>
Binary file added PROJ1_WIN/565Pathtracer/glew32.dll
Binary file not shown.
Binary file added PROJ1_WIN/565Pathtracer/test.0.bmp
Binary file not shown.
Binary file added PROJ1_WIN/565Pathtracer/vc100.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
286 changes: 139 additions & 147 deletions README.md

Large diffs are not rendered by default.

Loading