From e0789fbcc49129944d5c34256dfc6d99f43462a9 Mon Sep 17 00:00:00 2001 From: Jacco Bikker Date: Sun, 3 Nov 2024 20:11:06 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b1a07ee..7353f83 100644 --- a/README.md +++ b/README.md @@ -17,17 +17,17 @@ The library ````tiny_bvh.h```` is designed to be easy to use. Please have a look ````g++ -std=c++20 -mavx tiny_bvh_test.cpp -o tiny_bvh_test```` -The single-source sample ASCII test renderer can be compiled with +The single-source sample **ASCII test renderer** can be compiled with ````g++ -std=c++20 -mavx tiny_bvh_renderer.cpp -o tiny_bvh_renderer```` -The cross-platform fenster-based single-source bitmap renderer can be compiled with +The cross-platform fenster-based single-source **bitmap renderer** can be compiled with ````g++ -std=c++20 -mavx -mwindows -O3 tiny_bvh_fenster.cpp -o tiny_bvh_fenster```` (on windows) ```g++ -std=c++20 -mavx -O3 -framework Cocoa tiny_bvh_fenster.cpp -o tiny_bvh_fenster``` (on macOS) -The performance measurements use OpenMP and can be compiled with: +The **performance measurement tool** use OpenMP and can be compiled with: ````g++ -std=c++20 -mavx -Ofast -fopenmp tiny_bvh_speedtest.cpp -o tiny_bvh_speedtest````