comparison src/cs/drivers/drv_app/r2d/lcds/PC_DSAMPLE/r2d_task_init_i.c @ 0:4e78acac3d88

src/{condat,cs,gpf,nucleus}: import from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:23:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e78acac3d88
1 /* Used by refresh task to extract bytes from the
2 framebuffer */
3
4
5 #if (R2D_REFRESH == R2D_VERTICAL)
6 #define R2D_MB_PRIM_SIZE ((R2D_WIDTH*R2D_HEIGHT*4)+6*4*3+100)//70000//8000 //70000
7 #else
8 #define R2D_MB_PRIM_SIZE ((R2D_WIDTH*R2D_HEIGHT*4)+6*4*3+100)//70000//8000 //70000
9 #endif
10
11 static void r2d_refresh_task_init(void)
12 {
13 }
14
15 static void r2d_refresh_task_kill(void)
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 }