Tiny graphics library for STM32F746G-DISCO board
Dependents: RadarDemo 3DDemo RadarDemoT
Display.cpp@3:1ddc4aa1e5cb, 2016-11-11 (annotated)
- Committer:
- karpent
- Date:
- Fri Nov 11 12:05:16 2016 +0000
- Revision:
- 3:1ddc4aa1e5cb
- Parent:
- 0:566855d63a2f
Missing method DrawChar() added, DrawText() corrected.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
karpent | 0:566855d63a2f | 1 | // |
karpent | 0:566855d63a2f | 2 | // Display.cpp - Generic display definition |
karpent | 0:566855d63a2f | 3 | // |
karpent | 0:566855d63a2f | 4 | |
karpent | 0:566855d63a2f | 5 | #include "Display.h" |
karpent | 0:566855d63a2f | 6 | |
karpent | 0:566855d63a2f | 7 | |
karpent | 0:566855d63a2f | 8 | Display::Display() |
karpent | 0:566855d63a2f | 9 | { |
karpent | 0:566855d63a2f | 10 | } |
karpent | 0:566855d63a2f | 11 | |
karpent | 0:566855d63a2f | 12 | |
karpent | 0:566855d63a2f | 13 | Display::~Display() |
karpent | 0:566855d63a2f | 14 | { |
karpent | 0:566855d63a2f | 15 | } |
karpent | 0:566855d63a2f | 16 | |
karpent | 0:566855d63a2f | 17 | |
karpent | 0:566855d63a2f | 18 | //void SetDrawColorMask(uint32_t color) |
karpent | 0:566855d63a2f | 19 | //{ |
karpent | 0:566855d63a2f | 20 | // GeometricPrim::_colorMask = color; |
karpent | 0:566855d63a2f | 21 | //} |