网页内容会进入 DRAM 还是视频 RAM,如果视频 RAM 耗尽怎么办?
如果项目有一个使用 jCarousel 的页面,并且它的
(或
)为 15860 x 375px,具有 32 位 /像素,接近 24MB。或者,如果每屏 1000 x 700 像素,每个网页 6 屏,此类页面有 5 个选项卡,每像素 32 位
1000 x 700 x 6 x 5 x 4 = 84MB,那么
这些 24MB 或 84MB 会进入视频 RAM还是电脑的DRAM?如果是Video RAM,如果Video RAM用完了怎么办,是否会交换到计算机的DRAM或硬盘驱动器? (例如,虚拟 PC 的视频 RAM 可能只有 8MB 或 16MB)
If the project has a page that uses jCarousel, and it has a <ul>
(or <div>
) that is 15860 x 375px, with 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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 HTML 渲染引擎的数据在发送到视频内存之前通常会被剪切到窗口的可见部分。
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.