view chipsetsw/drivers/drv_app/r2d/lcds/PC_CSAMPLE/r2d_task_init_i.c @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
line wrap: on
line source

/* Used by refresh task to extract bytes from the
framebuffer */


#define R2D_MB_PRIM_SIZE 2000

extern UINT32 r2d_p_refresh_buffer[4*R2D_WIDTH*R2D_MWHEIGHT];


static void r2d_refresh_task_init(void)
{
	INT16 i; 
	UINT32 *p;

	uwire_init_lcd();

	
	
	p=r2d_p_refresh_buffer;
	for(i=0;i<4*R2D_WIDTH*R2D_MWHEIGHT;i++)
	{
		*p++=0;
	}
}

static void r2d_refresh_task_kill(void)
{
	
}

static void r2d_dithering_init(void)
{
   R2D_MALLOC(r2d_mb_id,UINT32,sizeof(UINT32)*4,r2d_g_dithering_matrix);
   r2d_g_dithering_matrix[0]=0;
   r2d_g_dithering_matrix[1]=2;
   r2d_g_dithering_matrix[2]=3;
   r2d_g_dithering_matrix[3]=1;
}