comparison src/cs/drivers/drv_app/r2d/lcds/Horizontal/r2d_task_init_i.c @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1 /* Used by refresh task to extract bytes from the
2 framebuffer */
3
4
5
6 #define R2D_MB_PRIM_SIZE (5*(R2D_MWWIDTH*4*R2D_HEIGHT)+1700+(R2D_MWWIDTH*4*R2D_HEIGHT)+(R2D_WIDTH*4*R2D_HEIGHT))//70000//8000 //70000
7
8
9 static void r2d_refresh_task_init(void)
10 {
11
12 }
13
14 static void r2d_refresh_task_kill(void)
15 {
16
17 }
18
19 static void r2d_dithering_init(void)
20 {
21 R2D_MALLOC(r2d_mb_id,UINT32,sizeof(UINT32)*4,r2d_g_dithering_matrix);
22 r2d_g_dithering_matrix[0]=0;
23 r2d_g_dithering_matrix[1]=2;
24 r2d_g_dithering_matrix[2]=3;
25 r2d_g_dithering_matrix[3]=1;
26 }