 | glGetAliasedLineWidthRange Method |
Gets the smallest and largest supported widths for aliased lines.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void GetAliasedLineWidthRange(
out float min,
out float max
)
Public Shared Sub GetAliasedLineWidthRange (
<OutAttribute> ByRef min As Single,
<OutAttribute> ByRef max As Single
)
public:
static void GetAliasedLineWidthRange(
[OutAttribute] float% min,
[OutAttribute] float% max
)
static member GetAliasedLineWidthRange :
min : float32 byref *
max : float32 byref -> unit
Parameters
- min
- Type: SystemSingle
is set to the smallest supported line width. - max
- Type: SystemSingle
is set to the largest supported line width.
Remarks
The returned range always includes value 1.0.
OpenGL API: glGetIntegerv(GL_ALIASED_LINE_WIDTH_RANGE)
See Also