Skip to content

Commit e2e4943

Browse files
authored
Merge pull request #165 from Gjacquenot/master
Case update for tools include in tutorials
2 parents 688c66a + 950848c commit e2e4943

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Tutorials/CornellBox/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ THE SOFTWARE.
2525
#include <cassert>
2626
#include <iostream>
2727
#include <memory>
28-
#include "../tools/shader_manager.h"
29-
#include "../tools/tiny_obj_loader.h"
28+
#include "../Tools/shader_manager.h"
29+
#include "../Tools/tiny_obj_loader.h"
3030

3131
using namespace RadeonRays;
3232
using namespace tinyobj;
@@ -208,7 +208,7 @@ int main(int argc, char* argv[])
208208
api->AttachShape(shape);
209209
shape->SetId(id);
210210
}
211-
// Ñommit scene changes
211+
// Commit scene changes
212212
api->Commit();
213213

214214
const int k_raypack_size = g_window_height * g_window_width;
@@ -305,4 +305,4 @@ int main(int argc, char* argv[])
305305
IntersectionApi::Delete(api);
306306

307307
return 0;
308-
}
308+
}

Tutorials/CornellBoxShadow/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ THE SOFTWARE.
2828
#include <cassert>
2929
#include <iostream>
3030
#include <memory>
31-
#include "../tools/shader_manager.h"
32-
#include "../tools/tiny_obj_loader.h"
31+
#include "../Tools/shader_manager.h"
32+
#include "../Tools/tiny_obj_loader.h"
3333

3434
using namespace RadeonRays;
3535
using namespace tinyobj;
@@ -372,7 +372,7 @@ int main(int argc, char* argv[])
372372
g_api->AttachShape(shape);
373373
shape->SetId(id);
374374
}
375-
// Ñommit scene changes
375+
// Commit scene changes
376376
g_api->Commit();
377377

378378
const int k_raypack_size = g_window_height * g_window_width;
@@ -421,4 +421,4 @@ int main(int argc, char* argv[])
421421
IntersectionApi::Delete(g_api); g_api = nullptr;
422422

423423
return 0;
424-
}
424+
}

Tutorials/Triangle/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ THE SOFTWARE.
2525
#include <cassert>
2626
#include <iostream>
2727
#include <memory>
28-
#include "../tools/shader_manager.h"
28+
#include "../Tools/shader_manager.h"
2929

3030
using namespace RadeonRays;
3131

@@ -217,4 +217,4 @@ int main(int argc, char* argv[])
217217
IntersectionApi::Delete(api);
218218

219219
return 0;
220-
}
220+
}

Tutorials/TriangleLight/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ THE SOFTWARE.
2525
#include <cassert>
2626
#include <iostream>
2727
#include <memory>
28-
#include "../tools/shader_manager.h"
28+
#include "../Tools/shader_manager.h"
2929

3030
using namespace RadeonRays;
3131

@@ -288,4 +288,4 @@ int main(int argc, char* argv[])
288288
IntersectionApi::Delete(api);
289289

290290
return 0;
291-
}
291+
}

0 commit comments

Comments
 (0)