前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >openGL入门3 --- rasterization pipeline

openGL入门3 --- rasterization pipeline

作者头像
用户1148525
发布2022-05-06 15:46:07
3120
发布2022-05-06 15:46:07
举报
文章被收录于专栏:机器学习、深度学习

Learning Modern 3D Graphics Programming

Rasterization Overview

这里简单介绍一下 rasterization 光栅化流程 1)裁剪空间变换,归一化坐标系 transform the vertices of each triangle into normalized device coordinates 2)窗口变换 from normalized device coordinates to window coordinates 3)Scan Conversion 4)Fragment Processing 5)Fragment Writing

1)Clip Space Transformation. 裁剪空间变换 The first phase of rasterization is to transform the vertices of each triangle into a certain region of space,The volume that the triangle is transformed into is called, in OpenGL parlance, clip space. The positions of the triangle’s vertices in clip space are called clip coordinates. 裁剪空间和裁剪坐标变换

归一化坐标系 Normalized Coordinates. Clip space is interesting, but inconvenient. The extent of this space is different for each vertex, which makes visualizing a triangle rather difficult. Therefore, clip space is transformed into a more reasonable coordinate space: normalized device coordinates. This process is very simple. The X, Y, and Z of each vertex’s position is divided by W to get normalized device coordinates. That is all.

在这里插入图片描述
在这里插入图片描述

2)Window Transformation. The next phase of rasterization is to transform the vertices of each triangle again. This time, they are converted from normalized device coordinates to window coordinates. As the name suggests, window coordinates are relative to the window that OpenGL is running within.

Even though they refer to the window, they are still three dimensional coordinates. The only difference is that the bounds for these coordinates depends on the viewable window. It should also be noted that while these are in window coordinates, none of the precision is lost. These are not integer coordinates; they are still floating-point values, and thus they have precision beyond that of a single pixel.

The bounds for Z are [0, 1], with 0 being the closest and 1 being the farthest. Vertex positions outside of this range are not visible.

3) Scan Conversion. After converting the coordinates of a triangle to window coordinates, the triangle undergoes a process called scan conversion. This process takes the triangle and breaks it up based on the arrangement of window pixels over the output image that the triangle covers.

在这里插入图片描述
在这里插入图片描述

The center image shows the digital grid of output pixels; the circles represent the center of each pixel. The center of each pixel represents a sample: a discrete location within the area of a pixel. During scan conversion, a triangle will produce a fragment for every pixel sample that is within the 2D area of the triangle

上面的右图显示了 一个三角形经过 scan conversion 产生的 fragments,它是一个三角形外形近似 The image on the right shows the fragments generated by the scan conversion of the triangle. This creates a rough approximation of the triangle’s general shape.

Scan conversion is an inherently 2D operation. This process only uses the X and Y position of the triangle in window coordinates to determine which fragments to generate. The Z value is not forgotten, but it is not directly part of the actual process of scan converting the triangle.

The result of scan converting a triangle is a sequence of fragments that cover the shape of the triangle. Each fragment has certain data associated with it. This data contains the 2D location of the fragment in window coordinates, as well as the Z position of the fragment. This Z value is known as the depth of the fragment. There may be other information that is part of a fragment, and we will expand on that in later tutorials.

4)Fragment Processing. 根据一个 fragment 生成一个或多个颜色值以及一个深度值 This phase takes a fragment from a scan converted triangle and transforms it into one or more color values and a single depth value. The order that fragments from a single triangle are processed in is irrelevant; since a single triangle lies in a single plane, fragments generated from it cannot possibly overlap. However, the fragments from another triangle can possibly overlap. Since order is important in a rasterizer, the fragments from one triangle must all be processed before the fragments from another triangle

5)Fragment Writing. fragment 被写到目标图像中 After generating one or more colors and a depth value, the fragment is written to the destination image. This step involves more than simply writing to the destination image. Combining the color and depth with the colors that are currently in the image can involve a number of computations.

11

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-05-29,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档