Subversion Repositories Kolibri OS

Rev

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

Rev 8402 Rev 8411
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
471
{
473
	/*
472
	struct blit_call image;
474
	struct blit_call image;
473
	image.dstx=dstx;
475
	image.dstx=dstx;
474
	image.dsty=dsty;
476
	image.dsty=dsty;
475
	image.w=w;
477
	image.w=w;
Line 479... Line 481...
479
	image.srcw=srcw;
481
	image.srcw=srcw;
480
	image.srch=srch;
482
	image.srch=srch;
481
	image.stride=stride;
483
	image.stride=stride;
482
	image.d=d;
484
	image.d=d;
483
	asm ("int $0x40"::"a"(73),"b"(0),"c"(&image));
485
	asm("int $0x40"::"a"(73),"b"(0),"c"(&image));
-
 
486
	*/
484
}
487
}