I have only one Problem. Zooming is good working, but to Have a good Quality I want to draw higher res. Pictures and then integrate a zoom-out function. But the Draw_quad function is not working outside the original Resolution size.
If I soom out, the Pictures out of the original res. size are not drawn, even when the res. of bmpMap is higher...



Code:
bmap_rendertarget(bmpMap,0,1);
draw_quad(bmap_test,vecto(1,500,0),NULL,NULL,NULL,NULL,100,NULL);	
draw_quad(bmap_test,vector(1000,500,0),NULL,NULL,NULL,NULL,100,NULL);	
draw_quad(bmap_test,vector(2000,500,0),NULL,NULL,NULL,NULL,100,NULL);
bmap_rendertarget(NULL,0,0);