OptiX advanced samples

Will the OptiX advanced samples be ported to OptiX 7? If they will, is there an ETA?

Yes and no. We’ll post it here when they’re available.


David.

Please have a look into this thread now:
https://devtalk.nvidia.com/default/topic/998546/optix/optix-advanced-samples-on-github/

I’m unable to compile the new OptiX_Apps out of the box using Visual Studio 2019 version 16.4.0 . Here’s the output when running the 3rdparty.cmd from within the “x64 Native Tools Command Prompt for VS2019”. The rest of the build process works fine but I get compile errors since the Assimp library was not built.


** Visual Studio 2019 Developer Command Prompt v16.4.0
** Copyright (c) 2019 Microsoft Corporation


[vcvarsall.bat] Environment initialized for: ‘x64’

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>cd D:
D:\

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>D:

D:>cd ActiveWorks/Code/Opensource/rendering/OptiX_Apps

D:\ActiveWorks\Code\Opensource\rendering\OptiX_Apps>3rdparty.cmd

D:\ActiveWorks\Code\Opensource\rendering\OptiX_Apps>“C:\Program Files\cmake\bin\cmake.exe” -P 3rdparty.cmake -DCMAKE_INSTALL_PREFIX=“3rdparty”
cl_version = 19.24
cl_architecture = x64
Creating 3rdparty library folder for Visual Studio 16 2019 Win64
Install prefix: D:/ActiveWorks/Code/Opensource/rendering/OptiX_Apps/3rdparty
GLEW
downloading
extracting
renaming
GLFW
downloading
extracting
renaming
ASSIMP
downloading… (~46 MB)
extracting
creating D:/ActiveWorks/Code/Opensource/rendering/OptiX_Apps/temp/build/msvc-14.2/assimp
generating
CMake Error: Could not create named generator Visual Studio 16 2019 Win64

Thanks for the report. I’ve fixed the 3rdparty.cmake.

CMake stopped supporting the legacy way of specifying the generator architecture for MSVS 2019 with that “Win64” suffix on the generator string itself.
I changed the script to always use the -G and -A command line options instead.