Added missing tokens to TextureParameterName (were only in GetTextureParameter, when they should have been in both enums).
This commit is contained in:
parent
aa6994ac33
commit
2864c0235b
3 changed files with 4725 additions and 4712 deletions
|
@ -138,6 +138,13 @@ GetTextureParameter enum:
|
|||
|
||||
TextureParameterName enum:
|
||||
CLAMP_TO_EDGE = 0x812F # Equivalent to SGIS_texture_edge_clamp
|
||||
use GetTextureParameter TEXTURE_MIN_LOD
|
||||
use GetTextureParameter TEXTURE_MAX_LOD
|
||||
use GetTextureParameter TEXTURE_BASE_LEVEL
|
||||
use GetTextureParameter TEXTURE_MAX_LEVEL
|
||||
use GetTextureParameter TEXTURE_DEPTH
|
||||
use GetTextureParameter TEXTURE_WRAP_R
|
||||
|
||||
|
||||
PixelStoreParameter enum:
|
||||
PACK_SKIP_IMAGES = 0x806B # 1 I
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1688,38 +1688,44 @@ namespace OpenTK.OpenGL
|
|||
DetailTextureLevelSgis = ((int)0x809a),
|
||||
TextureMaxClampTSgix = ((int)0x836a),
|
||||
TextureCompareFailValue = ((int)0x80bf),
|
||||
TextureCompareMode = ((int)0x884c),
|
||||
TexturePriority = ((int)0x8066),
|
||||
TextureLodBiasTSgix = ((int)0x818f),
|
||||
TextureClipmapCenterSgix = ((int)0x8171),
|
||||
TextureLodBiasRSgix = ((int)0x8190),
|
||||
TextureClipmapFrameSgix = ((int)0x8172),
|
||||
TextureBaseLevel = ((int)0x813c),
|
||||
TextureLodBiasSSgix = ((int)0x818e),
|
||||
TextureClipmapDepthSgix = ((int)0x8176),
|
||||
TextureCompareMode = ((int)0x884c),
|
||||
DepthTextureMode = ((int)0x884b),
|
||||
TextureClipmapOffsetSgix = ((int)0x8173),
|
||||
TextureWrapQSgis = ((int)0x8137),
|
||||
ClampToBorder = ((int)0x812d),
|
||||
TextureClipmapFrameSgix = ((int)0x8172),
|
||||
TextureWrapS = ((int)0x2802),
|
||||
TextureMinFilter = ((int)0x2801),
|
||||
TextureWrapRExt = ((int)0x8072),
|
||||
TextureWrapR = ((int)0x8072),
|
||||
TextureCompareSgix = ((int)0x819a),
|
||||
TextureMaxClampSSgix = ((int)0x8369),
|
||||
DetailTextureModeSgis = ((int)0x809b),
|
||||
TextureMaxLevel = ((int)0x813d),
|
||||
DualTextureSelectSgis = ((int)0x8124),
|
||||
TextureClipmapLodOffsetSgix = ((int)0x8175),
|
||||
DepthTextureMode = ((int)0x884b),
|
||||
TextureMaxLod = ((int)0x813b),
|
||||
PostTextureFilterBiasSgix = ((int)0x8179),
|
||||
TextureCompareOperatorSgix = ((int)0x819b),
|
||||
TextureMaxClampRSgix = ((int)0x836b),
|
||||
ClampToEdge = ((int)0x812f),
|
||||
TextureCompareFunc = ((int)0x884d),
|
||||
TextureMinLod = ((int)0x813a),
|
||||
GenerateMipmapSgis = ((int)0x8191),
|
||||
TextureDepth = ((int)0x8071),
|
||||
GenerateMipmap = ((int)0x8191),
|
||||
PostTextureFilterScaleSgix = ((int)0x817a),
|
||||
TextureBorderColor = ((int)0x1004),
|
||||
TextureCompareFunc = ((int)0x884d),
|
||||
TextureClipmapVirtualDepthSgix = ((int)0x8174),
|
||||
TextureMagFilter = ((int)0x2800),
|
||||
TextureWrapT = ((int)0x2803),
|
||||
ClampToBorder = ((int)0x812d),
|
||||
}
|
||||
|
||||
public enum TextureTarget
|
||||
|
|
Loading…
Reference in a new issue