Home
last modified time | relevance | path

Searched refs:DeltaTime (Results 1 – 25 of 36) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/imgui/examples/example_null/
Dmain.cpp20 io.DeltaTime = 1.0f / 60.0f; in main()
/third_party/skia/third_party/externals/imgui/examples/example_null/
Dmain.cpp22 io.DeltaTime = 1.0f / 60.0f; in main()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_android.cpp185 io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f / 60.0f); in ImGui_ImplAndroid_NewFrame()
Dimgui_impl_glut.cpp106 io.DeltaTime = delta_time_ms / 1000.0f; in ImGui_ImplGLUT_NewFrame()
Dimgui_impl_marmalade.cpp282 io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f / 60.0f); in ImGui_Marmalade_NewFrame()
Dimgui_impl_sdl.cpp441 …io.DeltaTime = bd->Time > 0 ? (float)((double)(current_time - bd->Time) / frequency) : (float)(1.0… in ImGui_ImplSDL2_NewFrame()
Dimgui_impl_allegro5.cpp466 io.DeltaTime = bd->Time > 0.0 ? (float)(current_time - bd->Time) : (float)(1.0f / 60.0f); in ImGui_ImplAllegro5_NewFrame()
Dimgui_impl_glfw.cpp446 io.DeltaTime = bd->Time > 0.0 ? (float)(current_time - bd->Time) : (float)(1.0f / 60.0f); in ImGui_ImplGlfw_NewFrame()
Dimgui_impl_win32.cpp321 io.DeltaTime = (float)(current_time - bd->Time) / bd->TicksPerSecond; in ImGui_ImplWin32_NewFrame()
Dimgui_impl_osx.mm255 io.DeltaTime = (float)(current_time - g_Time);
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_freeglut.cpp82 io.DeltaTime = (current_time - g_Time) / 1000.0f; in ImGui_ImplFreeGLUT_NewFrame()
Dimgui_impl_win32.cpp155 io.DeltaTime = (float)(current_time - g_Time) / g_TicksPerSecond; in ImGui_ImplWin32_NewFrame()
Dimgui_impl_sdl.cpp287 …io.DeltaTime = g_Time > 0 ? (float)((double)(current_time - g_Time) / frequency) : (float)(1.0f / … in ImGui_ImplSDL2_NewFrame()
Dimgui_impl_marmalade.cpp275 io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f/60.0f); in ImGui_Marmalade_NewFrame()
Dimgui_impl_glfw.cpp283 io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f/60.0f); in ImGui_ImplGlfw_NewFrame()
Dimgui_impl_allegro5.cpp367 io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f/60.0f); in ImGui_ImplAllegro5_NewFrame()
Dimgui_impl_osx.mm102 io.DeltaTime = current_time - g_Time;
/third_party/flutter/skia/third_party/externals/imgui/examples/example_apple_metal/Shared/
DRenderer.mm50 io.DeltaTime = 1 / float(view.preferredFramesPerSecond ?: 60);
/third_party/mesa3d/src/intel/tools/imgui/
Dimgui_impl_gtk3.cpp248 io.DeltaTime = g_Time > 0 ? ((float)(current_time - g_Time) / 1000000) : (float)(1.0f/60.0f); in ImGui_ImplGtk3_NewFrame()
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui.cpp1142 DeltaTime = 1.0f/60.0f; in ImGuiIO()
3156 …] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f; in UpdateMouseInputs()
3304 …IM_ASSERT(g.IO.DeltaTime >= 0.0f && "Need a positive DeltaTime … in NewFrame()
3334 g.SettingsDirtyTimer -= g.IO.DeltaTime; in NewFrame()
3345 g.Time += g.IO.DeltaTime; in NewFrame()
3376 g.HoveredIdTimer += g.IO.DeltaTime; in NewFrame()
3378 g.HoveredIdNotActiveTimer += g.IO.DeltaTime; in NewFrame()
3385 g.ActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3386 g.LastActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3405 …[i] ? (g.IO.KeysDownDuration[i] < 0.0f ? 0.0f : g.IO.KeysDownDuration[i] + g.IO.DeltaTime) : -1.0f; in NewFrame()
[all …]
/third_party/flutter/skia/tools/viewer/
DImGuiLayer.cpp103 io.DeltaTime = static_cast<float>(currentTime - previousTime); in onPrePaint()
/third_party/mesa3d/src/imgui/
Dimgui.cpp1153 DeltaTime = 1.0f/60.0f; in ImGuiIO()
3221 …] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f; in UpdateMouseInputs()
3369 …IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!… in NewFrame()
3399 g.SettingsDirtyTimer -= g.IO.DeltaTime; in NewFrame()
3410 g.Time += g.IO.DeltaTime; in NewFrame()
3441 g.HoveredIdTimer += g.IO.DeltaTime; in NewFrame()
3443 g.HoveredIdNotActiveTimer += g.IO.DeltaTime; in NewFrame()
3450 g.ActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3451 g.LastActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3470 …[i] ? (g.IO.KeysDownDuration[i] < 0.0f ? 0.0f : g.IO.KeysDownDuration[i] + g.IO.DeltaTime) : -1.0f; in NewFrame()
[all …]
/third_party/skia/tools/viewer/
DImGuiLayer.cpp136 io.DeltaTime = static_cast<float>(currentTime - previousTime); in onPrePaint()
/third_party/skia/third_party/externals/imgui/
Dimgui.cpp1081 DeltaTime = 1.0f / 60.0f; in ImGuiIO()
3697 …] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f; in UpdateMouseInputs()
3749 g.WheelingWindowTimer -= g.IO.DeltaTime; in UpdateMouseWheel()
3972 g.Time += g.IO.DeltaTime; in NewFrame()
3980 … g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx]; in NewFrame()
3981 g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime; in NewFrame()
4025 g.HoveredIdTimer += g.IO.DeltaTime; in NewFrame()
4027 g.HoveredIdNotActiveTimer += g.IO.DeltaTime; in NewFrame()
4039 g.ActiveIdTimer += g.IO.DeltaTime; in NewFrame()
4040 g.LastActiveIdTimer += g.IO.DeltaTime; in NewFrame()
[all …]
/third_party/skia/third_party/externals/imgui/examples/example_apple_metal/
Dmain.mm140 io.DeltaTime = 1 / float(view.preferredFramesPerSecond ?: 60);

12