Gambas文档
编译和安装
错误消息
代码片段
待办事项
废弃的组件
教程
开发环境文档
开发者文档
名词解释
如何操作
说明
维基手册
维基搜索
维基许可协议
文档
应用程序仓库
语言概览
语言索引
主题
组件
gb
gb.args
gb.cairo
gb.chart
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.data
gb.db
gb.db.form
gb.db.mysql
gb.db.odbc
gb.db.postgresql
gb.db.sqlite2
gb.db.sqlite3
gb.dbus
gb.dbus.trayicon
gb.debug
gb.desktop
gb.desktop.x11
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.htmlview
gb.form.mdi
gb.form.print
gb.form.terminal
gb.gmp
gb.gsl
gb.gtk
gb.gtk3
gb.gtk3.opengl
gb.gtk3.webview
gb.gui
gb.gui.qt
gb.gui.qt.ext
gb.gui.trayicon
gb.gui.webview
gb.hash
gb.highlight
gb.image
gb.image.effect
gb.image.io
gb.inotify
gb.logging
gb.map
gb.media
gb.media.form
gb.mime
gb.mongodb
gb.mysql
gb.ncurses
gb.net
gb.net.curl
gb.net.pop3
gb.net.smtp
gb.opengl
Gl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.openssl
gb.option
gb.pcre
gb.pdf
gb.poppler
gb.qt4
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt4.webview
gb.qt5
gb.qt5.ext
gb.qt5.opengl
gb.qt5.webview
gb.qt6
gb.qt6.ext
gb.qt6.opengl
gb.qt6.webview
gb.report
gb.report2
gb.sdl
gb.sdl2
gb.sdl2.audio
gb.settings
gb.signal
gb.term
gb.test
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.web.form
gb.web.gui
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
最近的修改

Gl.Fogiv (gb.opengl)

Static Sub Fogiv ( Pname As Integer, Params As Integer[] )

Specify fog parameters.

Parameters

pname

Specifies a single-valued fog parameter. Gl.FOG_MODE, Gl.FOG_DENSITY, Gl.FOG_START, Gl.FOG_END, Gl.FOG_INDEX, and Gl.FOG_COORD_SRC are accepted.
param

Specifies the value that pname will be set to.

Parameters

pname

Specifies a fog parameter. Gl.FOG_MODE, Gl.FOG_DENSITY, Gl.FOG_START, Gl.FOG_END, Gl.FOG_INDEX, Gl.FOG_COLOR, and Gl.FOG_COORD_SRC are accepted.
params

Specifies the value or values to be assigned to pname. Gl.FOG_COLOR requires an array of four values. All other parameters accept an array containing only a single value.

Description

Fog is initially disabled. While enabled, fog affects rasterized geometry, bitmaps, and pixel blocks, but not buffer clear operations. To enable and disable fog, call Gl.Enable and Gl.Disable with argument Gl.FOG.

Gl.Fog assigns the value or values in params to the fog parameter specified by pname. The following values are accepted for pname:
Gl.FOG_MODE

params is a single integer or floating-point value that specifies the equation to be used to compute the fog blend factor, f. Three symbolic constants are accepted: Gl.LINEAR, Gl.EXP, and Gl.EXP2. The equations corresponding to these symbolic constants are defined below. The initial fog mode is Gl.EXP.
Gl.FOG_DENSITY

params is a single integer or floating-point value that specifies density, the fog density used in both exponential fog equations. Only nonnegative densities are accepted. The initial fog density is 1.
Gl.FOG_START

params is a single integer or floating-point value that specifies start, the near distance used in the linear fog equation. The initial near distance is 0.
Gl.FOG_END

params is a single integer or floating-point value that specifies end, the far distance used in the linear fog equation. The initial far distance is 1.
Gl.FOG_INDEX

params is a single integer or floating-point value that specifies i f , the fog color index. The initial fog index is 0.
Gl.FOG_COLOR

params contains four integer or floating-point values that specify C f , the fog color. Integer values are mapped linearly such that the most positive representable value maps to 1.0, and the most negative representable value maps to -1.0 . Floating-point values are mapped directly. After conversion, all color components are clamped to the range 0 1 . The initial fog color is (0, 0, 0, 0).
Gl.FOG_COORD_SRC

params contains either of the following symbolic constants: Gl.FOG_COORD or Gl.FRAGMENT_DEPTH. Gl.FOG_COORD specifies that the current fog coordinate should be used as distance value in the fog color computation. Gl.FRAGMENT_DEPTH specifies that the current fragment depth should be used as distance value in the fog computation.

Fog blends a fog color with each rasterized pixel fragment's post-texturing color using a blending factor f. Factor f is computed in one of three ways, depending on the fog mode. Let c be either the distance in eye coordinate from the origin (in the case that the Gl.FOG_COORD_SRC is Gl.FRAGMENT_DEPTH) or the current fog coordinate (in the case that Gl.FOG_COORD_SRC is Gl.FOG_COORD). The equation for Gl.LINEAR fog is f end - c end - start

The equation for Gl.EXP fog is f e - density · c

The equation for Gl.EXP2 fog is f e - density · c 2

Regardless of the fog mode, f is clamped to the range 0 1 after it is computed. Then, if the GL is in RGBA color mode, the fragment's red, green, and blue colors, represented by C r , are replaced by

C r f × C r + 1 - f × C f

Fog does not affect a fragment's alpha component.

In color index mode, the fragment's color index i r is replaced by

i r i r + 1 - f × i f

Notes

Gl.FOG_COORD_SRC is available only if the GL version is 1.4 or greater.

Errors

Gl.INVALID_ENUM is generated if pname is not an accepted value, or if pname is Gl.FOG_MODE and params is not an accepted value.

Gl.INVALID_VALUE is generated if pname is Gl.FOG_DENSITY and params is negative.

Gl.INVALID_OPERATION is generated if Gl.Fog is executed between the execution of Gl.Begin and the corresponding execution of Gl.End.

Associated Gets

Gl.IsEnabled with argument Gl.FOG

Gl.Get with argument Gl.FOG_COLOR

Gl.Get with argument Gl.FOG_INDEX

Gl.Get with argument Gl.FOG_DENSITY

Gl.Get with argument Gl.FOG_START

Gl.Get with argument Gl.FOG_END

Gl.Get with argument Gl.FOG_MODE

See also

Gl.Enable

See original documentation on OpenGL website