RoccoZero

Results 3 comments of RoccoZero

> Thanks, will check today did you find the problem?

I want to say that it is impossible to use ImGui.ImDrawCallbackResetRenderState because of the managed delegate ``` var draw_list = ImGui.GetWindowDrawList(); draw_list.AddDrawCmd(); draw_list.AddCallback(ImGui_ImplBlur_Begin, null); draw_list.AddCallback(ImGui_ImplBlur_Pass, paramss); draw_list.AddCallback(ImGui_ImplBlur_End, null); draw_list.AddCallback(ImGui.ImDrawCallbackResetRenderState, null,...

we need these methods ``` class ImGui { public unsafe static void AddCallback(ImDrawListPtr self, delegate* callback, void* userdata, nuint userdataSize); } struct ImDrawListPtr { public unsafe void AddCallback(delegate* callback, void*...