aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/gdisp.c
Commit message (Collapse)AuthorAgeFilesLines
* Some improvements for the Kiel C compilerinmarket2014-07-291-1/+5
|
* Add gdispContrastColor() and remove divides from gdispBlendColors()inmarket2014-05-111-3/+13
|
* bug fixJoel Bodenmann2014-05-061-1/+1
|
* Integrate the include files with each module. Simplifies structure of code.inmarket2014-02-191-1/+1
|
* Fix font clipping properly. Previous fix did not bound the font display in ↵inmarket2014-02-031-3/+21
| | | | the x direction.
* added deinit() routines for all modules (not implemented so far)Joel Bodenmann2014-02-021-2/+7
|
* fixed clipping issue when widget text is long than the widget itselfJoel Bodenmann2014-02-011-3/+6
|
* gdispDrawThickLine: handle zero-length lines correctly.Petteri Aimonen2013-12-191-2/+6
|
* Fix integer overflow in gdispGDrawThickLine().Joel Bodenmann2013-12-181-39/+76
| | | | | | Handling the whole width/height range with Newton algorithm was too difficult. Switched to bisection search with a separate prescaling step.
* GDISP startup logo now optionalJoel Bodenmann2013-12-161-1/+5
|
* Improve gdispDrawThickLine() when the line length is short.Joel Bodenmann2013-12-141-2/+23
|
* typoJoel Bodenmann2013-12-081-1/+1
|
* added gdispGDrawThickLine()Joel Bodenmann2013-12-081-0/+125
|
* Revert "INLINE -> inline"inmarket2013-11-301-8/+8
| | | | This reverts commit d4c4740bcf0fe25a0b3e8a37c431accfc8edb970.
* INLINE -> inlineJoel Bodenmann2013-11-271-8/+8
|
* Replace color format conversion macros with proper routines to prevent side ↵inmarket2013-11-171-0/+39
| | | | | | effects with using the macro. Also fix a number of compiler warnings.
* Re-order the GDISP initialisation routine so that it initialises all ↵inmarket2013-11-161-53/+25
| | | | | | displays before it tries to draw on any of them. This also simplifies code.
* Boundary condition fixes to Arcsinmarket2013-11-141-26/+27
| | | | Fix multiple display support for rounded boxes.
* Fix some compiler warnings.inmarket2013-11-101-3/+5
|
* Add support for a default application orientation.inmarket2013-11-091-0/+9
| | | | Also remove old unneeded GDISP_USE_CUSTOM_BOARD macro
* Add support for a portrait and landscape orientation modes.inmarket2013-11-091-0/+10
|
* Fixes to gdisp vertical scrolling.inmarket2013-11-051-4/+38
| | | | Also added improved optimisation for drivers without blit but with a fill routine.
* Created a crude auto-scaling logo (for startup)inmarket2013-10-241-1/+35
|
* Add GDISP_NEED_TIMERFLUSH to enable automatic display flushing on a timer.inmarket2013-10-241-1/+20
|
* Fixes to GDISP for streaming drivers.inmarket2013-10-241-3/+5
| | | | Turn optimisation back on for SSD1289 driver
* Fix typos in driversinmarket2013-10-221-0/+1
|
* fixesJoel Bodenmann2013-10-211-2/+2
|
* Fix missing case in gdispStreamStop().inmarket2013-10-211-121/+84
| | | | | Add support for controllers that need flushing. Add both automatic and manual flushing (via the gdispFlush() method)
* Change to gdisp low level driver API. Display number is now in the GDriver ↵inmarket2013-10-191-3/+7
| | | | structure (It was required for a Nokia driver).
* Multiple controller support can now auto-detect hardware capabilities at ↵inmarket2013-10-161-502/+886
| | | | | | | run-time. Specific hardware support can still be turned off or on via macros in gfxconf.h to improve efficiency. Multiple Display demo updated to match.
* Compile time fix to text rendering.inmarket2013-10-141-9/+18
| | | | Updated gdisp Get/Set Display routines to a more logical API.
* Multiple displays across one or more controllers is now fully supported.inmarket2013-10-121-863/+910
| | | | | Only the Win32 driver supports this so far. Other drivers are currently broken due to API changes and will be fixed.
* New optimisation method for some streaming drivers. It should improve speed ↵inmarket2013-10-021-2/+210
| | | | by about 30% for those controllers that support it.
* SSD1289 streaming driver (untested)inmarket2013-09-301-86/+53
| | | | | | X streaming driver (untested) Nokia6610 fixes Read pixel streaming support for low level driver.
* GDISP Streaming bug fixes and new optimisation methodinmarket2013-09-271-11/+70
|
* Rename a macro and fix some bugsinmarket2013-09-251-35/+30
|
* GDISP streaming bug fixesinmarket2013-09-241-20/+17
| | | | | Win32 bitmap support Win32 Rotation is back to front. Need to check touch and other drivers.
* Scrolling emulation when not supported by hardwareinmarket2013-09-181-135/+326
| | | | | | | Start of new multiple display support GDISP performance optimisations Documentation updates Win32 driver updates
* GDISP revamp - stage 1inmarket2013-09-061-524/+1611
| | | | | | | | | | New low level driver interface: Only Win32 ported currently Significant reduction in GDISP stack usage Improved performance particularly for native streaming drivers New circle, ellipse, arc routines (draw and fill) that are significantly more efficient and don't overdraw New arc draw algorithm that measures angles correctly. New arc fill algorithm for that actually works without overdrawing or gaps. Much more to come...
* Add font baseline to the starting point of string rendering.inmarket2013-07-301-0/+1
| | | | | Otherwise the limit calculation will cut off the first character on larger fonts, like DejaVuSans24.
* Vastly simplify GDISP mcufont interface code.inmarket2013-07-291-183/+126
| | | | | | | Fix boundary cases. Prevent overwriting of defined display area. Improve performance. Remove hardware acceleration for fonts (unlikely anyway unles the hardware understood our software font structures)
* First cut - beautiful new font handling by PetteriAimoneninmarket2013-07-281-315/+197
|
* fixed license headersJoel Bodenmann2013-07-211-1/+1
|
* GDISP fix bug in non-multithreadinmarket2013-07-081-0/+4
|
* License header updatesinmarket2013-06-151-1/+1
|
* GOS updatesinmarket2013-06-021-4/+6
|
* GOS module, for operating system independanceinmarket2013-05-251-132/+98
| | | | | GMISC fast floating point trig GMISC fast fixed point trig
* updated license headersJoel Bodenmann2013-05-031-18/+5
|
* Revert "updated license headers"Joel Bodenmann2013-05-021-8/+19
| | | | This reverts commit 0a26d9983b6d1deab272ff6dde98f7c77ff2a56c.
* updated license headersJoel Bodenmann2013-05-021-19/+8
|