Searched refs:scale_round (Results 1 – 4 of 4) sorted by relevance
/external/libvncserver/x11vnc/ |
D | screen.h | 53 extern int scale_round(int len, double fac);
|
D | cursor.c | 1039 w = scale_round(W, scale_cursor_fac_x); in pixels2curs() 1040 h = scale_round(H, scale_cursor_fac_y); in pixels2curs() 1089 xhot = scale_round(xhot, scale_cursor_fac_x); in pixels2curs() 1090 yhot = scale_round(yhot, scale_cursor_fac_y); in pixels2curs()
|
D | screen.c | 81 int scale_round(int len, double fac); 2952 int scale_round(int len, double fac) { in scale_round() function 2971 width = scale_round(width, scale_fac_x); in setup_scaling() 2972 height = scale_round(height, scale_fac_y); in setup_scaling()
|
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/src/patches/ |
D | tight-vncviewer-full.patch | 2884 +int scale_round(int n, double factor); 3165 + int w = scale_round(width, scale_factor_x) + 2; 3166 + int h = scale_round(height, scale_factor_y) + 2; 3413 + int w2 = scale_round(rcWidth, scale_factor_x) + 2; 3414 + int h2 = scale_round(rcHeight, scale_factor_y) + 2; 3457 + ws = scale_round(w, scale_factor_x); 3458 + hs = scale_round(h, scale_factor_y); 3831 +int scale_round(int len, double fac); 3922 + ycrop = scale_round(ycrop, scale_factor_y); 4038 + w = scale_round(si.framebufferWidth, frac_x); [all …]
|