Software APIs
Data Fields
screen_bitmap Struct Reference

A bitmap to draw on a screen. More...

#include <sw/device/examples/teacup_demos/data/bitmaps.h>

Data Fields

const size_t num_rows
 Number of rows in the bitmap.
 
const size_t num_cols
 Number of columns in the bitmap.
 
const uint16_t * bitmap
 A 2D bitmap array.
 
const uint16_t fill_color
 Fill color to surround image by.
 

Detailed Description

A bitmap to draw on a screen.

Definition at line 14 of file bitmaps.h.

Field Documentation

◆ bitmap

const uint16_t* screen_bitmap::bitmap

A 2D bitmap array.

Definition at line 26 of file bitmaps.h.

◆ fill_color

const uint16_t screen_bitmap::fill_color

Fill color to surround image by.

Definition at line 30 of file bitmaps.h.

◆ num_cols

const size_t screen_bitmap::num_cols

Number of columns in the bitmap.

Definition at line 22 of file bitmaps.h.

◆ num_rows

const size_t screen_bitmap::num_rows

Number of rows in the bitmap.

Definition at line 18 of file bitmaps.h.