Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5371 → Rev 5372

/contrib/media/fplay/utils.c
100,18 → 100,18
 
void blit_raw(ctx_t *ctx, void *raw, int x, int y, int w, int h, int pitch)
{
int *dst = (int*)ctx->pixmap->data;
int *dst;
int *src = raw;
int i, j;
 
dst+= y * ctx->pixmap->pitch/4 + x;
dst = ctx->pixmap_data;
dst+= y * ctx->pixmap_pitch/4 + x;
 
 
for(i=0; i < h; i++)
{
for(j = 0; j < w; j++)
dst[j] = src[j];
dst+= ctx->pixmap->pitch/4;
dst+= ctx->pixmap_pitch/4;
src+= pitch/4;
};
};