Re: New OpenCL textures and materials evaluation code
Posted: Fri Feb 21, 2020 7:02 pm
By the way, since ray epsilon is still a kernel parameter, I guess I have to pass the default min/max epsilon in BlendLuxCore to KernelCacheFill()?
Show your work, get help, participate in development
https://forums.luxcorerender.org/
Only if your default is different than LuxCore default one.B.Y.O.B. wrote: Fri Feb 21, 2020 7:02 pm By the way, since ray epsilon is still a kernel parameter, I guess I have to pass the default min/max epsilon in BlendLuxCore to KernelCacheFill()?
Thank you but I think that I'll wait for a daily BlendLuxCore build. Will it be available more or less soon or we'll have to wait the final 2.3 to switch the daily build to the 2.4?Dade wrote: Fri Feb 21, 2020 6:54 pmThe binaries for all OS can be downloaded from here: https://dev.azure.com/LuxCoreRender/Lux ... dArtifacts (the down arrow on right)
You can replace your pyluxcore.pyd with the one inside the downloaded win64.zip (yes, it is tricky and suggested only for advanced user).
We have to wait.marcatore wrote: Fri Feb 21, 2020 8:45 pm Thank you but I think that I'll wait for a daily BlendLuxCore build. Will it be available more or less soon or we'll have to wait the final 2.3 to switch the daily build to the 2.4?
A callback during the rendering if a kernel is compiled or before starting the rendering ? (The later is not possible without having the scene).B.Y.O.B. wrote: Wed Apr 08, 2020 9:22 am It would be good to have a LuxCore function that can tell me if a kernel recompilation is necessary, so I can show the UI message about it.
Code: Select all
renderconfig = pyluxcore.RenderConfig(config_props, luxcore_scene)
# Here I would need the check
...
# Locks up Blender, potentially compiles kernels
session = pyluxcore.RenderSession(renderconfig)
It could be RenderConfig methodsB.Y.O.B. wrote: Wed Apr 08, 2020 10:53 am Can it be checked if I have a luxcore scene and renderconfig, but without a rendersession?Code: Select all
renderconfig = pyluxcore.RenderConfig(config_props, luxcore_scene) # Here I would need the check ... # Locks up Blender, potentially compiles kernels session = pyluxcore.RenderSession(renderconfig)