Home
last modified time | relevance | path

Searched refs:min_w (Results 1 – 13 of 13) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshow.cpp649 gint min_w, max_w; in gst_dshow_new_video_caps() local
716 min_w = pin_mediatype->vscc.MinOutputSize.cx; in gst_dshow_new_video_caps()
723 if (min_w == max_w) in gst_dshow_new_video_caps()
724 gst_structure_set (video_structure, "width", G_TYPE_INT, min_w, NULL); in gst_dshow_new_video_caps()
727 "width", GST_TYPE_INT_RANGE, min_w, max_w, NULL); in gst_dshow_new_video_caps()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_video.c1870 if (window->min_w && w < window->min_w) in SDL_SetWindowSize()
1872 w = window->min_w; in SDL_SetWindowSize()
1921 SDL_SetWindowMinimumSize(SDL_Window * window, int min_w, int min_h) in SDL_SetWindowMinimumSize() argument
1924 if (min_w <= 0) { in SDL_SetWindowMinimumSize()
1934 window->min_w = min_w; in SDL_SetWindowMinimumSize()
1940 … SDL_SetWindowSize(window, SDL_max(window->w, window->min_w), SDL_max(window->h, window->min_h)); in SDL_SetWindowMinimumSize()
1967 SDL_GetWindowMinimumSize(SDL_Window * window, int *min_w, int *min_h) in SDL_GetWindowMinimumSize() argument
1970 if (min_w) { in SDL_GetWindowMinimumSize()
1971 *min_w = window->min_w; in SDL_GetWindowMinimumSize()
DSDL_sysvideo.h79 int min_w, min_h; member
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsevents.c684 int min_w, min_h; in WIN_WindowProc() local
705 SDL_GetWindowMinimumSize(data->window, &min_w, &min_h); in WIN_WindowProc()
710 min_w -= w; in WIN_WindowProc()
739 info->ptMinTrackSize.x = w + min_w; in WIN_WindowProc()
/third_party/skia/tests/
DWangsFormulaTest.cpp70 const float min_w = std::min(w, 1.f); in wangs_formula_conic_reference_impl() local
71 const float numer = 4 * min_w * eps; in wangs_formula_conic_reference_impl()
/third_party/flutter/skia/third_party/externals/sdl/src/video/wayland/
DSDL_waylandwindow.c62 width = SDL_max(width, window->min_w); in handle_configure()
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_video.h649 int min_w, int min_h);
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/
DSDL_mirwindow.c320 MIR_mir_surface_spec_set_min_width (spec, window->min_w); in MIR_SetWindowMinimumSize()
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2object.c2919 gint min_w, max_w, min_h, max_h, fix_num = 0, fix_denom = 0; in gst_v4l2_object_probe_caps_for_format() local
2922 min_w = min_h = 1; in gst_v4l2_object_probe_caps_for_format()
2924 if (!gst_v4l2_object_get_nearest_size (v4l2object, pixelformat, &min_w, in gst_v4l2_object_probe_caps_for_format()
2936 if (min_w == 0 || min_h == 0) in gst_v4l2_object_probe_caps_for_format()
2937 min_w = min_h = 1; in gst_v4l2_object_probe_caps_for_format()
2971 if (min_w == max_w) in gst_v4l2_object_probe_caps_for_format()
2974 gst_structure_set (tmp, "width", GST_TYPE_INT_RANGE, min_w, max_w, NULL); in gst_v4l2_object_probe_caps_for_format()
2989 if (v4l2object->info.width >= min_w && v4l2object->info.width <= max_w && in gst_v4l2_object_probe_caps_for_format()
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11window.c798 sizehints->min_width = window->min_w; in X11_SetWindowMinimumSize()
996 sizehints->min_width = window->min_w; in X11_SetWindowResizable()
/third_party/skia/third_party/externals/imgui/
Dimgui_widgets.cpp6882 …float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, 0.0f, checkmark_w); // Feed… in BeginMenuEx() local
6883 float extra_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); in BeginMenuEx()
6885 …| ImGuiSelectableFlags_DontClosePopups | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, 0.0f)); in BeginMenuEx()
7047 …float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, shortcut_w, checkmark_w); /… in MenuItemEx() local
7048 float stretch_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); in MenuItemEx()
7049 … pressed = Selectable("", false, flags | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, 0.0f)); in MenuItemEx()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoawindow.m1383 minSize.width = window->min_w;
/third_party/gstreamer/gstplugins_good/
DChangeLog48792 (min_w, min_h) and then add (step_w, step_h) to get the
48794 from min_w to max_w with step_w and same for heights.