几个OpenGL函数(glRectf() 像素重叠的处理方案)

glRectf(glfloat x1,glfloat y1,glfloat x2,glfloat y2):x1,y1指定矩形的一个顶点x2,y2指定矩形反方向的顶点。四个点严格等于下面的序列(x1,y1)(x2,y1)(x2,y2)(x1,y2)。如果第二个顶点在第一个顶点的上方和右侧,那么这个矩形将以逆时针旋转方向构造

glRectf(const glfloat *v1,const glfloat *v2):v1一个指向矩形的一个顶点的指针,v2一个指向矩形的一个顶点的指针

 


像素重叠的解决方案;

在渲染环境设置中加入以下两条语句:

glEnable(GL_POLYGON_OFFSET_FILL);
glPolygonOffset(1.0f, 0.0f);

glPolygonOffset(factorbias);offset的计算公式是factor * DZ + bias

http://www.opengl.org/sdk/docs/man/html/glPolygonOffset.xhtml

Name

glPolygonOffset — set the scale and units used to calculate depth values

C Specification

void glPolygonOffset(GLfloat factor,

GLfloat units);

 

Parameters

  • factor

  • Specifies a scale factor that is used to create a variable depth offset for each polygon. The initial value is 0.

  • units

  • Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0.

Description

When GL_POLYGON_OFFSET_FILLGL_POLYGON_OFFSET_LINE, or GL_POLYGON_OFFSET_POINT is enabled, each fragment's depth value will be offset after it is interpolated from the depth values of the appropriate vertices. The value of the offset is factor×DZ+r×units, where DZ is a measurement of the change in depth relative to the screen area of the polygon, and r is the smallest value that is guaranteed to produce a resolvable offset for a given implementation. The offset is added before the depth test is performed and before the value is written into the depth buffer.

glPolygonOffset is useful for rendering hidden-line images, for applying decals to surfaces, and for rendering solids with highlighted edges.

Associated Gets

glIsEnabled with argument GL_POLYGON_OFFSET_FILLGL_POLYGON_OFFSET_LINE, or GL_POLYGON_OFFSET_POINT.

glGet with argument GL_POLYGON_OFFSET_FACTOR or GL_POLYGON_OFFSET_UNITS.

See Also

glDepthFuncglEnableglGetglIsEnabled

Copyright

Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010-2013 Khronos Group. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.



转载于:https://my.oschina.net/u/1469992/blog/282489

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值