Skip to content

Commit 0301794

Browse files
committed
Removed Radix
Removed my sorry attempt at Radix, preparing for main branch upload
1 parent 6f1bf83 commit 0301794

File tree

9 files changed

+12
-465
lines changed

9 files changed

+12
-465
lines changed

TrueTrace.unitypackage

-7.63 KB
Binary file not shown.

TrueTrace/DemoScene.unity

Lines changed: 5 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -13479,12 +13479,12 @@ MonoBehaviour:
1347913479
m_EditorClassIdentifier:
1348013480
ThisLight: {fileID: 610660759}
1348113481
ThisLightData:
13482-
Radiance: {x: 0, y: 0, z: 0}
13483-
Position: {x: 0, y: 0, z: 0}
13484-
Direction: {x: 0, y: 0, z: 0}
13485-
Type: 0
13482+
Radiance: {x: 32, y: 32, z: 32}
13483+
Position: {x: -1.4816499, y: 5.724826, z: -1.1294421}
13484+
Direction: {x: -0.40884805, y: 0.8689685, z: -0.2788136}
13485+
Type: 1
1348613486
SpotAngle: {x: 0, y: 0}
13487-
ZAxisRotation: 0
13487+
ZAxisRotation: 0.066060774
1348813488
Softness: 0
1348913489
IESTex: {x: 0, y: 0}
1349013490
ArrayIndex: 0
@@ -2158953,56 +2158953,6 @@ Transform:
21589532158953
type: 3}
21589542158954
m_PrefabInstance: {fileID: 1770587712}
21589552158955
m_PrefabAsset: {fileID: 0}
2158956-
--- !u!1 &1824135087
2158957-
GameObject:
2158958-
m_ObjectHideFlags: 0
2158959-
m_CorrespondingSourceObject: {fileID: 0}
2158960-
m_PrefabInstance: {fileID: 0}
2158961-
m_PrefabAsset: {fileID: 0}
2158962-
serializedVersion: 6
2158963-
m_Component:
2158964-
- component: {fileID: 1824135089}
2158965-
- component: {fileID: 1824135088}
2158966-
m_Layer: 0
2158967-
m_Name: GameObject
2158968-
m_TagString: Untagged
2158969-
m_Icon: {fileID: 0}
2158970-
m_NavMeshLayer: 0
2158971-
m_StaticEditorFlags: 0
2158972-
m_IsActive: 1
2158973-
--- !u!114 &1824135088
2158974-
MonoBehaviour:
2158975-
m_ObjectHideFlags: 0
2158976-
m_CorrespondingSourceObject: {fileID: 0}
2158977-
m_PrefabInstance: {fileID: 0}
2158978-
m_PrefabAsset: {fileID: 0}
2158979-
m_GameObject: {fileID: 1824135087}
2158980-
m_Enabled: 1
2158981-
m_EditorHideFlags: 0
2158982-
m_Script: {fileID: 11500000, guid: fad1eced91e4637439aa3fd87b21b5c9, type: 3}
2158983-
m_Name:
2158984-
m_EditorClassIdentifier:
2158985-
DebugPrefixBuffer:
2158986-
DebugCountsBuffer:
2158987-
CPUDebugCountsBuffer:
2158988-
DebugKeysBuffer:
2158989-
CPUDebugKeysBuffer:
2158990-
BufferAABBs: []
2158991-
--- !u!4 &1824135089
2158992-
Transform:
2158993-
m_ObjectHideFlags: 0
2158994-
m_CorrespondingSourceObject: {fileID: 0}
2158995-
m_PrefabInstance: {fileID: 0}
2158996-
m_PrefabAsset: {fileID: 0}
2158997-
m_GameObject: {fileID: 1824135087}
2158998-
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
2158999-
m_LocalPosition: {x: -0.06924933, y: 1.7431117, z: -1.5764438}
2159000-
m_LocalScale: {x: 1, y: 1, z: 1}
2159001-
m_ConstrainProportionsScale: 0
2159002-
m_Children: []
2159003-
m_Father: {fileID: 0}
2159004-
m_RootOrder: 5
2159005-
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
21590062158956
--- !u!4 &1829271842 stripped
21590072158957
Transform:
21590082158958
m_CorrespondingSourceObject: {fileID: -2356593116683574695, guid: 16500a523b718314091d7e9b83146c62,

TrueTrace/Resources/GlobalDefines.cginc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define ReSTIRAdvancedValidation
1010
#define IgnoreGlassShadow
1111
// #define IgnoreGlassMain
12-
#define FadeMapping
12+
// #define FadeMapping
1313
// #define PointFiltering
1414
#define StainedGlassShadows
1515
// #define IgnoreBackfacing
@@ -25,8 +25,7 @@
2525
#define UseBRDFLights
2626
#define DoubleBufferSGTree
2727
// #define Fog
28-
// #define RadCache
29-
// #define NonDirectionalRadCache
28+
#define RadCache
3029
#define ExpensiveReSTIR
3130
// #define FakedAO
3231
// #define AutoDebugReading

TrueTrace/Resources/MainCompute/CommonStructs.cginc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ struct CudaTriangle {
2020

2121
StructuredBuffer<CudaTriangle> AggTris;
2222

23+
struct AABB {
24+
float3 BBMax;
25+
float3 BBMin;
26+
};
27+
2328
struct GaussianTreeNode {
2429
float3 position;
2530
float radius;

TrueTrace/Resources/Utility/RadixSort.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

TrueTrace/Resources/Utility/RadixSort/RadixSort.compute

Lines changed: 0 additions & 196 deletions
This file was deleted.

TrueTrace/Resources/Utility/RadixSort/RadixSort.compute.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)