2D graphics overlay over 3D Graphics

how can i overlay 2D graphics over 3D graphics.

You can set up an ortho projection matrix, turn off depth testing, and draw stuff using 2D vertex coords (or 3D coords, but z will be ignored). Of course, do this AFTER the 3D stuff is drawn.

thank you your reply has solved my problem