You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//selects the widest render method that fits in 46us//as of 9/16/10 rendermode 3 will not work for resolutions lower than//192(display.hres lower than 24)unsignedchar rmethod = (_TIME_ACTIVE*_CYCLES_PER_US)/(display.hres*8);
switch(rmethod) {
case6:
render_line = &render_line6c;
break;
case5:
render_line = &render_line5c;
break;
case4:
render_line = &render_line4c;
break;
case3:
render_line = &render_line3c;
break;
default:
if (rmethod > 6)
render_line = &render_line6c;
else
render_line = &render_line3c;
}
It seems that the cycles would make effort to render mode.
Now I have 16Mhz ATmega328P, what is the max resolution? (If we don't care memory...)
Do 640x480 even 1024x768 possible?
The text was updated successfully, but these errors were encountered:
look these codes in video_gen.cpp:
It seems that the cycles would make effort to render mode.
Now I have 16Mhz ATmega328P, what is the max resolution? (If we don't care memory...)
Do 640x480 even 1024x768 possible?
The text was updated successfully, but these errors were encountered: