Canvas graphics library
0.1.0
This library is developed to perform canvas graphics in memory buffers
|
#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; } |
Internal structures of canvas gfx library
Definition in file canvas_types.h.
#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.
#define max | ( | a, | |
b | |||
) | ((a)>(b)?(a):(b)) |
Macros returning maximum of 2 numbers
Definition at line 47 of file canvas_types.h.
#define min | ( | a, | |
b | |||
) | ((a)<(b)?(a):(b)) |
Macros returning minimum of 2 numbers
Definition at line 42 of file canvas_types.h.