Subversion Repositories Kolibri OS

Rev

Rev 8411 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8411 Rev 8412
Line 467... Line 467...
467
};
467
};
Line 468... Line 468...
468
 
468
 
469
void kos_blit(int dstx, int dsty, int w, int h, int srcx, 
469
void kos_blit(int dstx, int dsty, int w, int h, int srcx, 
470
	int srcy,int srcw, int srch, int stride, char *d)
470
	int srcy,int srcw, int srch, int stride, char *d)
471
{
-
 
472
	// Page fault
-
 
473
	/*
471
{
474
	struct blit_call image;
472
	volatile struct blit_call image;
475
	image.dstx=dstx;
473
	image.dstx=dstx;
476
	image.dsty=dsty;
474
	image.dsty=dsty;
477
	image.w=w;
475
	image.w=w;
478
	image.h=h;
476
	image.h=h;
Line 481... Line 479...
481
	image.srcw=srcw;
479
	image.srcw=srcw;
482
	image.srch=srch;
480
	image.srch=srch;
483
	image.stride=stride;
481
	image.stride=stride;
484
	image.d=d;
482
	image.d=d;
485
	asm("int $0x40"::"a"(73),"b"(0),"c"(&image));
483
	asm("int $0x40"::"a"(73),"b"(0),"c"(&image));
486
	*/
484
	
487
}
485
}