Home | History | Annotate | Download | only in cvt

Lines Matching refs:vrefresh

34 cvt_is_standard(int hdisplay, int vdisplay, float vrefresh, bool reduced, bool verbose)
49 if ((vrefresh != 50.0) && (vrefresh != 60.0) &&
50 (vrefresh != 75.0) && (vrefresh != 85.0)) {
53 "(50, 60, 75 or 85Hz).\n", vrefresh);
91 printf("# %dx%d %.2f Hz ", mode_info->hdisplay, mode_info->vdisplay, mode_info->vrefresh);
134 print_mode_line(struct libxcvt_mode_info *mode_info, int hdisplay, int vdisplay, float vrefresh,
140 printf("Modeline \"%dx%d_%.2f\" ", hdisplay, vdisplay, vrefresh);
168 float vrefresh = 0.0;
207 else if (!vrefresh) {
208 vrefresh = atof(argv[n]);
209 if (!vrefresh) {
226 if (!vrefresh)
227 vrefresh = 60.0;
236 if ((vrefresh / 60.0) != floor(vrefresh / 60.0)) {
245 mode_info = libxcvt_gen_mode_info(hdisplay, vdisplay, vrefresh, reduced, interlaced);
251 is_cvt = cvt_is_standard(hdisplay, vdisplay, vrefresh, reduced, verbose);
253 print_mode_line(mode_info, hdisplay, vdisplay, vrefresh, reduced);