objc

Functions
pix.h File Reference

Pixel display and frame management functions. More...

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "display.h"
#include "frame.h"
#include "types.h"
Include dependency graph for pix.h:

Go to the source code of this file.

Functions

void pix_init (void)
 Initializes the pixel system on startup. More...
 
void pix_exit (void)
 Cleans up the pixel system on shutdown. More...
 

Variables

Global Color and Point Constants
pix_point_t pix_zero_point
 Zero point (0,0)
 
pix_size_t pix_zero_size
 Zero size (0,0)
 
pix_color_t pix_white
 White (255,255,255,255) ARGB.
 
pix_color_t pix_black
 Black (0,0,0,255) ARGB.
 
pix_color_t pix_red
 Red (255,0,0,255) ARGB.
 
pix_color_t pix_green
 Green (0,255,0,255) ARGB.
 
pix_color_t pix_blue
 Blue (0,0,255,255) ARGB.
 
pix_color_t pix_yellow
 Yellow (255,255,0,255) ARGB.
 
pix_color_t pix_cyan
 Cyan (0,255,255,255) ARGB.
 
pix_color_t pix_magenta
 Magenta (255,0,255,255) ARGB.
 
pix_color_t pix_gray
 Gray (128,128,128,255) ARGB.
 
pix_color_t pix_light_gray
 Light gray (192,192,192,255) ARGB.
 
pix_color_t pix_dark_gray
 Dark gray (64,64,64,255) ARGB.
 

Detailed Description

Pixel display and frame management functions.

Definition in file pix.h.