DrawProp is only used within STM32412G-Discovery.
 
Symbols
loading...
Files
loading...

DrawProp variable

References

LocationReferrerText
stm32412g_discovery_lcd.c:79
stm32412g_discovery_lcd.c:116BSP_LCD_InitEx()
DrawProp.BackColor = 0xFFFF;
stm32412g_discovery_lcd.c:117BSP_LCD_InitEx()
DrawProp.pFont = &Font24;
stm32412g_discovery_lcd.c:118BSP_LCD_InitEx()
DrawProp.TextColor = 0x0000;
stm32412g_discovery_lcd.c:211BSP_LCD_GetTextColor()
return DrawProp.TextColor;
stm32412g_discovery_lcd.c:220BSP_LCD_GetBackColor()
return DrawProp.BackColor;
stm32412g_discovery_lcd.c:229BSP_LCD_SetTextColor()
DrawProp.TextColor = Color;
stm32412g_discovery_lcd.c:238BSP_LCD_SetBackColor()
DrawProp.BackColor = Color;
stm32412g_discovery_lcd.c:247BSP_LCD_SetFont()
DrawProp.pFont = fonts;
stm32412g_discovery_lcd.c:256BSP_LCD_GetFont()
return DrawProp.pFont;
stm32412g_discovery_lcd.c:267BSP_LCD_Clear()
uint32_t color_backup = DrawProp.TextColor;
stm32412g_discovery_lcd.c:269BSP_LCD_Clear()
DrawProp.TextColor = Color;
stm32412g_discovery_lcd.c:276BSP_LCD_Clear()
DrawProp.TextColor = color_backup;
stm32412g_discovery_lcd.c:277BSP_LCD_Clear()
stm32412g_discovery_lcd.c:290BSP_LCD_ClearStringLine()
uint32_t color_backup = DrawProp.TextColor;
stm32412g_discovery_lcd.c:292BSP_LCD_ClearStringLine()
DrawProp.TextColor = DrawProp.BackColor;;
stm32412g_discovery_lcd.c:295BSP_LCD_ClearStringLine()
BSP_LCD_FillRect(0, (Line * DrawProp.pFont->Height), BSP_LCD_GetXSize(), DrawProp.pFont->Height);
stm32412g_discovery_lcd.c:297BSP_LCD_ClearStringLine()
DrawProp.TextColor = color_backup;
stm32412g_discovery_lcd.c:298BSP_LCD_ClearStringLine()
stm32412g_discovery_lcd.c:310BSP_LCD_DisplayChar()
DrawChar(Xpos, Ypos, &DrawProp.pFont->table[(Ascii-' ') *\
stm32412g_discovery_lcd.c:311BSP_LCD_DisplayChar()
DrawProp.pFont->Height * ((DrawProp.pFont->Width + 7) / 8)]);
stm32412g_discovery_lcd.c:335BSP_LCD_DisplayStringAt()
xsize = (BSP_LCD_GetXSize()/DrawProp.pFont->Width);
stm32412g_discovery_lcd.c:341BSP_LCD_DisplayStringAt()
refcolumn = Xpos + ((xsize - size)* DrawProp.pFont->Width) / 2;
stm32412g_discovery_lcd.c:351BSP_LCD_DisplayStringAt()
refcolumn = - Xpos + ((xsize - size)*DrawProp.pFont->Width);
stm32412g_discovery_lcd.c:368BSP_LCD_DisplayStringAt()
while ((*Text != 0) & (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width))
stm32412g_discovery_lcd.c:373BSP_LCD_DisplayStringAt()
refcolumn += DrawProp.pFont->Width;
stm32412g_discovery_lcd.c:438BSP_LCD_DrawHLine()
stm32412g_discovery_lcd.c:444BSP_LCD_DrawHLine()
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
stm32412g_discovery_lcd.c:461BSP_LCD_DrawVLine()
stm32412g_discovery_lcd.c:467BSP_LCD_DrawVLine()
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
stm32412g_discovery_lcd.c:533BSP_LCD_DrawLine()
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor); /* Draw the current pixel */
stm32412g_discovery_lcd.c:582BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos - current_y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:584BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos - current_y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:586BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos - current_x), DrawProp.TextColor);
stm32412g_discovery_lcd.c:588BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos - current_x), DrawProp.TextColor);
stm32412g_discovery_lcd.c:590BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_x), (Ypos + current_y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:592BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_x), (Ypos + current_y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:594BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos + current_y), (Ypos + current_x), DrawProp.TextColor);
stm32412g_discovery_lcd.c:596BSP_LCD_DrawCircle()
BSP_LCD_DrawPixel((Xpos - current_y), (Ypos + current_x), DrawProp.TextColor);
stm32412g_discovery_lcd.c:657BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:658BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos+y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:659BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:660BSP_LCD_DrawEllipse()
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/k)), (Ypos-y), DrawProp.TextColor);
stm32412g_discovery_lcd.c:727BSP_LCD_FillRect()
stm32412g_discovery_lcd.c:752BSP_LCD_FillCircle()
stm32412g_discovery_lcd.c:779BSP_LCD_FillCircle()
stm32412g_discovery_lcd.c:969DrawChar()
height = DrawProp.pFont->Height;
stm32412g_discovery_lcd.c:970DrawChar()
width = DrawProp.pFont->Width;
stm32412g_discovery_lcd.c:998DrawChar()
stm32412g_discovery_lcd.c:1002DrawChar()