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
currently if name is nullptr it will implicitly construct a temporary std::string from the call to shader->This.setUniform such as this function and passing nullptr to std::string is UB see 9th constructor so an assertion to check if name is null would help prevent UB in debug builds.