Searched refs:pivot (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/egl/main/
H A Deglconfig.c693 const EGLint pivot = 0; local in function:_eglSortConfigs
699 _eglSwapConfigs(&configs[pivot], &configs[count / 2]);
703 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
705 while (compare(configs[j], configs[pivot], priv_data) > 0)
718 _eglSwapConfigs(&configs[pivot], &configs[j]);
/xsrc/external/mit/MesaLib/dist/src/egl/main/
H A Deglconfig.c693 const EGLint pivot = 0; local in function:_eglSortConfigs
699 _eglSwapConfigs(&configs[pivot], &configs[count / 2]);
703 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
705 while (compare(configs[j], configs[pivot], priv_data) > 0)
718 _eglSwapConfigs(&configs[pivot], &configs[j]);
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.
H A Dimgui.cpp440 - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete).
5128 SetWindowPos(window, ImMax(style.DisplaySafeAreaPadding, window->SetWindowPosVal - window->SizeFull * window->SetWindowPosPivot), 0); // Position given a pivot (e.g. for centering)
6178 void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) argument
6183 g.NextWindowData.PosPivotVal = pivot;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.
H A Dimgui.cpp440 - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete).
5128 SetWindowPos(window, ImMax(style.DisplaySafeAreaPadding, window->SetWindowPosVal - window->SizeFull * window->SetWindowPosPivot), 0); // Position given a pivot (e.g. for centering)
6178 void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) argument
6183 g.NextWindowData.PosPivotVal = pivot;

Completed in 51 milliseconds