mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 20:25:29 +00:00
Fixed parameters to follow the updated Glu enums.
This commit is contained in:
parent
2c9e95d96d
commit
cc10058b15
|
@ -24,7 +24,11 @@
|
||||||
# OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
|
# OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
|
||||||
# not been independently verified as being compliant with the OpenGL(R)
|
# not been independently verified as being compliant with the OpenGL(R)
|
||||||
# version 1.2.1 Specification.
|
# version 1.2.1 Specification.
|
||||||
|
###############################################################################
|
||||||
|
#
|
||||||
|
# Edited by StApostol. Revision 1
|
||||||
|
#
|
||||||
|
###############################################################################
|
||||||
param: retval retained
|
param: retval retained
|
||||||
version: 1.0
|
version: 1.0
|
||||||
|
|
||||||
|
@ -165,11 +169,12 @@ EndTrim(nurb)
|
||||||
|
|
||||||
ErrorString(error)
|
ErrorString(error)
|
||||||
return String
|
return String
|
||||||
param error ErrorCode in value
|
# Revision 1
|
||||||
|
param error GluErrorCode in value # ErrorCode (clashes with OpenGL enum)
|
||||||
|
|
||||||
GetString(name)
|
GetString(name)
|
||||||
return String
|
return String
|
||||||
param name StringName in value
|
param name GluStringName in value
|
||||||
|
|
||||||
GetNurbsProperty(nurb, property, data)
|
GetNurbsProperty(nurb, property, data)
|
||||||
return void
|
return void
|
||||||
|
@ -335,10 +340,11 @@ QuadricOrientation(quad, orientation)
|
||||||
param quad QuadricObj in value
|
param quad QuadricObj in value
|
||||||
param orientation QuadricOrientation in value
|
param orientation QuadricOrientation in value
|
||||||
|
|
||||||
|
# Revision 1
|
||||||
QuadricTexture(quad, texture)
|
QuadricTexture(quad, texture)
|
||||||
return void
|
return void
|
||||||
param quad QuadricObj in value
|
param quad QuadricObj in value
|
||||||
param texture Boolean in value
|
param texture bool in value # Boolean in value
|
||||||
|
|
||||||
ScaleImage(format, wIn, hIn, typeIn, dataIn, wOut, hOut, typeOut, dataOut)
|
ScaleImage(format, wIn, hIn, typeIn, dataIn, wOut, hOut, typeOut, dataOut)
|
||||||
return Int32
|
return Int32
|
||||||
|
|
Loading…
Reference in a new issue