环球自由周 |什么是框架?
GLFW | What is a frame?
Here 我在阅读有关缓冲区的内容时发现了这样的文本:
When the entire frame has been rendered, the buffers need to be swapped with one another, so the back buffer becomes the front buffer and vice versa.
还有这个
The swap interval indicates how many frames to wait until swapping the buffers, commonly known as vsync.
问题是:什么是框架?它与缓冲区有何不同?
What is a frame?
这个词来自电影业,胶卷上的图像被称为frames。
In filmmaking, video production, animation, and related fields, a frame is one of the many still images which compose the complete moving picture.
And how does it differ from buffer?
A buffer 是分配用于存储数据的计算机内存区域。通过渲染场景生成的图像存储在缓冲区中。
虽然静止图像可以由单个缓冲区表示,但动画需要多个缓冲区按顺序呈现(如胶片卷)。给定此上下文时,该序列中的每个缓冲区都可以视为一个帧。
Here 我在阅读有关缓冲区的内容时发现了这样的文本:
When the entire frame has been rendered, the buffers need to be swapped with one another, so the back buffer becomes the front buffer and vice versa.
还有这个
The swap interval indicates how many frames to wait until swapping the buffers, commonly known as vsync.
问题是:什么是框架?它与缓冲区有何不同?
What is a frame?
这个词来自电影业,胶卷上的图像被称为frames。
In filmmaking, video production, animation, and related fields, a frame is one of the many still images which compose the complete moving picture.
And how does it differ from buffer?
A buffer 是分配用于存储数据的计算机内存区域。通过渲染场景生成的图像存储在缓冲区中。
虽然静止图像可以由单个缓冲区表示,但动画需要多个缓冲区按顺序呈现(如胶片卷)。给定此上下文时,该序列中的每个缓冲区都可以视为一个帧。