mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-08 23:35:32 +00:00
Added missing TEXTURE_LOD_BIAS token to TextureParameterName. Fixes issue [#1531]: "TextureParameterName enum missing TEXTURE_LOD_BIAS element".
This commit is contained in:
parent
da138163bf
commit
0b3fa24c10
|
@ -7992,5 +7992,9 @@ VertexAttribI_PointerType enum:
|
|||
use DataType INT
|
||||
use DataType UNSIGNED_INT
|
||||
|
||||
# See OpenGL 3.2 reference card
|
||||
TextureParameterName enum:
|
||||
TEXTURE_LOD_BIAS = 0x8501
|
||||
|
||||
|
||||
# End (don't remove, or the last token may be removed!)
|
||||
|
|
|
@ -10456,6 +10456,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
TextureMaxClampSSgix = ((int)0x8369),
|
||||
TextureMaxClampTSgix = ((int)0x836A),
|
||||
TextureMaxClampRSgix = ((int)0x836B),
|
||||
TextureLodBias = ((int)0x8501),
|
||||
DepthTextureMode = ((int)0x884B),
|
||||
TextureCompareMode = ((int)0x884C),
|
||||
TextureCompareFunc = ((int)0x884D),
|
||||
|
|
Loading…
Reference in a new issue