 | 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
Syntaxpublic 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:
StringString describing some aspect of the state
Remarks
The input parameter can be one of the following:
Value | Meaning |
---|
GL_VENDOR | Returns the company responsible for this GL implementation. This name does not change from release to release. |
GL_RENDERER | Returns 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_VERSION | Returns a version or release number. |
GL_SHADING_LANGUAGE_VERSION | Returns a version or release number for the shading language. |
See Also