achabense

Results 16 comments of achabense

So, when `RtlCaptureStackBackTrace` returns `0`, it may due to: 1. A sporadic failure happens. 2. `FramesToSkip` is larger than the number of actual frames. 3. `FramesToSkip` is larger than an...

> 3. `FramesToSkip` is larger than an [undocumented value](https://developercommunity.visualstudio.com/t/passing-framestoskip-greater-than-254-to-rtlcaptur/548661). Notice that this is another, independent problem. It is confirmable by the following code. If the sporadic failure in `RtlCaptureStackBackTrace` is...

Here is the background of this issue: I wanted to display a zoom window in nearest scale mode for a texture shown in linear mode. The problem was worked around...

I also encountered `IM_TRUNC(text_size.x + 0.99999f)` by accident. Initially I planned to make an issue, but post here since it's already talked about here. In a special use case, I...

`SetCursorPosX` is not affected, and `SameLine(0, 0)` + `SetCursorPosX` is able to produce correct behavior. ```cpp static void workaround() { if (ImGui::Begin("Workaround")) { static int spacing = 20; ImGui::SetNextItemWidth(300); ImGui::SliderInt("Spacing",...

I think it's confusing what `SameLine`'s offset means the table context. When the offset is very small, the second button will be moved into the first column. ```cpp static void...