| 2058 | } |
| 2059 | |
| 2060 | void transparentTextWrapped( const char* fmt, ... ) |
| 2061 | { |
| 2062 | auto transparentColor = ImGui::GetStyleColorVec4( ImGuiCol_Text ); |
| 2063 | transparentColor.w *= 0.5f; |
| 2064 | ImGui::PushStyleColor( ImGuiCol_Text, transparentColor ); |
| 2065 | va_list args; |
| 2066 | va_start( args, fmt ); |
| 2067 | ImGui::TextWrappedV( fmt, args ); |
| 2068 | va_end( args ); |
| 2069 | ImGui::PopStyleColor(); |
| 2070 | } |
| 2071 | |
| 2072 | void notificationFrame( NotificationType type, const std::string& str ) |
| 2073 | { |
no outgoing calls
no test coverage detected