Home
last modified time | relevance | path

Searched refs:p_bmp (Results 1 – 1 of 1) sorted by relevance

/TwlSDK-5.3.1/build/demos.TWL/tcl/tcl-2/src/
Dmain.c35 void BMPToRGB( const u8* p_bmp, u16* p_rgb );
95 void BMPToRGB( const u8* p_bmp, u16* p_rgb ) in BMPToRGB() argument
104 b = ( p_bmp[ 3 * ( h * TCL_JPEG_WIDTH + w ) + 0 ] >> 3 ) & 0x1f; in BMPToRGB()
105 g = ( p_bmp[ 3 * ( h * TCL_JPEG_WIDTH + w ) + 1 ] >> 3 ) & 0x1f; in BMPToRGB()
106 r = ( p_bmp[ 3 * ( h * TCL_JPEG_WIDTH + w ) + 2 ] >> 3 ) & 0x1f; in BMPToRGB()