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

layer_prop variable

References

LocationReferrerText
LCDConf_stm32f429i_disco_MB1075.c:106
LCDConf_stm32f429i_disco_MB1075.c:302HAL_LTDC_LineEventCallback()
if (layer_prop[layer].pending_buffer >= 0)
LCDConf_stm32f429i_disco_MB1075.c:305HAL_LTDC_LineEventCallback()
Addr = layer_prop[layer].address + \
LCDConf_stm32f429i_disco_MB1075.c:306HAL_LTDC_LineEventCallback()
layer_prop[layer].xSize * layer_prop[layer].ySize * layer_prop[layer].pending_buffer * layer_prop[layer].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:313HAL_LTDC_LineEventCallback()
GUI_MULTIBUF_ConfirmEx(layer, layer_prop[layer].pending_buffer);
LCDConf_stm32f429i_disco_MB1075.c:316HAL_LTDC_LineEventCallback()
layer_prop[layer].pending_buffer = -1;
LCDConf_stm32f429i_disco_MB1075.c:374LCD_X_Config()
LCDConf_stm32f429i_disco_MB1075.c:384LCD_X_Config()
LCDConf_stm32f429i_disco_MB1075.c:386LCD_X_Config()
layer_prop[i].pending_buffer = -1;
LCDConf_stm32f429i_disco_MB1075.c:389LCD_X_Config()
LCD_SetVRAMAddrEx(i, (void *)(layer_prop[i].address));
LCDConf_stm32f429i_disco_MB1075.c:392LCD_X_Config()
layer_prop[i].BytesPerPixel = LCD_GetBitsPerPixelEx(i) >> 3;
LCDConf_stm32f429i_disco_MB1075.c:431LCD_X_DisplayDriver()
addr = layer_prop[LayerIndex].address + ((LCD_X_SETORG_INFO *)pData)->yPos * layer_prop[LayerIndex].xSize * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:436LCD_X_DisplayDriver()
LCDConf_stm32f429i_disco_MB1075.c:472LCD_X_DisplayDriver()
LCDConf_stm32f429i_disco_MB1075.c:473LCD_X_DisplayDriver()
LCDConf_stm32f429i_disco_MB1075.c:524LCD_LL_LayerInit()
layer_cfg.FBStartAdress = layer_prop[LayerIndex].address;
LCDConf_stm32f429i_disco_MB1075.c:692GetBufferSize()
BufferSize = layer_prop[LayerIndex].xSize * layer_prop[LayerIndex].ySize * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:707CUSTOM_CopyBuffer()
AddrSrc = layer_prop[LayerIndex].address + BufferSize * IndexSrc;
LCDConf_stm32f429i_disco_MB1075.c:708CUSTOM_CopyBuffer()
AddrDst = layer_prop[LayerIndex].address + BufferSize * IndexDst;
LCDConf_stm32f429i_disco_MB1075.c:709CUSTOM_CopyBuffer()
DMA2D_CopyBuffer(LayerIndex, (void *)AddrSrc, (void *)AddrDst, layer_prop[LayerIndex].xSize, layer_prop[LayerIndex].ySize, 0, 0);
LCDConf_stm32f429i_disco_MB1075.c:710CUSTOM_CopyBuffer()
LCDConf_stm32f429i_disco_MB1075.c:728CUSTOM_CopyRect()
AddrSrc = layer_prop[LayerIndex].address + (y0 * layer_prop[LayerIndex].xSize + x0) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:729CUSTOM_CopyRect()
AddrDst = layer_prop[LayerIndex].address + (y1 * layer_prop[LayerIndex].xSize + x1) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:730CUSTOM_CopyRect()
DMA2D_CopyBuffer(LayerIndex, (void *)AddrSrc, (void *)AddrDst, xSize, ySize, layer_prop[LayerIndex].xSize - xSize, layer_prop[LayerIndex].xSize - xSize);
LCDConf_stm32f429i_disco_MB1075.c:759CUSTOM_FillRect()
AddrDst = layer_prop[LayerIndex].address + BufferSize * layer_prop[LayerIndex].buffer_index + (y0 * layer_prop[LayerIndex].xSize + x0) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:760CUSTOM_FillRect()
DMA2D_FillBuffer(LayerIndex, (void *)AddrDst, xSize, ySize, layer_prop[LayerIndex].xSize - xSize, PixelIndex);
LCDConf_stm32f429i_disco_MB1075.c:781CUSTOM_DrawBitmap32bpp()
AddrDst = layer_prop[LayerIndex].address + BufferSize * layer_prop[LayerIndex].buffer_index + (y * layer_prop[LayerIndex].xSize + x) * layer_prop[LayerIndex].BytesPerPixel;
LCDConf_stm32f429i_disco_MB1075.c:783CUSTOM_DrawBitmap32bpp()
OffLineDst = layer_prop[LayerIndex].xSize - xSize;