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