Use std::unique_ptr for PIMPL
Many classes in the rendering library used std::shared_ptr
for PIMPL. They could and should be changed to use std::unique_ptr
since the PIMPL are supposed to be owned by multiple instances.
System updates will be applied on Nov 25th between 7am and 9am, EST (UTC-05:00). This site will have intermittent downtime during that time.
Many classes in the rendering library used std::shared_ptr
for PIMPL. They could and should be changed to use std::unique_ptr
since the PIMPL are supposed to be owned by multiple instances.