FS-7506 refactor to use rgb color for pixel

This commit is contained in:
Seven Du
2015-05-12 10:37:53 +08:00
committed by Michael Jerris
parent f0b42410a3
commit 8787ccd5a5
2 changed files with 21 additions and 28 deletions
+2 -2
View File
@@ -256,9 +256,9 @@ SWITCH_DECLARE(void) switch_img_fill(switch_image_t *img, int x, int y, int w, i
* \param[in] img Image descriptor
* \param[in] x leftmost pos
* \param[in] y topmost pos
* \param[in] color YUV color
* \param[in] color RGB color
*/
SWITCH_DECLARE(void) switch_img_draw_pixel(switch_image_t *img, int x, int y, switch_yuv_color_t *color);
SWITCH_DECLARE(void) switch_img_draw_pixel(switch_image_t *img, int x, int y, switch_rgb_color_t *color);
/*!\brief Set RGB color with a string
*