Search found 784 matches

by TAO
Wed Mar 02, 2022 7:48 pm
Forum: Development
Topic: Could not locate required Intel Oidn files
Replies: 3
Views: 1597

Re: Could not locate required Intel Oidn files

Sorry, it was my mistake WindowsCompile was on the wrong branch called "oiio_renamed" after I merged the master repo everything was fine and the source compiled with no Deps issue.
by TAO
Wed Mar 02, 2022 12:40 pm
Forum: Development
Topic: Could not locate required Intel Oidn files
Replies: 3
Views: 1597

Re: Could not locate required Intel Oidn files

CMake Error at CMakeLists.txt:126 (MESSAGE): --> Could not locate required Intel Oidn files - Please check It's working flawlessly here: ... ... -- Intel OIDN support: enabled ... ... Compilazione completata. Avvisi: 0 Errori: 0 Tempo trascorso 00:10:52.96 Are you sure you are using the latest vers...
by TAO
Wed Mar 02, 2022 9:53 am
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

Hi. I have compiled the code. It is working but there is no time improvement. I have analyzed the code and in my opinion the problem is in NamedObjectVector::DeleteObj(const std::string &name); This code is dramatically slow. You should add DeleteObj(objectNamesArray) or something like that. Ta...
by TAO
Tue Mar 01, 2022 6:05 pm
Forum: Development
Topic: Could not locate required Intel Oidn files
Replies: 3
Views: 1597

Could not locate required Intel Oidn files

Try to build windows from source with the latest source and I face this issue, I can download and add the Odin Files but I assume it should be automatically downloaded by the build script so I post it to be sure. CMake Error at CMakeLists.txt:126 (MESSAGE): --> Could not locate required Intel Oidn f...
by TAO
Tue Mar 01, 2022 4:34 pm
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

in the last scene, i added deleting multiple lights too, so you need to remove it or added it as blew to other parts of the code. in scene.h line 161 after DeleteLight deceleration add: void DeleteLights(std::vector<std::string> &lightNames); in luxcore.h line 1103 after DeleteLight deceleration...
by TAO
Tue Mar 01, 2022 3:55 pm
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

you need to add it in luxcoreimpl . in luxcoreimpl.h around the line 206 add delete function deceleration, it should look like this: void DeleteObject(const std::string &objName); void DeleteObjects(std::vector<std::string> &objNames); void DeleteObjectsInstance(const std::string &prefix...
by TAO
Tue Mar 01, 2022 9:45 am
Forum: Development
Topic: BlendLuxCore Development
Replies: 911
Views: 515402

Re: BlendLuxCore Development

last night I start to add Ocio in the blender and I am still a little bit fuzzy here because I'm not a blender user. sorry if my questions are dumb. ... By adding Aces to the blender all these options will be added to the blender and I can read them simply and purse them to luxcore. but I'm not sur...
by TAO
Sat Feb 26, 2022 7:47 am
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

You can fill a "Pull Request", anyone can: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request Thank you dade, a will create a pull request, just one question. should I work on new code and tes...
by TAO
Fri Feb 25, 2022 6:28 pm
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

Hi "Dade", if this is a correct approach please give me access to the repo so I can update it and also add more features. Thank you. if I need to improve it I will be more than happy to give me a few suggestions.
by TAO
Fri Feb 25, 2022 6:26 pm
Forum: Development
Topic: How to speedup instances operations?
Replies: 24
Views: 9306

Re: How to speedup instances operations?

I add the code to luxcore, I will request dade to give me access to the luxcore repo so I can push the code on server If you can complete the luxcore from the source you can do it like this. add these lines in loxcore.h after DeleteObject definition around line 1079. it should look like something li...