There are many way you can
draw circles in openGL Used points or just used the lines even you can wish to go with your own way.
As circle can be made from indefinite points or line use
GL_POINTS
or
GL_LINES
with changing the coordinate to radial format (polar coordinate) as
x=r*sin(theta)-h
and
y =r*cos(theta)+k