ospray

(โ˜… 1,093)

An Open, Scalable, Portable, Ray Tracing Based Rendering Engine for High-Fidelity Visualization

  • .clang-format
  • .gitattributes
  • .gitignore
  • .gitmodules
  • CHANGELOG.md
  • CMakeLists.txt
  • LICENSE.txt
  • README.md
  • SECURITY.md
  • STYLEGUIDE.md
  • third-party-programs-DPCPP.txt
  • third-party-programs-Embree.txt
  • third-party-programs-ISPC.txt
  • third-party-programs-OIDN.txt
  • third-party-programs-oneAPI-DPCPP.txt
  • third-party-programs-oneDNN.txt
  • third-party-programs-oneTBB.txt
  • third-party-programs-OpenVKL.txt
  • third-party-programs.txt

๐Ÿš€ Installation Guide

1. Get the code
git clone https://github.com/RenderKit/ospray

Downloads the entire project code from GitHub to your computer.

cd ospray

Moves into the project folder you just downloaded.

2. CMake

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • CMake The tool used to generate build configuration.
  • C/C++ ์ปดํŒŒ์ผ๋Ÿฌ Windows needs Visual Studio (Community edition, free), macOS needs Xcode Command Line Tools, Linux needs the gcc/g++ package.
- To build OSPRay you need [CMake](http://www.cmake.org), any form of

Type this command into your terminal and run it.

CMake its location can be hinted with the variable `ISPC_EXECUTABLE`.

Type this command into your terminal and run it.

as part of the [superbuild](#cmake-superbuild). Alternatively you can

Type this command into your terminal and run it.

set CMake variable `RKCOMMON_TASKING_SYSTEM` to `OpenMP` or

Type this command into your terminal and run it.

by CMake its location can be hinted with the variable `embree_DIR`.

Type this command into your terminal and run it.

โœ… Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).

Pulled directly from this repo's README.

3. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd doc

This project's files live in a subfolder, so move into it first.

make

Compiles the code based on the generated build configuration to produce an executable.

โœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation