2004-08-28, 02:44
i found that matrix screen saver doesnt fill the entire screen in 1080i mode -- it only filled about 3/4 of the total space. i did some investigation and found it was related to this code in cguiwindowscreensaver::renderframe()
icolmax = int (g_graphicscontext.getwidth() / 16);
irowmax = int (g_graphicscontext.getheight() / 16);
if (icolmax > 80) icolmax = 80;
if (irowmax > 60) irowmax = 60;
so, i proceeded to comment out the lines that cap the grid and rebuild.
when i tested the screensaver, the characters scrolling dow the right of my screen were not "matrix" characters. they were mostly squares, and a few dashes.
any help would be appreciated.
icolmax = int (g_graphicscontext.getwidth() / 16);
irowmax = int (g_graphicscontext.getheight() / 16);
if (icolmax > 80) icolmax = 80;
if (irowmax > 60) irowmax = 60;
so, i proceeded to comment out the lines that cap the grid and rebuild.
when i tested the screensaver, the characters scrolling dow the right of my screen were not "matrix" characters. they were mostly squares, and a few dashes.
any help would be appreciated.