Skip to content

Commit bae8e7b

Browse files
tbiedertutkarshayachit
authored andcommitted
RT wrapper, VisRTX backend
1 parent 24f213c commit bae8e7b

File tree

96 files changed

+5725
-576
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+5725
-576
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ project.xcworkspace
1515

1616
# Exclude VSCode settings and configuration folder
1717
*.vscode*
18+
19+
# Exclude Visual Studio stuff
20+
.vs*
21+
CMakeSettings.json

CMake/FindOptiX.cmake

+47-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
2+
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -26,21 +26,19 @@
2626
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2727
#
2828

29-
# Locate the OptiX distribution. Search relative to the SDK first, then look in the system.
3029

31-
# Our initial guess will be within the SDK.
32-
set(OptiX_INSTALL_DIR "${CMAKE_SOURCE_DIR}/../" CACHE PATH "Path to OptiX installed location.")
33-
34-
# The distribution contains both 32 and 64 bit libraries. Adjust the library
35-
# search path based on the bit-ness of the build. (i.e. 64: bin64, lib64; 32:
36-
# bin, lib). Note that on Mac, the OptiX library is a universal binary, so we
30+
# Adjust the library search path based on the bit-ness of the build.
31+
# (i.e. 64: bin64, lib64; 32: bin, lib).
32+
# Note that on Mac, the OptiX library is a universal binary, so we
3733
# only need to look in lib and not lib64 for 64 bit builds.
3834
if(CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT APPLE)
3935
set(bit_dest "64")
4036
else()
4137
set(bit_dest "")
4238
endif()
4339

