Skip to content

Commit a2b5aa0

Browse files
committed
setting version to v2.17.3, regenerating documentation
1 parent 923b05f commit a2b5aa0

File tree

5 files changed

+35
-29
lines changed

5 files changed

+35
-29
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Version History
22
---------------
33

4+
### New Features in Embree 2.17.3
5+
- Fixed GCC compile warning in debug mode.
6+
- Fixed bug of ribbon curve intersector when derivative was zero.
7+
- Installing all static libraries when EMBREE_STATIC_LIB is enabled.
8+
49
### New Features in Embree 2.17.2
510
- Made BVH build of curve geometry deterministic.
611

@@ -502,3 +507,4 @@ Version History
502507
- Integration with the Intel® SPMD Program Compiler (ISPC)
503508
- Instantiation and fast BVH reconstruction
504509
- Example photo-realistic rendering engine for both C++ and ISPC
510+

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
SET(EMBREE_VERSION_MAJOR 2)
1818
SET(EMBREE_VERSION_MINOR 17)
1919
SET(EMBREE_VERSION_PATCH 3)
20-
SET(EMBREE_VERSION_NOTE "-alpha.1")
20+
SET(EMBREE_VERSION_NOTE "")
2121
SET(EMBREE_VERSION ${EMBREE_VERSION_MAJOR}.${EMBREE_VERSION_MINOR}.${EMBREE_VERSION_PATCH})
2222
MATH(EXPR EMBREE_VERSION_NUMBER "10000*${EMBREE_VERSION_MAJOR} + 100*${EMBREE_VERSION_MINOR} + ${EMBREE_VERSION_PATCH}")
2323
SET(CPACK_RPM_PACKAGE_RELEASE 1)

README.md

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% Embree: High Performance Ray Tracing Kernels 2.17.2
1+
% Embree: High Performance Ray Tracing Kernels 2.17.3
22
% Intel Corporation
33

44
Embree Overview
@@ -94,28 +94,28 @@ Windows Installer
9494
-----------------
9595

9696
You can install the Embree library using the Windows MSI installer
97-
[embree-2.17.2-x64.msi](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x64.msi). This
97+
[embree-2.17.3-x64.msi](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x64.msi). This
9898
will install the 64-bit Embree version by default in `Program
99-
Files\Intel\Embree v2.17.2 x64`.
99+
Files\Intel\Embree v2.17.3 x64`.
100100

101101
You have to set the path to the `bin` folders manually to your `PATH`
102102
environment variable for applications to find Embree.
103103

104104
To compile applications with Embree using CMake please have a look at
105105
the find_embree tutorial. To compile this tutorial, you need to set
106106
the `embree_DIR` CMake variable of this tutorial to `Program
107-
Files\Intel\Embree v2.17.2 x64`.
107+
Files\Intel\Embree v2.17.3 x64`.
108108

