Does webpage content go to DRAM or Video RAM, and what if Video RAM runs out?
If the project has a page that uses jCarousel, and it has a <ul>
(or <div>
) that is 15860 x 375px, w开发者_运维技巧ith 32-bit / pixel, that's close to 24MB.
Or, what if it is 1000 x 700 pixel per screenful, 6 screenful per webpage, and 5 tabs of such pages, with 32 bit per pixel
1000 x 700 x 6 x 5 x 4 = 84MB
does these 24MB or 84MB go to Video RAM or computer's DRAM? If it is Video RAM, what if Video RAM runs out, does it swap to the computer's DRAM or hard drive? (for example, a Virtual PC's Video RAM may be only 8MB or 16MB)
The data coming from the HTML rendering engine will normally be clipped to the visible portion of the window before being sent to the video memory.
精彩评论