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.TexGeni (gb.opengl)

Static Sub TexGeni ( Coord As Integer, Pname As Integer, Param As Integer )

Control the generation of texture coordinates.

Parameters

coord

Specifies a texture coordinate. Must be one of Gl.S, Gl.T, Gl.R, or Gl.Q.
pname

Specifies the symbolic name of the texture-coordinate generation function. Must be Gl.TEXTURE_GEN_MODE.
param

Specifies a single-valued texture generation parameter, one of Gl.OBJECT_LINEAR, Gl.EYE_LINEAR, Gl.SPHERE_MAP, Gl.NORMAL_MAP, or Gl.REFLECTION_MAP.

Parameters

coord

Specifies a texture coordinate. Must be one of Gl.S, Gl.T, Gl.R, or Gl.Q.
pname

Specifies the symbolic name of the texture-coordinate generation function or function parameters. Must be Gl.TEXTURE_GEN_MODE, Gl.OBJECT_PLANE, or Gl.EYE_PLANE.
params

Specifies a pointer to an array of texture generation parameters. If pname is Gl.TEXTURE_GEN_MODE, then the array must contain a single symbolic constant, one of Gl.OBJECT_LINEAR, Gl.EYE_LINEAR, Gl.SPHERE_MAP, Gl.NORMAL_MAP, or Gl.REFLECTION_MAP. Otherwise, params holds the coefficients for the texture-coordinate generation function specified by pname.

Description

Gl.TexGen selects a texture-coordinate generation function or supplies coefficients for one of the functions. coord names one of the (s, t, r, q) texture coordinates; it must be one of the symbols Gl.S, Gl.T, Gl.R, or Gl.Q. pname must be one of three symbolic constants: Gl.TEXTURE_GEN_MODE, Gl.OBJECT_PLANE, or Gl.EYE_PLANE. If pname is Gl.TEXTURE_GEN_MODE, then params chooses a mode, one of Gl.OBJECT_LINEAR, Gl.EYE_LINEAR, Gl.SPHERE_MAP, Gl.NORMAL_MAP, or Gl.REFLECTION_MAP. If pname is either Gl.OBJECT_PLANE or Gl.EYE_PLANE, params contains coefficients for the corresponding texture generation function.

If the texture generation function is Gl.OBJECT_LINEAR, the function

g p 1 × x o + p 2 × y o + p 3 × z o + p 4 × w o

is used, where g is the value computed for the coordinate named in coord, p 1 , p 2 , p 3 , and p 4 are the four values supplied in params, and x o , y o , z o , and w o are the object coordinates of the vertex. This function can be used, for example, to texture-map terrain using sea level as a reference plane (defined by p 1 , p 2 , p 3 , and p 4 ). The altitude of a terrain vertex is computed by the Gl.OBJECT_LINEAR coordinate generation function as its distance from sea level; that altitude can then be used to index the texture image to map white snow onto peaks and green grass onto foothills.

If the texture generation function is Gl.EYE_LINEAR, the function

g p 1 × x e + p 2 × y e + p 3 × z e + p 4 × w e

is used, where

p 1 p 2 p 3 p 4 p 1 p 2 p 3 p 4 M -1

and x e , y e , z e , and w e are the eye coordinates of the vertex, p 1 , p 2 , p 3 , and p 4 are the values supplied in params, and M is the modelview matrix when Gl.TexGen is invoked. If M is poorly conditioned or singular, texture coordinates generated by the resulting function may be inaccurate or undefined.

Note that the values in params define a reference plane in eye coordinates. The modelview matrix that is applied to them may not be the same one in effect when the polygon vertices are transformed. This function establishes a field of texture coordinates that can produce dynamic contour lines on moving objects.

If the texture generation function is Gl.SPHERE_MAP and coord is either Gl.S or Gl.T, s and t texture coordinates are generated as follows. Let u be the unit vector pointing from the origin to the polygon vertex (in eye coordinates). Let n sup prime be the current normal, after transformation to eye coordinates. Let

f f x f y f z T be the reflection vector such that

f u - 2 n n T u

Finally, let m 2 f x 2 + f y 2 + f z + 1 2 . Then the values assigned to the s and t texture coordinates are

s f x m + 1 2

t f y m + 1 2

To enable or disable a texture-coordinate generation function, call Gl.Enable or Gl.Disable with one of the symbolic texture-coordinate names (Gl.TEXTURE_GEN_S, Gl.TEXTURE_GEN_T, Gl.TEXTURE_GEN_R, or Gl.TEXTURE_GEN_Q) as the argument. When enabled, the specified texture coordinate is computed according to the generating function associated with that coordinate. When disabled, subsequent vertices take the specified texture coordinate from the current set of texture coordinates. Initially, all texture generation functions are set to Gl.EYE_LINEAR and are disabled. Both s plane equations are (1, 0, 0, 0), both t plane equations are (0, 1, 0, 0), and all r and q plane equations are (0, 0, 0, 0).

When the ARB_multitexture extension is supported, Gl.TexGen sets the texture generation parameters for the currently active texture unit, selected with Gl.ActiveTexture.

Errors

Gl.INVALID_ENUM is generated when coord or pname is not an accepted defined value, or when pname is Gl.TEXTURE_GEN_MODE and params is not an accepted defined value.

Gl.INVALID_ENUM is generated when pname is Gl.TEXTURE_GEN_MODE, params is Gl.SPHERE_MAP, and coord is either Gl.R or Gl.Q.

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

Associated Gets

Gl.GetTexGen

Gl.IsEnabled with argument Gl.TEXTURE_GEN_S

Gl.IsEnabled with argument Gl.TEXTURE_GEN_T

Gl.IsEnabled with argument Gl.TEXTURE_GEN_R

Gl.IsEnabled with argument Gl.TEXTURE_GEN_Q

See also

Gl.CopyTexSubImage1D, Gl.CopyTexSubImage2D, Gl.CopyTexSubImage3D, Gl.TexEnv, Gl.TexImage1D, Gl.TexImage2D, Gl.TexImage3D, Gl.TexParameter, Gl.TexSubImage1D, Gl.TexSubImage2D, Gl.TexSubImage3D

See original documentation on OpenGL website