40+
set(OptiX_INSTALL_DIR "" CACHE PATH "Path to OptiX installed location.")
41+
4442
macro(OPTIX_find_api_library name version)
4543
find_library(${name}_LIBRARY
4644
NAMES ${name}.${version} ${name}
@@ -62,9 +60,42 @@ macro(OPTIX_find_api_library name version)
6260
endif()
6361
endmacro()
6462

65-
OPTIX_find_api_library(optix 1)
66-
OPTIX_find_api_library(optixu 1)
67-
OPTIX_find_api_library(optix_prime 1)
63+
# OptiX SDKs before 5.1.0 named the library optix.1.lib
64+
# Linux handles this via symlinks and doesn't need changes to the library name.
65+
set(OptiX_version "1")
66+
67+
# The OptiX library is named with the major and minor digits since OptiX 5.1.0.
68+
# Dynamically find the matching library name by parsing the OptiX_INSTALL_DIR.
69+
# This only works if the installation retained the original folder format "OptiX SDK major.minor.micro".
70+
# We want the concatenated major and minor numbers if the version is greater or equal to 5.1.0.
71+
if(WIN32)
72+
if(OptiX_INSTALL_DIR)
73+
string(REGEX REPLACE " |-" ";" OptiX_install_dir_list ${OptiX_INSTALL_DIR})
74+
list(LENGTH OptiX_install_dir_list OptiX_install_dir_list_length)
75+
if(${OptiX_install_dir_list_length} GREATER 0)
76+
# Get the last list element, something like "5.1.0".
77+
list(GET OptiX_install_dir_list -1 OptiX_version_string)
78+
# Component-wise integer version number comparison (version format is major[.minor[.patch[.tweak]]]).
79+
# Starting with OptiX 6.0.0, the full version number is used to avoid the Windows DLL hell.
80+
if(${OptiX_version_string} VERSION_GREATER_EQUAL "6.0.0")
81+
set(OptiX_version ${OptiX_version_string})
82+
elseif(${OptiX_version_string} VERSION_GREATER_EQUAL "5.1.0")
83+
set(OptiX_version "")
84+
string(REPLACE "." ";" OptiX_major_minor_micro_list ${OptiX_version_string})
85+
foreach(index RANGE 0 1)
86+
list(GET OptiX_major_minor_micro_list ${index} number)
87+
string(APPEND OptiX_version ${number})
88+
endforeach()
89+
endif()
90+
endif()
91+
endif()
92+
endif(WIN32)
93+
94+
95+
96+
OPTIX_find_api_library(optix ${OptiX_version})
97+
OPTIX_find_api_library(optixu ${OptiX_version})
98+
OPTIX_find_api_library(optix_prime ${OptiX_version})
6899

69100
# Include
70101
find_path(OptiX_INCLUDE
@@ -88,13 +119,13 @@ function(OptiX_report_error error_message required)
88119
endfunction()
89120

90121
if(NOT optix_LIBRARY)
91-
OptiX_report_error("optix library not found. Please locate before proceeding." TRUE)
122+
OptiX_report_error("OptiX library not found. Please set OptiX_INSTALL_DIR to locate it automatically." TRUE)
92123
endif()
93124
if(NOT OptiX_INCLUDE)
94-
OptiX_report_error("OptiX headers (optix.h and friends) not found. Please locate before proceeding." TRUE)
125+
OptiX_report_error("OptiX headers (optix.h and friends) not found. Please set OptiX_INSTALL_DIR to locate them automatically." TRUE)
95126
endif()
96127
if(NOT optix_prime_LIBRARY)
97-
OptiX_report_error("optix Prime library not found. Please locate before proceeding." FALSE)
128+
OptiX_report_error("OptiX Prime library not found. Please set OptiX_INSTALL_DIR to locate it automatically." FALSE)
98129
endif()
99130

100131
# Macro for setting up dummy targets
@@ -135,8 +166,8 @@ endfunction()
135166

136167
# Sets up a dummy target
137168
OptiX_add_imported_library(optix "${optix_LIBRARY}" "${optix_DLL}" "${OPENGL_LIBRARIES}")
138-
OptiX_add_imported_library(optixu "${optixu_LIBRARY}" "${optixu_DLL}" "")
139-
OptiX_add_imported_library(optix_prime "${optix_prime_LIBRARY}" "${optix_prime_DLL}" "")
169+
OptiX_add_imported_library(optixu "${optixu_LIBRARY}" "${optixu_DLL}" "")
170+
OptiX_add_imported_library(optix_prime "${optix_prime_LIBRARY}" "${optix_prime_DLL}" "")
140171

141172
macro(OptiX_check_same_path libA libB)
142173
if(_optix_path_to_${libA})

Rendering/OSPRay/CMakeLists.txt

+64-28
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ set(classes
1616
vtkOSPRayVolumeNode
1717
vtkOSPRayWindowNode)
1818

19+
set(RTWrapper_sources
20+
RTWrapper/RTWrapper.cxx)
21+
22+
set(RTWrapper_headers
23+
RTWrapper/RTWrapper.h)
24+
1925
vtk_object_factory_declare(
2026
BASE vtkOSPRayVolumeInterface
2127
OVERRIDE vtkOSPRayVolumeMapper)
@@ -25,36 +31,66 @@ vtk_object_factory_configure(
2531
HEADER_FILE vtk_object_factory_header
2632
EXPORT_MACRO "VTKRENDERINGOSPRAY_EXPORT")
2733

34+
# OSPRay
35+
option(VTK_ENABLE_OSPRAY "Enable OSPRay rendering backend" ON)
36+
set(OSPRAY_INSTALL_DIR "" CACHE PATH "Install location of OSPRay")
37+
mark_as_advanced(OSPRAY_INSTALL_DIR)
38+
if (VTK_ENABLE_OSPRAY)
39+
# TODO: Send patches upstream to export targets from ospray.
40+
find_package(ospray 1.8 REQUIRED HINTS ${OSPRAY_INSTALL_DIR})
41+
42+
option(VTKOSPRAY_ENABLE_DENOISER "Build OSPRay Renderer using OpenImageDenoise")
43+
if (VTKOSPRAY_ENABLE_DENOISER)
44+
find_package(OpenImageDenoise 0.8 REQUIRED)
45+
add_definitions(-DVTKOSPRAY_ENABLE_DENOISER)
46+
set(OPENIMAGEDENIOSE OpenImageDenoise)
47+
endif()
48+
endif()
49+
50+
51+
# VisRTX
52+
option(VTK_ENABLE_VISRTX "Enable VisRTX rendering backend" ON)
53+
set(VISRTX_INSTALL_DIR "" CACHE PATH "Install location of VisRTX")
54+
mark_as_advanced(VISRTX_INSTALL_DIR)
55+
if (VTK_ENABLE_VISRTX)
56+
find_package(VisRTX CONFIG REQUIRED HINTS ${VISRTX_INSTALL_DIR})
57+
endif()
58+
if (VisRTX_FOUND)
59+
list(APPEND RTWrapper_sources RTWrapper/VisRTX/VisRTXBackend.cxx)
60+
endif()
61+
62+
if (NOT ospray_FOUND AND NOT VisRTX_FOUND)
63+
message("Warning: Ray tracing requires OSPRay and/or VisRTX, turn VTK_ENABLE_OSPRAY and/or VTK_ENABLE_VISRTX ON.")
64+
endif()
65+
66+
2867
vtk_module_add_module(VTK::RenderingOSPRay
2968
CLASSES ${classes}
30-
SOURCES ${vtk_object_factory_source}
31-
PRIVATE_HEADERS ${vtk_object_factory_header})
32-
33-
option(VTKOSPRAY_ENABLE_DENOISER "build OSPRay Renderer using OpenImageDenoise")
34-
if (VTKOSPRAY_ENABLE_DENOISER)
35-
find_package(OpenImageDenoise 0.8 REQUIRED)
36-
add_definitions(-DVTKOSPRAY_ENABLE_DENOISER)
37-
set(OPENIMAGEDENIOSE OpenImageDenoise)
38-
endif()
69+
SOURCES ${vtk_object_factory_source} ${RTWrapper_sources}
70+
PRIVATE_HEADERS ${vtk_object_factory_header} ${RTWrapper_headers})
71+
3972

40-
# TODO: Send patches upstream to export targets from ospray.
41-
find_package(ospray 1.8 REQUIRED)
42-
vtk_module_link(VTK::RenderingOSPRay
43-
PUBLIC
44-
${OSPRAY_LIBRARIES}
45-
PRIVATE
46-
${OPENIMAGEDENIOSE}
47-
)
48-
49-
vtk_module_include(VTK::RenderingOSPRay
50-
PUBLIC
51-
${OSPRAY_INCLUDE_DIRS}
52-
)
53-
54-
# TODO: FindOSPRay should do this.
55-
# OSPRay_Core uses MMTime which is in it's own special library.
56-
if (WIN32)
73+
if (ospray_FOUND)
5774
vtk_module_link(VTK::RenderingOSPRay
75+
PUBLIC
76+
${OSPRAY_LIBRARIES}
5877
PRIVATE
59-
Winmm)
60-
endif ()
78+
${OPENIMAGEDENIOSE})
79+
vtk_module_include(VTK::RenderingOSPRay
80+
PUBLIC
81+
${OSPRAY_INCLUDE_DIRS})
82+
83+
# TODO: FindOSPRay should do this.
84+
# OSPRay_Core uses MMTime which is in it's own special library.
85+
if (WIN32)
86+
vtk_module_link(VTK::RenderingOSPRay
87+
PRIVATE
88+
Winmm)
89+
endif ()
90+
vtk_module_definitions(VTK::RenderingOSPRay PRIVATE VTK_ENABLE_OSPRAY)
91+
endif()
92+
93+
if (VisRTX_FOUND)
94+
vtk_module_link(VTK::RenderingOSPRay PUBLIC VisRTX_DynLoad)
95+
vtk_module_definitions(VTK::RenderingOSPRay PRIVATE VTK_ENABLE_VISRTX)
96+
endif()

