Home
last modified time | relevance | path

Searched refs:dip_to_pixel_scale (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/desktop_capture/mac/
Ddesktop_configuration.mm65 display_config.dip_to_pixel_scale = [screen backingScaleFactor];
118 desktop_config.dip_to_pixel_scale = display_config.dip_to_pixel_scale;
128 float scaling_factor = display_config.dip_to_pixel_scale /
129 desktop_config.displays[0].dip_to_pixel_scale;
143 if (display_config.dip_to_pixel_scale ==
144 desktop_config.dip_to_pixel_scale) {
160 left.dip_to_pixel_scale == right.dip_to_pixel_scale;
166 dip_to_pixel_scale == other.dip_to_pixel_scale &&
Ddesktop_configuration.h43 float dip_to_pixel_scale = 1.0f; member
88 float dip_to_pixel_scale = 1.0f; member
Dscreen_capturer_mac.mm97 DesktopRect GetExcludedWindowPixelBounds(CGWindowID window, float dip_to_pixel_scale) {
125 return ScaleAndRoundCGRect(rect, dip_to_pixel_scale);
132 float dip_to_pixel_scale,
137 window_bounds.origin.x = pixel_bounds.left() / dip_to_pixel_scale;
138 window_bounds.origin.y = pixel_bounds.top() / dip_to_pixel_scale;
328 if (i > 0 && display_config.dip_to_pixel_scale != displays_to_capture[0].dip_to_pixel_scale) {
348 GetExcludedWindowPixelBounds(excluded_window_, display_config.dip_to_pixel_scale);
355 excluded_window_bounds, display_config.dip_to_pixel_scale, window_list);
420 dip_to_pixel_scale_ = config ? config->dip_to_pixel_scale : 1.0f;
423 dip_to_pixel_scale_ = desktop_config_.dip_to_pixel_scale;
Dwindow_list_utils.cc363 return it->dip_to_pixel_scale; in GetScaleFactorAtPosition()