MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
drv_gfx_lcc.h.ftl File Reference

LCC driver functions and definitions. More...

#include "gfx/driver/gfx_driver.h"
Include dependency graph for drv_gfx_lcc.h.ftl:

Functions

gfxResult DRV_LCC_Initialize (void)
 Initialize driver. More...
 
void DRV_LCC_Update (void)
 Execute update task. More...
 
gfxResult DRV_LCC_BlitBuffer (int32_t x, int32_t y, gfxPixelBuffer *buf)
 Blit buffer. More...
 
gfxDriverIOCTLResponse DRV_LCC_IOCTL (gfxDriverIOCTLRequest req, void *arg)
 Graphics driver generic IOCTL interface. More...
 

Detailed Description

LCC driver functions and definitions.

This header file contains the function prototypes and definitions of the data types and constants that make up the interface to the Low-Cost Controllerless (LCC) Graphics Controller.

This driver is configured via MHC and generated specific to the configuration and hardware architecture set in MHC.

See also
LE LCC Display Driver component

Function Documentation

◆ DRV_LCC_BlitBuffer()

gfxResult DRV_LCC_BlitBuffer ( int32_t  x,
int32_t  y,
gfxPixelBuffer buf 
)

Blit buffer.

Copies buf to the framebuffer at location x and y.

gfxResult res = drv->blitBuffer();
Returns
GFX_SUCCESS if blit was performed, otherwise GFX_FAILURE.

◆ DRV_LCC_Initialize()

gfxResult DRV_LCC_Initialize ( void  )

Initialize driver.

Initializes the LCC driver. This routine is typically called by a graphics library or by the application during application initialization.

Returns
GFX_SUCCESS if driver ready to render, otherwise GFX_FAILURE.
Here is the call graph for this function:

◆ DRV_LCC_IOCTL()

gfxDriverIOCTLResponse DRV_LCC_IOCTL ( gfxDriverIOCTLRequest  req,
void *  arg 
)

Graphics driver generic IOCTL interface.

Sends an IOCTL message to the driver.

val.value.v_uint = 1;
DRV_LCC_IOCTL(GFX_IOCTL_FRAME_START, &val);
Returns
gfxDriverIOCTLResponse the IOCTL handler response

◆ DRV_LCC_Update()

void DRV_LCC_Update ( void  )

Execute update task.

Performs a driver task update.

Returns
void.
Here is the call graph for this function: