Searched refs:FrameCount (Results 1 – 10 of 10) sorted by relevance
3006 return GImGui->FrameCount; in GetFrameCount()3310 …IM_ASSERT((g.FrameCount == 0 || g.FrameCountEnded == g.FrameCount) && "Forgot to call Render() or… in NewFrame()3347 g.FrameCount += 1; in NewFrame()3699 if (g.FrameCountEnded == g.FrameCount) // Don't process EndFrame() multiple times. in EndFrame()3740 …bool is_elapsed = (g.DragDropPayload.DataFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags… in EndFrame()3746 if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount) in EndFrame()3755 g.FrameCountEnded = g.FrameCount; in EndFrame()3790 if (g.FrameCountEnded != g.FrameCount) in Render()3792 g.FrameCountRendered = g.FrameCount; in Render()4748 …IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and… in Begin()[all …]
127 #define IMGUI_DEBUG_LOG(_FMT,...) printf("[%05d] " _FMT, GImGui->FrameCount, __VA_ARGS__)747 int FrameCount; member909 FrameCount = 0; in ImGuiContext()
5857 if (tab_bar->CurrFrameVisible == g.FrameCount) in BeginTabBarEx()5877 tab_bar->CurrFrameVisible = g.FrameCount; in BeginTabBarEx()5907 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in EndTabBar()6069 …const float scrolling_speed = (tab_bar->PrevFrameVisible + 1 < g.FrameCount) ? FLT_MAX : (g.IO.Del… in TabBarLayout()6299 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in TabItemEx()6301 const bool tab_appearing = (tab->LastFrameVisible + 1 < g.FrameCount); in TabItemEx()6302 tab->LastFrameVisible = g.FrameCount; in TabItemEx()6337 tab->LastFrameSelected = g.FrameCount; in TabItemEx()
3066 return GImGui->FrameCount; in GetFrameCount()3369 …IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!… in NewFrame()3375 …IM_ASSERT((g.FrameCount == 0 || g.FrameCountEnded == g.FrameCount) && "Forgot to call Render() or… in NewFrame()3412 g.FrameCount += 1; in NewFrame()3764 if (g.FrameCountEnded == g.FrameCount) // Don't process EndFrame() multiple times. in EndFrame()3805 …bool is_elapsed = (g.DragDropPayload.DataFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags… in EndFrame()3811 if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount) in EndFrame()3820 g.FrameCountEnded = g.FrameCount; in EndFrame()3856 if (g.FrameCountEnded != g.FrameCount) in Render()3858 g.FrameCountRendered = g.FrameCount; in Render()[all …]
130 #define IMGUI_DEBUG_LOG(_FMT,...) printf("[%05d] " _FMT, GImGui->FrameCount, __VA_ARGS__)773 int FrameCount; member943 FrameCount = 0; in ImGuiContext()
5888 if (tab_bar->CurrFrameVisible == g.FrameCount) in BeginTabBarEx()5908 tab_bar->CurrFrameVisible = g.FrameCount; in BeginTabBarEx()5939 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in EndTabBar()6110 …const float scrolling_speed = (tab_bar->PrevFrameVisible + 1 < g.FrameCount) ? FLT_MAX : (g.IO.Del… in TabBarLayout()6382 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in TabItemEx()6384 const bool tab_appearing = (tab->LastFrameVisible + 1 < g.FrameCount); in TabItemEx()6385 tab->LastFrameVisible = g.FrameCount; in TabItemEx()6424 tab->LastFrameSelected = g.FrameCount; in TabItemEx()
3497 return GImGui->FrameCount; in GetFrameCount()3514 if (viewport->DrawListsLastFrame[drawlist_no] != g.FrameCount) in GetViewportDrawList()3519 viewport->DrawListsLastFrame[drawlist_no] = g.FrameCount; in GetViewportDrawList()3974 g.FrameCount += 1; in NewFrame()4421 if (g.FrameCountEnded == g.FrameCount) in EndFrame()4449 …bool is_elapsed = (g.DragDropPayload.DataFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags… in EndFrame()4455 …if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount && !(g.DragDropSourceFlags & ImG… in EndFrame()4464 g.FrameCountEnded = g.FrameCount; in EndFrame()4506 if (g.FrameCountEnded != g.FrameCount) in Render()4508 g.FrameCountRendered = g.FrameCount; in Render()[all …]
195 #define IMGUI_DEBUG_LOG(_FMT,...) printf("[%05d] " _FMT, GImGui->FrameCount, __VA_ARGS__)1468 int FrameCount; member1720 FrameCount = 0; in ImGuiContext()
7199 if (tab_bar->CurrFrameVisible == g.FrameCount) in BeginTabBarEx()7220 tab_bar->CurrFrameVisible = g.FrameCount; in BeginTabBarEx()7261 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in EndTabBar()7491 …const bool teleport = (tab_bar->PrevFrameVisible + 1 < g.FrameCount) || (tab_bar->ScrollingTargetD… in TabBarLayout()7914 const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); in TabItemEx()7916 const bool tab_appearing = (tab->LastFrameVisible + 1 < g.FrameCount); in TabItemEx()7918 tab->LastFrameVisible = g.FrameCount; in TabItemEx()7956 tab->LastFrameSelected = g.FrameCount; in TabItemEx()
335 … const int instance_no = (table->LastFrameActive != g.FrameCount) ? 0 : table->InstanceCurrent + 1; in BeginTableEx()359 table->LastFrameActive = g.FrameCount; in BeginTableEx()