aboutsummaryrefslogtreecommitdiffstats
path: root/include/gdisp
Commit message (Collapse)AuthorAgeFilesLines
* whitespacesJoel Bodenmann2013-12-181-7/+7
|
* GDISP startup logo now optionalJoel Bodenmann2013-12-161-0/+8
|
* added gdispGDrawThickLine()Joel Bodenmann2013-12-081-0/+18
|
* Replace color format conversion macros with proper routines to prevent side ↵inmarket2013-11-171-38/+4
| | | | | | effects with using the macro. Also fix a number of compiler warnings.
* Fix a couple of doxygen comments, remove a couple of double definitions.inmarket2013-11-111-2/+2
|
* doxygen fixesJoel Bodenmann2013-11-102-7/+8
|
* Add support for a default application orientation.inmarket2013-11-091-9/+5
| | | | Also remove old unneeded GDISP_USE_CUSTOM_BOARD macro
* Add support for a portrait and landscape orientation modes.inmarket2013-11-091-1/+3
|
* New GDISP now supports multiple controllers with different pixel formats.inmarket2013-11-052-47/+319
| | | | | You can now have a main color display and a secondary monochrome display. You can now optionally set GDISP_PIXELFORMAT to any color or grayscale format for your application and the driver will internally convert to the display hardware format.
* English grammer correctioninmarket2013-11-051-1/+1
|
* Auto-generate pixel formats using macro's.inmarket2013-11-052-169/+365
| | | | | Prepare for (but not yet complete) supporting a different high level GDISP pixel format to the low level driver format. This will be useful in multiple display scenario's where displays have different pixel formats.
* GDISP_NEED_TEXT and GDISP_NEED_ELLIPSE defaults to FALSE now. The former ↵Joel Bodenmann2013-10-281-2/+2
| | | | requires to enable at least one font which may not be needed (it sucks if compiling the basic examples) and the latter is barely needed anyway
* Add multiple display support to image decoding.inmarket2013-10-241-6/+8
|
* Bug fix to GDISP APIinmarket2013-10-241-1/+1
|
* Add GDISP_NEED_TIMERFLUSH to enable automatic display flushing on a timer.inmarket2013-10-241-0/+13
|
* Add support for a driver private area (as well as a board private area)inmarket2013-10-212-1/+2
|
* Fix missing case in gdispStreamStop().inmarket2013-10-213-27/+92
| | | | | 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-6/+7
| | | | structure (It was required for a Nokia driver).
* Bugfix to remove compile error that only affects GCC ARM compilerinmarket2013-10-171-2/+2
|
* Multiple controller support can now auto-detect hardware capabilities at ↵inmarket2013-10-161-26/+62
| | | | | | | 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-3/+19
| | | | Updated gdisp Get/Set Display routines to a more logical API.
* Multiple displays across one or more controllers is now fully supported.inmarket2013-10-123-296/+423
| | | | | 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-3/+35
| | | | by about 30% for those controllers that support it.
* SSD1289 streaming driver (untested)inmarket2013-09-301-56/+86
| | | | | | X streaming driver (untested) Nokia6610 fixes Read pixel streaming support for low level driver.
* Useless leftover from ASYNC support is now removedinmarket2013-09-251-181/+0
|
* Rename a macro and fix some bugsinmarket2013-09-251-5/+6
|
* GDISP streaming bug fixesinmarket2013-09-242-13/+65
| | | | | Win32 bitmap support Win32 Rotation is back to front. Need to check touch and other drivers.
* Scrolling emulation when not supported by hardwareinmarket2013-09-183-294/+595
| | | | | | | Start of new multiple display support GDISP performance optimisations Documentation updates Win32 driver updates
* GDISP revamp - stage 1inmarket2013-09-063-934/+320
| | | | | | | | | | 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...
* Merge branch 'master' into fontsinmarket2013-08-011-12/+13
|\
| * Add color blending to GDISPinmarket2013-08-011-0/+13
| |
* | Vastly simplify GDISP mcufont interface code.inmarket2013-07-295-232/+30
| | | | | | | | | | | | | | 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-286-254/+169
|/
* fixed OS-X port (untested)Joel Bodenmann2013-07-231-1/+1
|
* fixed license headersJoel Bodenmann2013-07-217-7/+7
|
* doxygen updatesJoel Bodenmann2013-07-211-0/+2
|
* GDISP fix bug in non-multithreadinmarket2013-07-081-1/+0
|
* Add gdispImageIsOpen() function.inmarket2013-07-011-1/+14
|
* gdisp: fixed bug in line drawing functionMateusz Tomaszkiewicz2013-06-261-1/+1
| | | | | | | | There was a problem when you drew a line from (x0,y0) to (x1,y1) and these points met following conditions: y0 = y1 and x0 > x1. The viewport was set incorrectly to start from (x0,y1) when it should start from (x1,y0) since x1 is lower in this case. (x1,y1) would be also OK since y0 = y1.
* Various README updatesMateusz Tomaszkiewicz2013-06-211-1/+1
| | | | Changed misleading description.
* License header updatesinmarket2013-06-157-7/+7
|
* GOS module, for operating system independanceinmarket2013-05-254-51/+47
| | | | | GMISC fast floating point trig GMISC fast fixed point trig
* docsJoel Bodenmann2013-05-202-62/+64
|
* X driver for GDISP and GINPUT_MOUSEAndrew Hannam2013-05-161-0/+6
|
* updated license headersJoel Bodenmann2013-05-037-127/+36
|
* Revert "updated license headers"Joel Bodenmann2013-05-027-57/+114
| | | | This reverts commit 0a26d9983b6d1deab272ff6dde98f7c77ff2a56c.
* updated license headersJoel Bodenmann2013-05-027-114/+57
|
* GIF image handlingAndrew Hannam2013-04-202-1/+26
| | | | | | GIF image handling Updates to Image structure to make memory accounting optional Add set image background color to handle animated transparency.
* Change Memory Reader prototypeAndrew Hannam2013-04-041-1/+1
| | | | Change Memory Reader prototype to prevent signed, unsigned warning
* New GDISP image handling with demoAndrew Hannam2013-04-033-0/+408
| | | | | | | | | | | | Images currently support Native and BMP (except RLE4,8 and 16 bit - due to bugs) Supports reading from Memory, BaseFileStream or real files (only on the Win32 simulator). Move gdisp_pictures demo to better refect its purpose. Bug fixes for BMP RLE4,8 & 16 bit to come very soon GIF support very soon.