Home | History | Annotate | Download | only in videomode

Lines Matching defs:interlace

222     unsigned interlace;
260 /* 2. If interlace is requested, the number of vertical lines assumed
303 /* 6. If interlace is required, then set variable [INTERLACE]=0.5:
305 * [INTERLACE]=(IF([INT RQD?]="y",0.5,0))
311 interlace = (flags & VESAGTF_FLAG_ILACE) ? 1 : 0;
313 print_value(6, "[2*INTERLACE]", interlace);
320 * [MIN PORCH RND]+[INTERLACE]) * 1000000
327 * [MIN PORCH RND]+[INTERLACE])
329 * The other problem is that the interlace value is wrong. To get
330 * the interlace to a whole number, we multiply both the numerator and
331 * divisor by 2, so we can use a value of either 1 or 0 for the interlace
338 * [MIN PORCH RND]) + [2*INTERLACE]))
347 ((2 * (v_lines + (2 * top_margin) + params->min_porch)) + interlace));
379 * [BOT MARGIN (LINES)] + [V SYNC+BP] + [INTERLACE] +
384 interlace + params->min_porch;
604 * [V ODD FRONT PORCH(LINES)]=([MIN PORCH RND]+[INTERLACE])
606 * Adjusting for the fact that the interlace is scaled:
608 * [V ODD FRONT PORCH(LINES)]=(([MIN PORCH RND] * 2) + [2*INTERLACE]) / 2
611 v_odd_front_porch_lines = ((2 * params->min_porch) + interlace) / 2;