109109
To uninstall Embree again open `Programs and Features` by clicking the
110110
`Start button`, clicking `Control Panel`, clicking `Programs`, and
111111
then clicking `Programs and Features`. Select `Embree
112-
2.17.2 x64` and uninstall it.
112+
2.17.3 x64` and uninstall it.
113113

114114
Windows ZIP File
115115
-----------------
116116

117117
Embree is also delivered as a ZIP file
118-
[embree-2.17.2.x64.windows.zip](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x64.windows.zip). After
118+
[embree-2.17.3.x64.windows.zip](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x64.windows.zip). After
119119
unpacking this ZIP file you should set the path to the `lib` folder
120120
manually to your `PATH` environment variable for applications to find
121121
Embree. To compile applications with Embree you also have to set the
@@ -129,18 +129,18 @@ Linux RPMs
129129
----------
130130

131131
Uncompress the 'tar.gz' file
132-
[embree-2.17.2.x86_64.rpm.tar.gz](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x86_64.rpm.tar.gz)
132+
[embree-2.17.3.x86_64.rpm.tar.gz](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x86_64.rpm.tar.gz)
133133
to
134134
obtain the individual RPM files:
135135

136-
tar xzf embree-2.17.2.x86_64.rpm.tar.gz
136+
tar xzf embree-2.17.3.x86_64.rpm.tar.gz
137137

138138
To install the Embree using the RPM packages on your Linux system type
139139
the following:
140140

141-
sudo rpm --install embree-lib-2.17.2-1.x86_64.rpm
142-
sudo rpm --install embree-devel-2.17.2-1.noarch.rpm
143-
sudo rpm --install embree-examples-2.17.2-1.x86_64.rpm
141+
sudo rpm --install embree-lib-2.17.3-1.x86_64.rpm
142+
sudo rpm --install embree-devel-2.17.3-1.noarch.rpm
143+
sudo rpm --install embree-examples-2.17.3-1.x86_64.rpm
144144

145145
You also have to install the Intel® Threading Building Blocks (TBB)
146146
using `yum`:
@@ -152,13 +152,13 @@ filed into DEB files using the `alien` tool:
152152

153153
sudo apt-get install alien dpkg-dev debhelper build-essential
154154

155-
sudo alien embree-lib-2.17.2-1.x86_64.rpm
156-
sudo alien embree-devel-2.17.2-1.noarch.rpm
157-
sudo alien embree-examples-2.17.2-1.x86_64.rpm
155+
sudo alien embree-lib-2.17.3-1.x86_64.rpm
156+
sudo alien embree-devel-2.17.3-1.noarch.rpm
157+
sudo alien embree-examples-2.17.3-1.x86_64.rpm
158158

159-
sudo dpkg -i embree-devel_2.17.2-2_all.deb
160-
sudo dpkg -i embree-examples_2.17.2-2_amd64.deb
161-
sudo dpkg -i embree-lib_2.17.2-2_amd64.deb
159+
sudo dpkg -i embree-devel_2.17.3-2_all.deb
160+
sudo dpkg -i embree-examples_2.17.3-2_amd64.deb
161+
sudo dpkg -i embree-lib_2.17.3-2_amd64.deb
162162

163163
Also install the Intel® Threading Building Blocks (TBB) using `apt-get`:
164164

@@ -184,21 +184,21 @@ the tutorials to start them.
184184

185185
To uninstall Embree again just execute the following:
186186

187-
sudo rpm --erase embree-lib-2.17.2-1.x86_64
188-
sudo rpm --erase embree-devel-2.17.2-1.noarch
189-
sudo rpm --erase embree-examples-2.17.2-1.x86_64
187+
sudo rpm --erase embree-lib-2.17.3-1.x86_64
188+
sudo rpm --erase embree-devel-2.17.3-1.noarch
189+
sudo rpm --erase embree-examples-2.17.3-1.x86_64
190190

191191
Linux tar.gz files
192192
------------------
193193

194194
The Linux version of Embree is also delivered as a tar.gz file
195-
[embree-2.17.2.x86_64.linux.tar.gz](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x86_64.linux.tar.gz). Unpack
195+
[embree-2.17.3.x86_64.linux.tar.gz](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x86_64.linux.tar.gz). Unpack
196196
this file using `tar` and source the provided `embree-vars.sh` (if you
197197
are using the bash shell) or `embree-vars.csh` (if you are using the
198198
C shell) to setup the environment properly:
199199

200-
tar xzf embree-2.17.2.x64.linux.tar.gz
201-
source embree-2.17.2.x64.linux/embree-vars.sh
200+
tar xzf embree-2.17.3.x64.linux.tar.gz
201+
source embree-2.17.3.x64.linux/embree-vars.sh
202202

203203
If you want to ship Embree with your application best use the Embree
204204
version provided through the tar.gz file.
@@ -211,7 +211,7 @@ Mac OS X PKG Installer
211211

212212
To install the Embree library on your Mac OS X system use the
213213
provided package installer inside
214-
[embree-2.17.2.x86_64.dmg](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x86_64.dmg). This
214+
[embree-2.17.3.x86_64.dmg](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x86_64.dmg). This
215215
will install Embree by default into `/opt/local/lib` and
216216
`/opt/local/include` directories. The Embree tutorials are installed
217217
into the `/Applications/Embree2` folder.
@@ -233,13 +233,13 @@ Mac OS X tar.gz file
233233
---------------------
234234

235235
The Mac OS X version of Embree is also delivered as a tar.gz file
236-
[embree-2.17.2.x86_64.macosx.tar.gz](https://github.com/embree/embree/releases/download/v2.17.2/embree-2.17.2.x86_64.macosx.tar.gz). Unpack
236+
[embree-2.17.3.x86_64.macosx.tar.gz](https://github.com/embree/embree/releases/download/v2.17.3/embree-2.17.3.x86_64.macosx.tar.gz). Unpack
237237
this file using `tar` and source the provided `embree-vars.sh` (if you
238238
are using the bash shell) or `embree-vars.csh` (if you are using the
239239
C shell) to setup the environment properly:
240240

241-
tar xzf embree-2.17.2.x64.macosx.tar.gz
242-
source embree-2.17.2.x64.macosx/embree-vars.sh
241+
tar xzf embree-2.17.3.x64.macosx.tar.gz
242+
source embree-2.17.3.x64.macosx/embree-vars.sh
243243

244244
If you want to ship Embree with your application please use the Embree
245245
library of the provided tar.gz file. The library name of that Embree

include/embree2/rtcore_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
#define RTCORE_VERSION_MINOR 17
1919
#define RTCORE_VERSION_PATCH 3
2020
#define RTCORE_VERSION 21703
21-
#define RTCORE_VERSION_STRING "2.17.3-alpha.1"
21+
#define RTCORE_VERSION_STRING "2.17.3"

readme.pdf

144 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)