Home
last modified time | relevance | path

Searched refs:v_speed (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_scroll.c31 float h_speed, v_speed; member
138 s->v_pos += s->v_speed * in->height; in scroll()
187 …{ "vertical", "set the vertical scrolling speed", OFFSET(v_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.…
188 …{ "v", "set the vertical scrolling speed", OFFSET(v_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.…
/third_party/skia/third_party/externals/imgui/
Dimgui.h536 …IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min =…
537 …IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_mi…
538 …IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_mi…
539 …IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_mi…
540 …ge2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_m…
541 …IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, in…
542 …IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0,…
543 …IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0,…
544 …IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0,…
545 …tRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min…
[all …]
Dimgui_widgets.cpp2226 bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const … in DragBehaviorT() argument
2235 if (v_speed == 0.0f && is_clamped && (v_max - v_min < FLT_MAX)) in DragBehaviorT()
2236 v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); in DragBehaviorT()
2252 v_speed = ImMax(v_speed, GetMinimumStepAtDecimalPrecision(decimal_precision)); in DragBehaviorT()
2254 adjust_delta *= v_speed; in DragBehaviorT()
2341 bool ImGui::DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void*… in DragBehavior() argument
2361 …v; bool r = DragBehaviorT<ImS32, ImS32, float>(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const … in DragBehavior()
2362 …v; bool r = DragBehaviorT<ImU32, ImS32, float>(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const … in DragBehavior()
2363 …_v; bool r = DragBehaviorT<ImS32, ImS32, float>(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const … in DragBehavior()
2364 …_v; bool r = DragBehaviorT<ImU32, ImS32, float>(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const … in DragBehavior()
[all …]
Dimgui_internal.h2686 … DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_mi…
2698 …_T> IMGUI_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, T v_min, T v_max…
/third_party/mesa3d/src/imgui/
Dimgui.h413 …IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min =…
414 …IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_mi…
415 …IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_mi…
416 …IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_mi…
417 …ge2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_m…
418 …IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, in…
419 …IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0,…
420 …IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0,…
421 …IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0,…
422 …tRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min…
[all …]
Dimgui_widgets.cpp1730 bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const … in DragBehaviorT() argument
1739 if (v_speed == 0.0f && has_min_max && (v_max - v_min < FLT_MAX)) in DragBehaviorT()
1740 v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); in DragBehaviorT()
1756 v_speed = ImMax(v_speed, GetMinimumStepAtDecimalPrecision(decimal_precision)); in DragBehaviorT()
1758 adjust_delta *= v_speed; in DragBehaviorT()
1834 bool ImGui::DragBehavior(ImGuiID id, ImGuiDataType data_type, void* v, float v_speed, const void* v… in DragBehavior() argument
1849 …32: return DragBehaviorT<ImS32, ImS32, float >(data_type, (ImS32*)v, v_speed, v_min ? *(const … in DragBehavior()
1850 …32: return DragBehaviorT<ImU32, ImS32, float >(data_type, (ImU32*)v, v_speed, v_min ? *(const … in DragBehavior()
1851 …64: return DragBehaviorT<ImS64, ImS64, double>(data_type, (ImS64*)v, v_speed, v_min ? *(const … in DragBehavior()
1852 …64: return DragBehaviorT<ImU64, ImS64, double>(data_type, (ImU64*)v, v_speed, v_min ? *(const … in DragBehavior()
[all …]
Dimgui_internal.h1472 … DragBehavior(ImGuiID id, ImGuiDataType data_type, void* v, float v_speed, const void* v_mi…
1482 …_T> IMGUI_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, const T v_min, c…
/third_party/python/Tools/demo/
Dsortvisu.py531 self.v_speed = StringVar(self.master)
532 self.v_speed.set("normal")
533 self.m_speed = OptionMenu(self.botleftframe, self.v_speed,
597 self.array.setspeed(self.v_speed.get())
616 self.v_speed.set("single-step")
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt294 - DragScalar: Add default value for v_speed argument to match higher-level functions. (#3922) [@eli…