Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.

Commit ea72ad9

Browse files
author
Bruce Cherniak
committed
Merge branch 'release-0.9.1'
2 parents a170d41 + af49d50 commit ea72ad9

File tree

11 files changed

+7348
-3959
lines changed

11 files changed

+7348
-3959
lines changed

.gitlab-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,20 @@ build-windows-msvc15-dev:
210210
script:
211211
- gitlab\win-dev.ps1
212212

213+
build-windows-icl:
214+
stage: build
215+
extends:
216+
- .windows
217+
tags: [ win, icc19_2 ]
218+
script:
219+
- mkdir build-win-icl
220+
- cd build-win-icl
221+
- cmake -L .. -G "Visual Studio 16 2019" -T "Intel C++ Compiler 19.2" -DCMAKE_INSTALL_PREFIX="install"
222+
- cmake --build . --config Release --target install
223+
artifacts:
224+
paths:
225+
- build-win-icl
226+
213227
build-kw-dev:
214228
stage: build
215229
extends: .ubuntu18.04

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Version History
22
---------------
33

4+
### Changes in OSPRay Studio v0.9.1
5+
6+
- Compatible with OSPRay release v2.8.0
7+
8+
- Features and Improvements
9+
- Added simplified basic 5-step build instructions to README.md
10+
<br>
11+
12+
- Bug Fixes:
13+
- Fixed compatibility with Intel® C++ Compiler Classic on Windows OS.
14+
- Fixed potential crash in FileDialog selection widget.
15+
- Fixed "gray screen" no-image issue seen on some older architectures
16+
417
### Changes in OSPRay Studio v0.9.0
518

619
- Compatible with OSPRay release v2.8.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required(VERSION 3.15)
55

6-
project(ospray_studio VERSION 0.9.0 LANGUAGES CXX)
6+
project(ospray_studio VERSION 0.9.1 LANGUAGES CXX)
77

88
include(GNUInstallDirs)
99
include(ProcessorCount)

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OSPRay Studio
22

3-
This is release v0.9.0 of Intel® OSPRay Studio. It is released under the
3+
This is release v0.9.1 of Intel® OSPRay Studio. It is released under the
44
Apache 2.0 license.
55

66
Visit [**OSPRay Studio**](http://www.ospray.org/ospray_studio)
@@ -25,6 +25,15 @@ or scivis renderer.
2525

2626
## Building OSPRay Studio
2727

28+
tl;dr - For most installations, these 5 steps will build a plain vanilla OSPRay Studio
29+
``` bash
30+
1. git clone https://github.com/ospray/ospray_studio.git
31+
2. mkdir ospray_studio/build
32+
3. cd ospray_studio/build
33+
4. cmake ..
34+
5. cmake --build .
35+
```
36+
2837
OSPRay Studio has the following required and optional dependencies.
2938

3039
### Required dependencies

external/imgui/imgui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Index of this file:
104104
#endif
105105

106106
// Disable some of MSVC most aggressive Debug runtime checks in function header/footer (used in some simple/low-level functions)
107-
#if defined(_MSC_VER) && !defined(__clang__) && !defined(IMGUI_DEBUG_PARANOID)
107+
#if defined(_MSC_VER) && !defined(__clang__) && !defined(__INTEL_COMPILER) && !defined(IMGUI_DEBUG_PARANOID)
108108
#define IM_MSVC_RUNTIME_CHECKS_OFF __pragma(runtime_checks("",off)) __pragma(check_stack(off)) __pragma(strict_gs_check(push,off))
109109
#define IM_MSVC_RUNTIME_CHECKS_RESTORE __pragma(runtime_checks("",restore)) __pragma(check_stack()) __pragma(strict_gs_check(pop))
110110
#else

0 commit comments

Comments
 (0)