Changeset 37118 for titan/titan/mipselport.h
- Timestamp:
- 02/13/16 11:33:40 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/mipselport.h
r37116 r37118 235 235 { 236 236 doblit = 0; 237 max = 25; 237 //max = 25; 238 max = 8; 238 239 dst_left = posx; 239 240 dst_width = width; … … 290 291 dst_height = dst_height - dst_top; 291 292 292 if(status.screenanim > 0) usleep(status.screenanimspeed * 1000);293 294 293 //printf("left:%i width:%i top:%i height:%i\n", dst_left, dst_width, dst_top, dst_height); 295 waitvsync();294 //waitvsync(); 296 295 if(status.bcm == 1 && status.usedirectfb == 0) 297 296 bcm_accel_blit(skinfb->data_phys, skinfb->width, skinfb->height, skinfb->pitch, 0, fb->data_phys, fb->width, fb->height, fb->pitch, 0, 0, skinfb->width, skinfb->height, dst_left, dst_top, dst_width, dst_height, 0, 0); … … 302 301 setfbosddev(fbtopdev, dst_top); 303 302 setfbosddev(fbheightdev, dst_height); 303 usleep(1000); 304 304 } 305 if(status.screenanim > 0) usleep(status.screenanimspeed * 1000); 305 306 blit(); 306 307 } 308 if(status.bcm == 1 && status.usedirectfb == 0) 309 bcm_accel_blit(skinfb->data_phys, skinfb->width, skinfb->height, skinfb->pitch, 0, fb->data_phys, fb->width, fb->height, fb->pitch, 0, 0, skinfb->width, skinfb->height, posx, posy, width, height, 0, 0); 310 else 311 { 312 setfbosddev(fbleftdev, posx); 313 setfbosddev(fbwidthdev, width); 314 setfbosddev(fbtopdev, posy); 315 setfbosddev(fbheightdev, height); 316 } 317 blit(); 307 318 } 308 319 else
Note: See TracChangeset
for help on using the changeset viewer.