It's been a Loooong time since I have played around with hardware image capability in QB64, and even then it was in the experimental stage.
Just so I have this straight, once I have committed an image as hardware (mode 33) I can do nothing with that image except for displaying it (_PUTIMAGE, _MAPTRIANGLE), or copying it (_COPYIMAGE).
Even trying to set a hardware image as a source, to say read a POINT() from it will not work, correct?
If I need to make a change to a hardware image, I'll need to have a software image copy of it, make the changes on the software image, then once again convert the image to hardware with _COPYIMAGE to another handle. Is that correct?