When using glBegin/glEnd, is it equivalent to one draw call?
I mean, when using glDrawArrays, as I understand, that's the point when data is transferred to GPU (client side to server side). When using glBegin/glEnd, is data transferred to GPU only at the glEnd call? Or vertex are transferred one by one every glVertex/glNormal/glTexCoord call?