LCDGFX LCD display driver  1.2.0
Lightweight graphics library for SSD1306, SSD1325, SSD1327, SSD1331, SSD1351, SH1106, SH1107, IL9163, ST7735, ST7789, ILI9341, PCD8544 displays over I2C/SPI
canvas_types_int.h File Reference

Internal structures of canvas gfx library. More...

Include dependency graph for canvas_types_int.h:

Go to the source code of this file.

Classes

struct  SUnicodeBlockRecord
 Structure describes unicode block in font data. More...
 

Macros

#define __min(a, b)   ((a) < (b) ? (a) : (b))
 Macros returning minimum of 2 numbers.
 
#define __max(a, b)   ((a) > (b) ? (a) : (b))
 Macros returning maximum of 2 numbers.
 
#define canvas_swap_data(a, b, type)
 swaps content of a and b variables of type type More...
 

Detailed Description

Internal structures of canvas gfx library.

Definition in file canvas_types_int.h.

Macro Definition Documentation

◆ canvas_swap_data

#define canvas_swap_data (   a,
  b,
  type 
)
Value:
{ \
type t = a; \
a = b; \
b = t; \
}

swaps content of a and b variables of type type

Definition at line 55 of file canvas_types_int.h.