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
text_end = text_begin + strlen(text_begin); // ImGui:: functions generally already provides a valid text_end, so this is merely to handle direct calls.
4130
-
4131
4127
// Align to be pixel perfect
4132
4128
float x = IM_TRUNC(pos.x);
4133
4129
float y = IM_TRUNC(pos.y);
4134
4130
if (y > clip_rect.w)
4135
4131
return;
4136
4132
4133
+
if (!text_end)
4134
+
text_end = text_begin + strlen(text_begin); // ImGui:: functions generally already provides a valid text_end, so this is merely to handle direct calls.
0 commit comments