|
XGraphicsglGetString Method
|
The glGetString function returns a string of GL states.
Namespace: Pixoneer.NXDL.NGRAssembly: NXDLgr (in NXDLgr.dll) Version: 2.0.3.38
Syntaxpublic string glGetString(
int name
)
Parameters
- name Int32
- Symbolic constant, one of GL_VENDOR, GL_RENDERER, GL_VERSION or GL_SHADING_LANGUAGE_VERSION
Return Value
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