OpenGL 使用什么类型的像素插值?
我想知道 OpenGL 使用什么类型的像素插值。 它是否使用一种标准像素插值技术,例如最近邻、双线性或双三次?
I would like to know what type of Pixel Interpolation is used by OpenGL.
Does it use one of the Standard Pixel Interpolation techniques like Nearest Neighbor, Bilinear or Bicubic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是各种纹理过滤方法,您可以设置最近邻,以及双线性 (lerp) 甚至三线性(通过多个缩放纹理 (mipmap) 以及相邻的“2D”像素进行插值)。
可以独立设置放大和缩小的过滤方法。
您可以在此处找到更多信息。
If you mean the various texture filtering methods, you can set nearest neighbour, as well as bi-linear (lerp) or even tri-linear (interpolating through multiple scaled textures (mipmaps), as well as the adjacent '2D' pixels).
The filtering method can be set independently for magnification as well as minification.
You can find more info here.