@Superku: Of course, but just the first three pics are drawn. I zoomed out with the code from txesmi to see it.
bmpMap have also the size 2048x2048. The screen size.x is 1440px

Code:
bmap_zbuffer(bmap_createblack(2048,2048,32));

while(1)
{
bmap_rendertarget(bmpMap,0,0);
		
		draw_quad(tt,vector(100,20,0),NULL,NULL,NULL,NULL,100,NULL);	
		draw_quad(tt,vector(500,20,0),NULL,NULL,NULL,NULL,100,NULL);	
		draw_quad(tt,vector(1000,20,0),NULL,NULL,NULL,NULL,100,NULL);	
		draw_quad(tt,vector(1500,20,0),NULL,NULL,NULL,NULL,100,NULL);	
		draw_quad(tt,vector(2000,20,0),NULL,NULL,NULL,NULL,100,NULL);	
		
bmap_rendertarget(NULL,0,0);
wait(1);
}



Does anyone have a solution for this problem? smirk

Last edited by Benni003; 10/13/15 19:37.