跳轉到主要內容

Globals

The global touchgfx namespace.
All TouchGFX framework enums, Type definitions, global functions and global variables are placed in this namespace.

Functions

lineFromARGB8888

void lineFromARGB8888(uint8_t *constptr ,
const uint32_t *constdata ,
const unsignedcount ,
const uint8_talpha
)

Draw a horizontal line (one pixel high) using pixels from the given data pointer (ARGB8888 data).

Parameters:
ptrThe pointer to the position in the framebuffer.
dataThe ARGB8888 data.
countNumber of pixels to draw.
alphaThe alpha.

Location: touchgfx/hal/PaintRGB888Impl.hpp

lineFromColor

void lineFromColor(uint8_t *constptr ,
const unsignedcount ,
const uint32_tcolor ,
const uint8_talpha
)

Draw a horizontal line (one pixel high) using the given color.

Parameters:
ptrThe pointer to the position in the framebuffer.
countNumber of pixels to draw.
colorThe color.
alphaThe alpha.

Location: touchgfx/hal/PaintRGB888Impl.hpp

lineFromL8ARGB8888

void lineFromL8ARGB8888(uint8_t *constptr ,
const uint8_t *constdata ,
const unsignedcount ,
const uint8_talpha
)

Draw a horizontal line (one pixel high) using pixels from the given data pointer (L8ARGB8888 data).

Parameters:
ptrThe pointer to the position in the framebuffer.
dataThe palette indices.
countNumber of pixels to draw.
alphaThe alpha.

Location: touchgfx/hal/PaintRGB888Impl.hpp

lineFromL8RGB888

void lineFromL8RGB888(uint8_t *constptr ,
const uint8_t *constdata ,
const unsignedcount ,
const uint8_talpha
)

Draw a horizontal line (one pixel high) using pixels from the given data pointer (L8RGB888 data).

Parameters:
ptrThe pointer to the position in the framebuffer.
dataThe palette indices.
countNumber of pixels to draw.
alphaThe alpha.

Location: touchgfx/hal/PaintRGB888Impl.hpp

lineFromRGB888

void lineFromRGB888(uint8_t *constptr ,
const uint8_t *constdata ,
const unsignedcount ,
const uint8_talpha
)

Draw a horizontal line (one pixel high) using pixels from the given data pointer (RGB888 data).

Parameters:
ptrThe pointer to the position in the framebuffer.
dataThe RGB888 data.
countNumber of pixels to draw.
alphaThe alpha.

Location: touchgfx/hal/PaintRGB888Impl.hpp