I recently pulled the latest changes into my fork of MitsubaToFRenderer and when I tried to compile the code I ran into the following error:
include/../src/integrators/bdpt/bdpt.h:76:15: error: redeclaration of ‘unsigned int mitsuba::BDPTConfiguration::m_tBounces’
unsigned int m_tBounces;
I looked at the bdpt.h file and it looks like from lines 66 through 77 you have some duplicate code. I also noticed this in bdpt.cpp in lines 225 to 238.
Deleting the duplicate code fixed the issue for me.
Hi,
I recently pulled the latest changes into my fork of MitsubaToFRenderer and when I tried to compile the code I ran into the following error:
I looked at the
bdpt.h
file and it looks like from lines 66 through 77 you have some duplicate code. I also noticed this inbdpt.cpp
in lines 225 to 238.Deleting the duplicate code fixed the issue for me.
Thanks! Felipe