layer_prop is only used within MB1063.
 
Symbols
loading...
Files
loading...

layer_prop variable

Syntax

References

LocationReferrerText
LCDConf.c:105
LCDConf.c:269HAL_LTDC_LineEventCallback()
if (layer_prop[layer].pending_buffer >= 0)
LCDConf.c:272HAL_LTDC_LineEventCallback()
Addr = layer_prop[layer].address + \
LCDConf.c:273HAL_LTDC_LineEventCallback()
layer_prop[layer].xSize * layer_prop[layer].ySize * layer_prop[layer].pending_buffer * layer_prop[layer].BytesPerPixel;
LCDConf.c:280HAL_LTDC_LineEventCallback()
GUI_MULTIBUF_ConfirmEx(layer, layer_prop[layer].pending_buffer);
LCDConf.c:283HAL_LTDC_LineEventCallback()
layer_prop[layer].pending_buffer = -1;
LCDConf.c:341LCD_X_Config()
LCDConf.c:351LCD_X_Config()
LCDConf.c:353LCD_X_Config()
layer_prop[i].pending_buffer = -1;
LCDConf.c:356LCD_X_Config()
LCD_SetVRAMAddrEx(i, (void *)(layer_prop[i].address));
LCDConf.c:359LCD_X_Config()
layer_prop[i].BytesPerPixel = LCD_GetBitsPerPixelEx(i) >> 3;
LCDConf.c:398LCD_X_DisplayDriver()
addr = layer_prop[LayerIndex].address + ((LCD_X_SETORG_INFO *)pData)->yPos * layer_prop[LayerIndex].xSize * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:403LCD_X_DisplayDriver()
LCDConf.c:439LCD_X_DisplayDriver()
LCDConf.c:440LCD_X_DisplayDriver()
LCDConf.c:491LCD_LL_LayerInit()
layer_cfg.FBStartAdress = layer_prop[LayerIndex].address;
LCDConf.c:657GetBufferSize()
BufferSize = layer_prop[LayerIndex].xSize * layer_prop[LayerIndex].ySize * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:672CUSTOM_CopyBuffer()
AddrSrc = layer_prop[LayerIndex].address + BufferSize * IndexSrc;
LCDConf.c:673CUSTOM_CopyBuffer()
AddrDst = layer_prop[LayerIndex].address + BufferSize * IndexDst;
LCDConf.c:674CUSTOM_CopyBuffer()
DMA2D_CopyBuffer(LayerIndex, (void *)AddrSrc, (void *)AddrDst, layer_prop[LayerIndex].xSize, layer_prop[LayerIndex].ySize, 0, 0);
LCDConf.c:675CUSTOM_CopyBuffer()
LCDConf.c:693CUSTOM_CopyRect()
AddrSrc = layer_prop[LayerIndex].address + (y0 * layer_prop[LayerIndex].xSize + x0) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:694CUSTOM_CopyRect()
AddrDst = layer_prop[LayerIndex].address + (y1 * layer_prop[LayerIndex].xSize + x1) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:695CUSTOM_CopyRect()
DMA2D_CopyBuffer(LayerIndex, (void *)AddrSrc, (void *)AddrDst, xSize, ySize, layer_prop[LayerIndex].xSize - xSize, layer_prop[LayerIndex].xSize - xSize);
LCDConf.c:724CUSTOM_FillRect()
AddrDst = layer_prop[LayerIndex].address + BufferSize * layer_prop[LayerIndex].buffer_index + (y0 * layer_prop[LayerIndex].xSize + x0) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:725CUSTOM_FillRect()
DMA2D_FillBuffer(LayerIndex, (void *)AddrDst, xSize, ySize, layer_prop[LayerIndex].xSize - xSize, PixelIndex);
LCDConf.c:746CUSTOM_DrawBitmap32bpp()
AddrDst = layer_prop[LayerIndex].address + BufferSize * layer_prop[LayerIndex].buffer_index + (y * layer_prop[LayerIndex].xSize + x) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf.c:748CUSTOM_DrawBitmap32bpp()
OffLineDst = layer_prop[LayerIndex].xSize - xSize;