Click or drag to resize
XDL

XGraphicsglGetString Method

The glGetString function returns a string of GL states.

Namespace:  Pixoneer.NXDL.NGR
Assembly:  NXDLgr (in NXDLgr.dll) Version: 1.2.817.72
Syntax
C#
public string glGetString(
	int name
)

Parameters

name
Type: SystemInt32
Symbolic constant, one of GL_VENDOR, GL_RENDERER, GL_VERSION or GL_SHADING_LANGUAGE_VERSION

Return Value

Type: String
String describing some aspect of the state
Remarks
The input parameter can be one of the following:
ValueMeaning
GL_VENDORReturns the company responsible for this GL implementation. This name does not change from release to release.
GL_RENDERERReturns the name of the renderer. This name is typically specific to a particular configuration of a hardware platform. It does not change from release to release.
GL_VERSIONReturns a version or release number.
GL_SHADING_LANGUAGE_VERSIONReturns a version or release number for the shading language.
See Also