Rendering/OSPRay/RTWrapper/Backend.h

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
#pragma once
2+
3+
#include "Types.h"
4+
5+
namespace RTW
6+
{
7+
class Backend
8+
{
9+
public:
10+
virtual ~Backend() = default;
11+
12+
public:
13+
virtual RTWError Init(int *argc, const char **argv) = 0;
14+
virtual void Shutdown() = 0;
15+
16+
virtual bool IsSupported(RTWFeature feature) const = 0;
17+
18+
virtual RTWData NewData(size_t numItems, RTWDataType, const void *source, const uint32_t dataCreationFlags = 0) = 0;
19+
virtual RTWGeometry NewGeometry(const char *type) = 0;
20+
virtual RTWTexture NewTexture(const char* type) = 0;
21+
virtual RTWLight NewLight(RTWRenderer, const char *type) = 0;
22+
virtual RTWLight NewLight2(const char *renderer_type, const char *light_type) = 0;
23+
virtual RTWLight NewLight3(const char *light_type) = 0;
24+
virtual RTWMaterial NewMaterial(RTWRenderer, const char *material_type) = 0;
25+
virtual RTWMaterial NewMaterial2(const char *renderer_type, const char *material_type) = 0;
26+
virtual RTWVolume NewVolume(const char *type) = 0;
27+
virtual RTWTransferFunction NewTransferFunction(const char *type) = 0;
28+
virtual RTWRenderer NewRenderer(const char *type) = 0;
29+
virtual RTWCamera NewCamera(const char *type) = 0;
30+
virtual RTWModel NewModel() = 0;
31+
virtual RTWGeometry NewInstance(RTWModel modelToInstantiate, const rtw::affine3f &transform) = 0;
32+
virtual RTWFrameBuffer NewFrameBuffer(const rtw::vec2i &size, const RTWFrameBufferFormat format, const uint32_t frameBufferChannels) = 0;
33+
34+
virtual void Release(RTWObject) = 0;
35+
36+
virtual void AddGeometry(RTWModel, RTWGeometry) = 0;
37+
virtual void AddVolume(RTWModel, RTWVolume) = 0;
38+
39+
virtual void SetString(RTWObject, const char *id, const char *s) = 0;
40+
virtual void SetObject(RTWObject, const char *id, RTWObject other) = 0;
41+
virtual void SetData(RTWObject, const char *id, RTWData) = 0;
42+
virtual void SetMaterial(RTWGeometry, RTWMaterial) = 0;
43+
virtual void Set1i(RTWObject, const char *id, int32_t x) = 0;
44+
virtual void Set2i(RTWObject, const char *id, int32_t x, int32_t y) = 0;
45+
virtual void Set1f(RTWObject, const char *id, float x) = 0;
46+
virtual void Set2f(RTWObject, const char *id, float x, float y) = 0;
47+
virtual void Set3i(RTWObject, const char *id, int x, int y, int z) = 0;
48+
virtual void Set3f(RTWObject, const char *id, float x, float y, float z) = 0;
49+
virtual void Set4f(RTWObject, const char *id, float x, float y, float z, float w) = 0;
50+
51+
virtual RTWError SetRegion(RTWVolume, void *source, const rtw::vec3i &regionCoords, const rtw::vec3i &regionSize) = 0;
52+
53+
virtual void Commit(RTWObject) = 0;
54+
55+
virtual float RenderFrame(RTWFrameBuffer, RTWRenderer, const uint32_t frameBufferChannels) = 0;
56+
57+
virtual void FrameBufferClear(RTWFrameBuffer, const uint32_t frameBufferChannels) = 0;
58+
virtual const void* MapFrameBuffer(RTWFrameBuffer, const RTWFrameBufferChannel) = 0;
59+
virtual void UnmapFrameBuffer(const void *mapped, RTWFrameBuffer) = 0;
60+
61+
virtual void SetDepthNormalizationGL(RTWFrameBuffer frameBuffer, float clipMin, float clipMax) = 0;
62+
virtual int GetColorTextureGL(RTWFrameBuffer frameBuffer) = 0;
63+
virtual int GetDepthTextureGL(RTWFrameBuffer frameBuffer) = 0;
64+
65+
// Convenience functions (TODO remove)
66+
inline void Setf(RTWObject object, const char *id, float x)
67+
{
68+
Set1f(object, id, x);
69+
}
70+
71+
inline void Set3fv(RTWObject object, const char *id, const float *xyz)
72+
{
73+
Set3f(object, id, xyz[0], xyz[1], xyz[2]);
74+
}
75+
76+
inline void SetVec2f(RTWObject object, const char *id, const rtw::vec2f &v)
77+
{
78+
Set2f(object, id, v.x, v.y);
79+
}
80+
81+
};
82+
}

0 commit comments

Comments
 (0)