Canvas graphics library  0.1.0
This library is developed to perform canvas graphics in memory buffers
Classes | Macros
canvas_types.h File Reference
#include "canvas/UserSettings.h"

Go to the source code of this file.

Classes

struct  SUnicodeBlockRecord
 

Macros

#define min(a, b)   ((a)<(b)?(a):(b))
 
#define max(a, b)   ((a)>(b)?(a):(b))
 
#define canvas_swap_data(a, b, type)   { type t = a; a = b; b = t; }
 

Detailed Description

Internal structures of canvas gfx library

Definition in file canvas_types.h.

Macro Definition Documentation

◆ canvas_swap_data

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

swaps content of a and b variables of type type

Definition at line 52 of file canvas_types.h.

◆ max

#define max (   a,
 
)    ((a)>(b)?(a):(b))

Macros returning maximum of 2 numbers

Definition at line 47 of file canvas_types.h.

◆ min

#define min (   a,
 
)    ((a)<(b)?(a):(b))

Macros returning minimum of 2 numbers

Definition at line 42 of file canvas_types.h.