_DISPLAYORDER _HARDWARE
or
_DISPLAYORDER _HARDWARE1
it is what you meant?
Not quite.
QB64 has 2 different hardware screens which we can put images on to layer them, as well as the software screen and the one for OpenGL generated images. Imagine 4 drawings -- a circle, triangle, square, and scribbles... With each one on a different screen, we can use _DISPLAYORDER to set them to layer however we want. The square might draw over the circle, but be under the triangle, with the scribbles on top of them all...
We just draw to put stuff on the software screen. LINE, PSET, CIRCLE, ect...
We use GL commands in _SUBGL to put stuff on the GL-screen.
We use _COPYIMAGE(image,33) or _NEWIMAGE(x,y,33) to put stuff on the HARDWARE screen.
But what's the syntax to put stuff on that second hardware screen? _HARDWARE1?
What simple step am I forgetting to designate the difference in which one I want to draw/copy to?