Skip to content

Commit 1de9a1f

Browse files
committed
Update to the R3DSDK 9.1.2
Signed-off-by: Peter Kovář <[email protected]>
1 parent 03ba035 commit 1de9a1f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/r3d.imageio/r3dinput.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// https://www.red.com/download/r3d-sdk
77
//
88
// The code has been tested with the version 9.1.1 installed in
9-
// /opt/R3DSDKv9_1_1 directory and setting up the variable
10-
// export R3DSDK_ROOT="/opt/R3DSDKv9_1_1"
9+
// /opt/R3DSDKv9_1_2 directory and setting up the variable
10+
// export R3DSDK_ROOT="/opt/R3DSDKv9_1_2"
1111

1212
#include <algorithm>
1313
#include <cassert>
@@ -149,7 +149,7 @@ OIIO_EXPORT const char*
149149
r3d_imageio_library_version()
150150
{
151151
// Note: SDK version can differ from the actual library loaded
152-
return "R3D 9.1.1";
152+
return "R3D 9.1.2";
153153
}
154154

155155
OIIO_EXPORT ImageInput*
@@ -172,11 +172,11 @@ R3dInput::initialize()
172172
std::string library_path
173173
= Sysutil::getenv("OIIO_R3D_LIBRARY_PATH",
174174
#if defined(__linux__)
175-
"/opt/R3DSDKv9_1_1/Redistributable/linux"
175+
"/opt/R3DSDKv9_1_2/Redistributable/linux"
176176
#elif defined(__APPLE__)
177-
"/Library/R3DSDKv9_1_1/Redistributable/mac"
177+
"/Library/R3DSDKv9_1_2/Redistributable/mac"
178178
#elif defined(__WINDOWS__)
179-
"C:\\R3DSDKv9_1_1\\Redistributable\\win"
179+
"C:\\R3DSDKv9_1_2\\Redistributable\\win"
180180
#else
181181
# error "Unknown OS"
182182
#endif

0 commit comments

Comments
 (0)