glDisableGLenum
glDisable is a function in the OpenGL API used to disable various processing capabilities. It takes a single argument, a GLenum constant, which specifies the capability to be disabled. This function is the counterpart to glEnable, which is used to enable these same capabilities.
When a capability is disabled, OpenGL will no longer perform the associated processing. For example, if glDisable(GL_BLEND)
Commonly disabled capabilities include GL_BLEND for disabling alpha blending, GL_DEPTH_TEST for disabling depth testing, GL_CULL_FACE for