Skip to content

Latest commit

 

History

History
157 lines (91 loc) · 6.63 KB

gldisableclientstate.md

File metadata and controls

157 lines (91 loc) · 6.63 KB
title description ms.assetid keywords topic_type api_name api_location api_type ms.topic ms.date
glDisableClientState function (Gl.h)
The glEnableClientState and glDisableClientState functions enable and disable arrays respectively. | glDisableClientState function (Gl.h)
b3316519-00ed-45f8-9c4b-2e04c483751e
glDisableClientState function OpenGL
apiref
glDisableClientState
Opengl32.dll
DllExport
reference
05/31/2018

glDisableClientState function

The glEnableClientState and glDisableClientState functions enable and disable arrays respectively.

Syntax

void WINAPI glDisableClientState(
   GLenum array
);

Parameters

array

A symbolic constant for the array you want to enable or disable. This parameter can assume one of the following values.

Value Meaning
GL_COLOR_ARRAY
If enabled, use color arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glColorPointer.
GL_EDGE_FLAG_ARRAY
If enabled, use edge flag arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glEdgeFlagPointer.
GL_INDEX_ARRAY
If enabled, use index arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glIndexPointer.
GL_NORMAL_ARRAY
If enabled, use normal arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glNormalPointer.
GL_TEXTURE_COORD_ARRAY
If enabled, use texture coordinate arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glTexCoordPointer.
GL_VERTEX_ARRAY
If enabled, use vertex arrays with calls to glArrayElement, glDrawElements, or glDrawArrays.
See also glVertexPointer.

Return value

This function does not return a value.

Error codes

The following error code can be retrieved by the glGetError function.

Name Meaning
GL_INVALID_ENUM
array was not an accepted value.

Remarks

The glEnableClientState and glDisableClientState functions enable and disable various individual arrays. Use glIsEnabled or glGet to determine the current setting of any capability.

Calling glEnableClientState and glDisableClientState between calls to glBegin and the corresponding call to glEnd can cause an error. If no error is generated, the behavior is undefined.

Note

The glEnableClientState and glDisableClientState functions are only available in OpenGL version 1.1 or later.

Requirements

Requirement Value
Minimum supported client
Windows 2000 Professional [desktop apps only]
Minimum supported server
Windows 2000 Server [desktop apps only]
Header
Gl.h
Library
Opengl32.lib
DLL
Opengl32.dll

See also

glArrayElement

glBegin

glColorPointer

glDrawArrays

glDrawElements

glEdgeFlagPointer

glEnable

glEnableClientState

glEnd

glGetPointerv

glIndexPointer

glInterleavedArrays

glNormalPointer

glTexCoordPointer

glVertexPointer