Skip to content

Commit 203f4f7

Browse files
Fix intructions for building on linux
1 parent 0411803 commit 203f4f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

INSTALL-LINUX.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ Instructions for building:
44

55
* git clone https://github.com/knightcrawler25/GLSL-PathTracer.git
66

7-
* cd GLSL-PathTracer
7+
* OpenImageDenoise: Copy linux64 libraries from https://github.com/OpenImageDenoise/oidn/releases/tag/v1.2.4 to thirdparty/oidn/lib folder
88

99
* mkdir build
1010

11+
* cd build
12+
1113
* cmake ..
1214

1315
* make
1416

15-
* cd build
16-
1717
* To run the program: ./PathTracer
1818

1919
* Additional samples can be downloaded from: https://drive.google.com/file/d/1UFMMoVb5uB7WIvCeHOfQ2dCQSxNMXluB/view

src/core/Renderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace GLSLPT
5050
RRDepth = 2;
5151
bgColor = Vec3(0.3f, 0.3f, 0.3f);
5252
denoiserFrameCnt = 20;
53-
enableDenoiser = false;
53+
enableDenoiser = true;
5454
}
5555
iVec2 resolution;
5656
int maxDepth;

0 commit comments

Comments
 (0)