|
Re: Review: Inital pass at GCC visibility
Looks good to me.
(I tested this, as well as all the related post-email updates).
-- Jeremy
<malcolmh...@...> wrote:
Looks good to me.
(I tested this, as well as all the related post-email updates).
-- Jeremy
<malcolmh...@...> wrote:
|
By
Jeremy Selan <jeremy...@...>
·
#197
·
|
|
Reference !<Colorspace>
Do you think the 'reference' colorspace should in a separate section in the profile? This would be similar to the PCS in the icc world. It could be an extra line 'reference: !<ColorSpace> ...' before
Do you think the 'reference' colorspace should in a separate section in the profile? This would be similar to the PCS in the icc world. It could be an extra line 'reference: !<ColorSpace> ...' before
|
By
Malcolm Humphreys <malcolmh...@...>
·
#209
·
|
|
Review: added new yaml-cpp with YAML::Newline feature
- added yaml-cpp r443 which contains the new YAML::Newline emitter manipulator
http://stackoverflow.com/questions/3982901/how-to-emit-a-blank-line-using-yaml-cpp
- added some 'out << YAML::Newline' to
- added yaml-cpp r443 which contains the new YAML::Newline emitter manipulator
http://stackoverflow.com/questions/3982901/how-to-emit-a-blank-line-using-yaml-cpp
- added some 'out << YAML::Newline' to
|
By
Malcolm Humphreys <malcolmh...@...>
·
#207
·
|
|
Re: Review: Inital pass at searchpath impl
- fixed a bug with abs searchpath entries
- empty '::' searchpaths now resolve to the profile
- fixed a bug with abs searchpath entries
- empty '::' searchpaths now resolve to the profile
|
By
Malcolm Humphreys <malcolmh...@...>
·
#202
·
|
|
Re: Review: Inital pass at searchpath impl
- removed the EnvExpand recusion limits as this didn't work in the production env which
has more than 30 env vars. might want to add limits in later if this becomes a
- removed the EnvExpand recusion limits as this didn't work in the production env which
has more than 30 env vars. might want to add limits in later if this becomes a
|
By
Malcolm Humphreys <malcolmh...@...>
·
#201
·
|
|
Review: Inital pass at searchpath impl
Inital pass at searchpath impl
- added environment variable string expansion code in PathUtils.h (GetEnvMap() & EnvExpand())
- added FileExists() function to PathUtils.h
- added searchpath
Inital pass at searchpath impl
- added environment variable string expansion code in PathUtils.h (GetEnvMap() & EnvExpand())
- added FileExists() function to PathUtils.h
- added searchpath
|
By
Malcolm Humphreys <malcolmh...@...>
·
#200
·
|
|
Review: fix the gcc visibility on linux
- removed some #pragma's which were breaking the build on linux,
there are a few more warnings now to do with template<> visibility
in yaml-cpp but it should now link on linux (was working on
- removed some #pragma's which were breaking the build on linux,
there are a few more warnings now to do with template<> visibility
in yaml-cpp but it should now link on linux (was working on
|
By
Malcolm Humphreys <malcolmh...@...>
·
#195
·
|
|
Review: Inital pass at GCC visibility
- Inital pass at GCC visibility http://gcc.gnu.org/wiki/Visibility
to hide unnecessary public symbols in an effort to maintain ABI
- Added -fvisibility-inlines-hidden and -fvisibility=hidden to the
- Inital pass at GCC visibility http://gcc.gnu.org/wiki/Visibility
to hide unnecessary public symbols in an effort to maintain ABI
- Added -fvisibility-inlines-hidden and -fvisibility=hidden to the
|
By
Malcolm Humphreys <malcolmh...@...>
·
#196
·
|
|
Re: Review: Misc Yaml Updates
Done.
-- jeremy
By
Jeremy Selan <jeremy...@...>
·
#192
·
|
|
OCIO 0.7.0 posted
The first release based on YAML is now ready for download. Thanks to
Malcolm for his help on this.
An updated set of 0.7-format color configs (with many more color
spaces!) will be posted
The first release based on YAML is now ready for download. Thanks to
Malcolm for his help on this.
An updated set of 0.7-format color configs (with many more color
spaces!) will be posted
|
By
Jeremy Selan <jeremy...@...>
·
#191
·
|
|
Re: Review: Additional Yaml bugfixes
All LGTM, sorry most of these were introduced by me in the switch
All LGTM, sorry most of these were introduced by me in the switch
|
By
Malcolm Humphreys <malcolmh...@...>
·
#194
·
|
|
Re: Review: renamed config.writeToStream to config.serialize
Yep, I was thinking about doing that but it's not straight forward if we don't want yaml-cpp in the public interfaces for the Transforms()s.
It could also be possible if we have some form of
Yep, I was thinking about doing that but it's not straight forward if we don't want yaml-cpp in the public interfaces for the Transforms()s.
It could also be possible if we have some form of
|
By
Malcolm Humphreys <malcolmh...@...>
·
#193
·
|
|
Review: Additional Yaml bugfixes
These commits fix a bunch of bugs we discovered when testing our
in-house apps on real production color configurations.
* Yaml serialization fix, resource_path is updated properly
* Relative path
These commits fix a bunch of bugs we discovered when testing our
in-house apps on real production color configurations.
* Yaml serialization fix, resource_path is updated properly
* Relative path
|
By
Jeremy Selan <jeremy...@...>
·
#188
·
|
|
Re: Review: renamed config.writeToStream to config.serialize
Thinking about this topic further, I think the right thing to do it to
have __str__ call through to the C++ ostream implementation for each
class. (If that happens to use yaml, great! But it's not a
Thinking about this topic further, I think the right thing to do it to
have __str__ call through to the C++ ostream implementation for each
class. (If that happens to use yaml, great! But it's not a
|
By
Jeremy Selan <jeremy...@...>
·
#187
·
|
|
Re: Review: Misc Yaml Updates
Looking at this quickly it would be a pretty small patch to add out << YAML::NewLines(3);
Something along the lines of:
--emittermanip.h--
struct _NewLines {
_NewLines(int value_): value(value_)
Looking at this quickly it would be a pretty small patch to add out << YAML::NewLines(3);
Something along the lines of:
--emittermanip.h--
struct _NewLines {
_NewLines(int value_): value(value_)
|
By
Malcolm Humphreys <malcolmh...@...>
·
#190
·
|
|
Re: Review: Misc Yaml Updates
This looks all pretty good to me
- Can we call AddBaseTransformPropertiesToYAMLMap = EmitBaseTransformKeyValues
- Can we call ReadBaseTransformPropertiesFromYAMLMap = ReadBaseTransformKeyValues, and
This looks all pretty good to me
- Can we call AddBaseTransformPropertiesToYAMLMap = EmitBaseTransformKeyValues
- Can we call ReadBaseTransformPropertiesFromYAMLMap = ReadBaseTransformKeyValues, and
|
By
Malcolm Humphreys <malcolmh...@...>
·
#189
·
|
|
Review: Misc Yaml Updates
A bunch of changes related to yaml serialization:
* ColorSpace transform a base Transform, instead of GroupTransform.
* GroupTransform Yaml serialization supports nesting
* Direction is now
A bunch of changes related to yaml serialization:
* ColorSpace transform a base Transform, instead of GroupTransform.
* GroupTransform Yaml serialization supports nesting
* Direction is now
|
By
Jeremy Selan <jeremy...@...>
·
#186
·
|
|
Re: Review: renamed config.writeToStream to config.serialize
I did see that comment, forgot to address it in the last post.
I'd prefer to not expose the exact yaml serialization using __str__().
I'm pretty biased against "non-obvious" operator overloading
I did see that comment, forgot to address it in the last post.
I'd prefer to not expose the exact yaml serialization using __str__().
I'm pretty biased against "non-obvious" operator overloading
|
By
Jeremy Selan <jeremy...@...>
·
#184
·
|
|
Re: Review: added missing cmake NAME arg to add_test()
looks good to me.
<malcolmh...@...> wrote:
looks good to me.
<malcolmh...@...> wrote:
|
By
Jeremy Selan <jeremy...@...>
·
#180
·
|
|
Review: added missing cmake NAME arg to add_test()
- Added missing NAME arg to add_test() as this was failing to work on linux (worked on OSX, small cmake
- Added missing NAME arg to add_test() as this was failing to work on linux (worked on OSX, small cmake
|
By
Malcolm Humphreys <malcolmh...@...>
·
#185
·
|