You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After getting the renderer v2 update there was an issue with the linux version:
Logger where never instantiated. It seems clang will not instantiate static properties of class that are never included. To fix that I used the pattern that is used for serialization. A shared_ptr is defined as a static property of the defining struct and instantiated inline.
Unfortunately it seems to have broke the windows linking issue of ad_processor_loggerinitialization, ad_profiler_loggerinitialization and ad_renderer_loggerinitialization.
The text was updated successfully, but these errors were encountered:
After getting the renderer v2 update there was an issue with the linux version:
Logger where never instantiated. It seems clang will not instantiate static properties of class that are never included. To fix that I used the pattern that is used for serialization. A shared_ptr is defined as a static property of the defining struct and instantiated inline.
Unfortunately it seems to have broke the windows linking issue of ad_processor_loggerinitialization, ad_profiler_loggerinitialization and ad_renderer_loggerinitialization.
The text was updated successfully, but these errors were encountered: