diff --git a/README.md b/README.md
index dd258af..17949f1 100644
--- a/README.md
+++ b/README.md
@@ -3,12 +3,23 @@ Project 0 Getting Started
**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 0**
-* (TODO) YOUR NAME HERE
- * (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+* Nithin Pranesh
+ * Here are some links to connect with me: [LinkedIn](https://www.linkedin.com/in/nithin-pranesh), [YouTube](https://www.youtube.com/channel/UCAQwYrQblfN8qeDW28KkH7g/featured), [Twitter](https://twitter.com/NithinPranesh1).
+* Tested on: XPS 15 7590 (Personal), Windows 20H2, i7-9750H @ 2.60GHz 22GB, GTX 1650.
-### (TODO: Your README)
+### README
-Include screenshots, analysis, etc. (Remember, this is public, so don't put
-anything here that you don't want to share with the world.)
+### 3.1.1 - Cuda
+
+### 3.1.2 - Analyze
+
+
+### 3.1.3 - Nsight Debugging
+
+
+### 3.2 - WebGL
+
+
+### 3.3 - DXR
+
diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp
index 886fd4c..0996489 100644
--- a/cuda-getting-started/src/main.cpp
+++ b/cuda-getting-started/src/main.cpp
@@ -10,8 +10,7 @@
* C main function.
*/
int main(int argc, char* argv[]) {
- // TODO: Change this line to use your name!
- m_yourName = "TODO: YOUR NAME HERE";
+ m_yourName = "Nithin Pranesh";
if (init(argc, argv)) {
mainLoop();
diff --git a/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj b/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj
index 86785de..5d3462c 100644
--- a/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj
+++ b/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj
@@ -28,7 +28,7 @@
StaticLibrary
Unicode
- v141
+ v142
diff --git a/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj.filters b/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj.filters
index 6285ad0..2455f83 100644
--- a/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj.filters
+++ b/dxr-support/Libraries/D3D12RaytracingFallback/src/FallbackLayer.vcxproj.filters
@@ -192,6 +192,9 @@
+
+
+
diff --git a/dxr-support/src/D3D12RaytracingHelloWorld/D3D12RaytracingHelloWorld.vcxproj b/dxr-support/src/D3D12RaytracingHelloWorld/D3D12RaytracingHelloWorld.vcxproj
index d4d234f..113e8e5 100644
--- a/dxr-support/src/D3D12RaytracingHelloWorld/D3D12RaytracingHelloWorld.vcxproj
+++ b/dxr-support/src/D3D12RaytracingHelloWorld/D3D12RaytracingHelloWorld.vcxproj
@@ -21,13 +21,13 @@
Application
true
- v141
+ v142
Unicode
Application
false
- v141
+ v142
true
Unicode
diff --git a/dxr-support/src/D3D12RaytracingHelloWorld/Raytracing.hlsl b/dxr-support/src/D3D12RaytracingHelloWorld/Raytracing.hlsl
index d817ca4..641c4f1 100644
--- a/dxr-support/src/D3D12RaytracingHelloWorld/Raytracing.hlsl
+++ b/dxr-support/src/D3D12RaytracingHelloWorld/Raytracing.hlsl
@@ -69,7 +69,7 @@ void MyRaygenShader()
[shader("closesthit")]
void MyClosestHitShader(inout RayPayload payload, in MyAttributes attr)
{
- float3 barycentrics = float3(1 - attr.barycentrics.x - attr.barycentrics.y, attr.barycentrics.x, attr.barycentrics.y);
+ float3 barycentrics = float3(1.0f, 0.5f, 0.5f);
payload.color = float4(barycentrics, 1);
}
diff --git a/images/autos-warpinfo.jpg b/images/autos-warpinfo.jpg
new file mode 100644
index 0000000..f5bc667
Binary files /dev/null and b/images/autos-warpinfo.jpg differ
diff --git a/images/dxr-test.jpg b/images/dxr-test.jpg
new file mode 100644
index 0000000..9f139bc
Binary files /dev/null and b/images/dxr-test.jpg differ
diff --git a/images/nsight-trace.jpg b/images/nsight-trace.jpg
new file mode 100644
index 0000000..b6e8155
Binary files /dev/null and b/images/nsight-trace.jpg differ
diff --git a/images/proj0-cuda.jpg b/images/proj0-cuda.jpg
new file mode 100644
index 0000000..10b0c6d
Binary files /dev/null and b/images/proj0-cuda.jpg differ
diff --git a/images/webgl-report.jpg b/images/webgl-report.jpg
new file mode 100644
index 0000000..b41e2ca
Binary files /dev/null and b/images/webgl-report.jpg differ