Skip to content

Commit 8560cd9

Browse files
committed
Updating Changes for a15.
Also fixed IECoreGL test environment
1 parent 219ffb4 commit 8560cd9

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed

Changes

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
8.0.0-a15 :
2+
3+
IECore
4+
- Added Parameter::setPresets and getPresets.
5+
- Improved precision of CameraController operations
6+
- Default ParticleReader uses floats (#69)
7+
- Fixed MurmurHash bug where empty strings had no effect on a hash
8+
9+
IECoreGL
10+
- Added Shader::csParameter() for constant time access to "Cs"
11+
- Fixed bug with superimposed instances
12+
- Fixed potential bug in Selector::loadIDShader()
13+
- Fixed state leak for immediate renders
14+
- Fixed PointsPrimitive selection and coloring
15+
- Implemented per-vertex Cs for PointsPrimitive.
16+
17+
IECoreMaya
18+
- Fixed erroneous compute on SceneShape outputObjects
19+
- Fixed tests for Maya 2014
20+
21+
IECoreHoudini
22+
- Added a Cache Manager for the Cortex ObjectPool (#40)
23+
- SceneCache ROP allows caching of un-named top level geo (uses the OBJ node name instead)
24+
- Fixed time dependency issues with SceneCache SOP and OBJs
25+
- OBJ SceneCache nodes expose their transform via python expressions (see the Output tab)
26+
- Expanding and SOP cooking are now interrupt-able using the escape key
27+
- Improvements for expanding SceneCaches in Houdini
28+
- Expanded nodes are now connected to the subnet indirect inputs
29+
- Expanded nodes are placed using Houdini's layout automation
30+
- File parms channel reference their parent
31+
- Path parms channel reference their parent (when appropriate)
32+
- New Push Parms button updates the filters and geometry type throughout the expanded hierarchy (no need to collapse). Note that this does not take hierarchy changes into account, just parameter values.
33+
- FromHoudiniGroupConverter ignores internal groups
34+
- Fixed compatibility issues with Houdini 12.1 (introduced in a14)
35+
- Declared TypeId range
36+
37+
IECoreNuke
38+
- Added support for TCL expressions on SceneCacheReader
39+
- Fixed a few bugs with SceneCacheReader
40+
41+
IECoreArnold
42+
- Fixed TypeId range so it doesn't conflict with IECoreHoudini
43+
44+
IECoreMantra
45+
- Houdini 12.5 compatibility
46+
147
8.0.0-a14 :
248

349
- IECore :

SConstruct

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ SConsignFile()
5353
ieCoreMajorVersion=8
5454
ieCoreMinorVersion=0
5555
ieCorePatchVersion=0
56-
ieCoreVersionSuffix="a14" # used for alpha/beta releases. Example: "a1", "b2", etc.
56+
ieCoreVersionSuffix="a15" # used for alpha/beta releases. Example: "a1", "b2", etc.
5757

5858
###########################################################################################
5959
# Command line options
@@ -1914,6 +1914,7 @@ if env["WITH_GL"] and doConfigure :
19141914

19151915
glTestEnv = testEnv.Clone()
19161916
glTestEnv["ENV"]["PYTHONPATH"] = glTestEnv["ENV"]["PYTHONPATH"] + ":python"
1917+
glTestEnv["ENV"]["IECOREGL_SHADER_INCLUDE_PATHS"] = "./glsl"
19171918
for e in ["DISPLAY", "XAUTHORITY"] :
19181919
if e in os.environ :
19191920
glTestEnv["ENV"][e] = os.environ[e]

0 commit comments

Comments
 (0)