Stabilized ImBuf just needs to use the same colorspace as the original
one.
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
Think you need to do the same for float buffer color space. Also, alpha mode needs to be copied.
Maybe add IMB_colormanagegent_copy_settings() or similar name and have assignment of all color space and alpha mode related settings in there.
Comment Actions
also do for float buffer color space and alpha flags (not 100% sure this is really neccessary)
I have left IMB_colormanagegent_copy_settings for later (not sure where this would be used elsewhere)
Comment Actions
Even if the code is not currently seen to be used elsewhere it still worth localizing functionality in a function. One function one meaning, can't beat clarity of that.
It also makes it so if such functionality is needed elsewhere it's easy to find such function.