DrawProp is only used within STM32446E_EVAL.
 
Symbols
loading...
Files
loading...

DrawProp variable

References

LocationReferrerText
stm32446e_eval_lcd.c:93
stm32446e_eval_lcd.c:122BSP_LCD_Init()
DrawProp.BackColor = 0xFFFF;
stm32446e_eval_lcd.c:123BSP_LCD_Init()
DrawProp.pFont = &Font24;
stm32446e_eval_lcd.c:124BSP_LCD_Init()
DrawProp.TextColor = 0x0000;
stm32446e_eval_lcd.c:176BSP_LCD_GetTextColor()
return DrawProp.TextColor;
stm32446e_eval_lcd.c:185BSP_LCD_GetBackColor()
return DrawProp.BackColor;
stm32446e_eval_lcd.c:194BSP_LCD_SetTextColor()
DrawProp.TextColor = Color;
stm32446e_eval_lcd.c:203BSP_LCD_SetBackColor()
DrawProp.BackColor = Color;
stm32446e_eval_lcd.c:212BSP_LCD_SetFont()
DrawProp.pFont = fonts;
stm32446e_eval_lcd.c:221BSP_LCD_GetFont()
return DrawProp.pFont;
stm32446e_eval_lcd.c:232BSP_LCD_Clear()
uint32_t color_backup = DrawProp.TextColor;
stm32446e_eval_lcd.c:234BSP_LCD_Clear()
DrawProp.TextColor = Color;
stm32446e_eval_lcd.c:241BSP_LCD_Clear()
DrawProp.TextColor = color_backup;
stm32446e_eval_lcd.c:242BSP_LCD_Clear()
stm32446e_eval_lcd.c:255BSP_LCD_ClearStringLine()
uint32_t color_backup = DrawProp.TextColor;
stm32446e_eval_lcd.c:257BSP_LCD_ClearStringLine()
DrawProp.TextColor = DrawProp.BackColor;;
stm32446e_eval_lcd.c:260BSP_LCD_ClearStringLine()
BSP_LCD_FillRect(0, (Line * DrawProp.pFont->Height), BSP_LCD_GetXSize(), DrawProp.pFont->Height);
stm32446e_eval_lcd.c:262BSP_LCD_ClearStringLine()
DrawProp.TextColor = color_backup;
stm32446e_eval_lcd.c:263BSP_LCD_ClearStringLine()
stm32446e_eval_lcd.c:275BSP_LCD_DisplayChar()
DrawChar(Xpos, Ypos, &DrawProp.pFont->table[(Ascii-' ') *\
stm32446e_eval_lcd.c:276BSP_LCD_DisplayChar()
DrawProp.pFont->Height * ((DrawProp.pFont->Width + 7) / 8)]);
stm32446e_eval_lcd.c:300BSP_LCD_DisplayStringAt()
xsize = (BSP_LCD_GetXSize()/DrawProp.pFont->Width);
stm32446e_eval_lcd.c:306BSP_LCD_DisplayStringAt()
refcolumn = Xpos + ((xsize - size)* DrawProp.pFont->Width) / 2;
stm32446e_eval_lcd.c:316BSP_LCD_DisplayStringAt()
refcolumn = - Xpos + ((xsize - size)*DrawProp.pFont->Width);
stm32446e_eval_lcd.c:333BSP_LCD_DisplayStringAt()
while ((*Text != 0) & (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width))
stm32446e_eval_lcd.c:338BSP_LCD_DisplayStringAt()
refcolumn += DrawProp.pFont->Width;
stm32446e_eval_lcd.c:403BSP_LCD_DrawHLine()
LcdDrv->DrawHLine(DrawProp.TextColor, Xpos, Ypos, Length);
stm32446e_eval_lcd.c:409BSP_LCD_DrawHLine()
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
stm32446e_eval_lcd.c:426BSP_LCD_DrawVLine()
LcdDrv->DrawVLine(DrawProp.TextColor, Xpos, Ypos, Length);
stm32446e_eval_lcd.c:432BSP_LCD_DrawVLine()
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
stm32446e_eval_lcd.c:498BSP_LCD_DrawLine()
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor); /* Draw the current pixel */
stm32446e_eval_lcd.c:547BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos - current_y), DrawProp.TextColor);
stm32446e_eval_lcd.c:549BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos - current_y), DrawProp.TextColor);
stm32446e_eval_lcd.c:551BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos - current_x), DrawProp.TextColor);
stm32446e_eval_lcd.c:553BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos - current_x), DrawProp.TextColor);
stm32446e_eval_lcd.c:555BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos + current_y), DrawProp.TextColor);
stm32446e_eval_lcd.c:557BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos + current_y), DrawProp.TextColor);
stm32446e_eval_lcd.c:559BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos + current_x), DrawProp.TextColor);
stm32446e_eval_lcd.c:561BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos + current_x), DrawProp.TextColor);
stm32446e_eval_lcd.c:622BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32446e_eval_lcd.c:623BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32446e_eval_lcd.c:624BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32446e_eval_lcd.c:625BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32446e_eval_lcd.c:692BSP_LCD_FillRect()
stm32446e_eval_lcd.c:717BSP_LCD_FillCircle()
stm32446e_eval_lcd.c:744BSP_LCD_FillCircle()
stm32446e_eval_lcd.c:880DrawChar()
height = DrawProp.pFont->Height;
stm32446e_eval_lcd.c:881DrawChar()
width = DrawProp.pFont->Width;
stm32446e_eval_lcd.c:909DrawChar()
stm32446e_eval_lcd.c:913DrawChar()