码迷,mamicode.com
首页 >  
搜索关键字:rasterization    ( 15个结果
光栅化规则(Rasterization Rules)
光栅化规则不是唯一的,只要能满足在扫描线填充过程中,对于一条分割线两边的像素能够被不重复不遗漏地填充即可。在gdi3d中目前使用的是下面光栅化规则:xLeft_int=ceil(xLeft-0.5)xRight_int=ceil(xRight-1.5)yTop_int=ceil(yTop-1.5)y...
分类:其他好文   时间:2015-10-20 15:20:32    阅读次数:220
OpenGL基础概念
基本概念透视(Perspective)变换(Transformation)投影矩阵(Projection Matrix):用于将3D坐标转换为2D屏幕坐标光栅化(Rasterization): 实际绘制或填充每个顶点之间的像素形成线段着色器(Shader)是在图形硬件上执行的单独程序,用来处理顶点和...
分类:其他好文   时间:2014-11-28 14:11:07    阅读次数:256
笔记:了解GLSL (OpenGL Shading Language)
GLSL 的产生,可以为了更灵活的3D图像编程 APP和GPU的关系图 GLSL 包括 Vertex programs 和 Fragment pgrograms, 实际是对 Geometry 和 Rasterization 的输出 管线处理如下,以前管线不能编程,现在GLSL让管线更灵活了。 Shader 的知...
分类:其他好文   时间:2014-09-05 18:22:11    阅读次数:276
A trip through the Graphics Pipeline 2011_07_Z/Stencil processing, 3 different ways
In this installment, I’ll be talking about the (early) Z pipeline and how it interacts with rasterization. Like the last part, the text won’t procee.....
分类:其他好文   时间:2014-08-05 00:34:50    阅读次数:360
A trip through the Graphics Pipeline 2011_06_(Triangle) rasterization and setup
Welcome back. This time we’re actually gonna see triangles being rasterized – finally! But before we can rasterize triangles, we need to do triangl...
分类:其他好文   时间:2014-08-05 00:25:38    阅读次数:476
15条   上一页 1 2
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!