X-Git-Url: https://git.kernelconcepts.de/?p=metawatch.git;a=blobdiff_plain;f=mw_utility.h;h=806772955864c199cce5b9186d2e8bcf6116a11c;hp=65373601fc3b46643f520d2dbb4ced0d4f67be42;hb=59068bbd135c3d2ed046be5fd64850166ca04a5c;hpb=ae55d0fbca888317d6c3fa276bd80a9d63d7999f;ds=sidebyside diff --git a/mw_utility.h b/mw_utility.h index 6537360..8067729 100644 --- a/mw_utility.h +++ b/mw_utility.h @@ -1,7 +1,20 @@ /* * (c) 2011 Siegen, Germany by Nils Faerber * - * license LGPL + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. */ #ifndef _MW_UTILITY_H @@ -17,12 +30,17 @@ typedef struct { typedef enum { MW_BLACK = 0, MW_WHITE, + MW_TRANSPARENT } mw_color; mw_buffer *mw_alloc_pbuffer(unsigned int res_x, unsigned int res_y, unsigned int bpp); void mw_free_pbuffer(mw_buffer *mwbuf); +/* makes a buffer for sending to the watch from the drawing buffer */ +unsigned char *mw_make_mw_buffer(mw_buffer *mwbuf, int *buflen); +unsigned char *mw_make_mw_oled_buffer(mw_buffer *mwbuf, int *buflen); + void mw_dump_mw_buffer(mw_buffer *mwbuf); @@ -32,6 +50,9 @@ void mw_buf_clear(mw_buffer *mwbuf, mw_color clr); /* draw a single pixel */ void mw_buf_draw_pixel(mw_buffer *mwbuf, unsigned int x, unsigned int y, mw_color clr); +void mw_buf_print(mw_buffer *mwbuf, unsigned int x, unsigned int y, char *text, unsigned char fsize, mw_color fgclr, mw_color bgclr); + +void mw_buf_draw_line_bresenham(mw_buffer *mwbuf, unsigned int xstart, unsigned int ystart, unsigned int xend, unsigned int yend, mw_color clr); #endif