summaryrefslogtreecommitdiff
path: root/atari/plot
Commit message (Collapse)AuthorAgeFilesLines
* move utf8 local conversion operations to tableVincent Sanders2014-02-011-0/+2
|
* move utf8 conversion routines to use nserror instead of their own error enumVincent Sanders2014-01-282-2/+2
|
* Added prototype for plot_get_abs_clipping_grectOle Loots2014-01-021-0/+1
|
* Added plot_set_abs_clipping API to define maximum allowed clipping extent.Ole Loots2013-12-282-4/+61
| | | | subsequent call's to plot_clip obey to the maximum clipping rect.
* Added comments to plot APIOle Loots2013-12-211-2/+24
|
* plot_set_scale return old scale now.Ole Loots2013-12-132-2/+14
|
* Recognize scale when plotting fontsOle Loots2013-12-041-1/+8
|
* Removed debug printOle Loots2013-12-041-1/+0
|
* Recognize scale when plotting bitmapsOle Loots2013-12-041-0/+7
|
* fix previous prototypeOle Loots2013-12-041-1/+1
|
* Added plot_set_scale / plot_get_scale prototypesOle Loots2013-12-041-0/+2
|
* Added "scale" member and get / set methodsOle Loots2013-12-041-0/+11
|
* Treeview implementation adjustedOle Loots2013-10-062-0/+7
| | | | (still requires changes at several places in the atari frontent)
* Replaced atari_treeview wrapper with a new oneOle Loots2013-10-061-4/+2
| | | | (removed all modules which used the old tree API)
* moved font plotter allocationOle Loots2013-10-061-48/+52
| | | | | Delayed font plotter alloction until the requested font plotter is found.
* Added plot_get/set_text_plotter and commentsOle Loots2013-10-063-135/+165
|
* fixup atari option namesVincent Sanders2013-05-281-10/+10
|
* move options includeVincent Sanders2013-05-282-2/+2
|
* Removed debug outputOle Loots2013-04-121-3/+3
|
* Improved favicon/iconyfied redraw (obey to visible rectangle list)Ole Loots2013-04-122-0/+7
|
* Make comaptible with new nsfont_split expectation. Untested, but code is ↵Michael Drake2013-02-103-4/+12
| | | | same as framebuffer front end, so should work.
* Some more finetuning...Ole Loots2013-01-315-107/+199
|
* Search form inside browser windows starts to work.Ole Loots2013-01-161-4/+16
|
* Finally it compiles without WinDom - still some things to bring back:Ole Loots2013-01-073-14/+22
| | | | | - Serch window - Pop Menus in the settings dialog
* Clip only once, not on every drawing primitive...Ole Loots2013-01-061-43/+44
|
* Added function to retrieve current plotter dimensions.Ole Loots2012-12-072-1/+12
|
* Reenabled VDI clipping...Ole Loots2012-12-041-1/+5
|
* Completet scroll preprocessing, Hotlist fully works.Ole Loots2012-11-221-5/+13
|
* Fixed syntax error caused by search&replace?Ole Loots2012-11-071-346/+347
|
* Fix warnings, moved prototypes, housekeepingOle Loots2012-08-272-14/+13
|
* Default truetype package is now Bitstream Vera.Ole Loots2012-08-251-27/+60
| | | | Truetype font package can now be switched by defines.
* Removed junkOle Loots2012-08-251-12/+0
|
* Documented font loading / font names.Ole Loots2012-08-251-2/+43
|
* Merged some features from framebuffer freetype impl.Ole Loots2012-08-252-63/+106
| | | | | | - Set default font for font faces which failed to load. - Lookup more font faces (Cursive, Fantasy).
* Added missing copyright headersOle Loots2012-08-241-0/+18
|
* Fix provided by Michale Drake.Ole Loots2012-08-041-102/+109
| | | | | Fix freetype nsfont_position_in_string to return nearest, rather than next.
* Fixed colour type for vs* functions, added comments.Ole Loots2012-07-251-13/+42
|
* Changed toolbar_bg_color to type "colour",Ole Loots2012-07-231-0/+3
| | | | | Now the toolbar background can be configured as RGB colour.
* renamed plot functions (use plot_ prefix)Ole Loots2012-07-231-3/+3
|
* renmaed plot functions (use plot_ prefix).Ole Loots2012-07-232-50/+46
|
* moved "bitmap_resize()" to bitmap.cOle Loots2012-07-232-72/+16
|
* Inline some functionsOle Loots2012-07-231-8/+8
|
* Refactor plot implementation (removed old files)Ole Loots2012-07-136-3124/+0
|
* Plotter refactor: removed one plotter abraction layer.Ole Loots2012-07-138-18/+2450
|
* added some missing WITH_8BPP_SUPPORT ifdefs. Ole Loots2012-06-191-0/+8
| | | | svn path=/trunk/netsurf/; revision=13974
* Some cleanups and additions required for the toolbar icon redraw.Ole Loots2012-06-031-48/+93
| | | | svn path=/trunk/netsurf/; revision=13937
* Fixed prototyp, comments.Ole Loots2012-05-132-3/+3
| | | | svn path=/trunk/netsurf/; revision=13925
* Fix typo ( fontbitmap was never destroyed within dtor )Ole Loots2012-04-241-3/+4
| | | | svn path=/trunk/netsurf/; revision=13889
* Small font plotter speedup by reducing function calls in a draw glyph loop. Ole Loots2012-04-241-63/+60
| | | | svn path=/trunk/netsurf/; revision=13888
* Optimized bitmap blitting: cache native (converted) bitmaps. Ole Loots2012-04-192-203/+327
| | | | | | This required an change to the convert and blit routines - for opaque images, they convert the whole image. Transparent images are still converted on demand and still only the clipped area is converted. This is incomplete - native buffers should be stored in the well known bitmap buffer, but currently the bitmap struct holds a second buffer which contains converted data. svn path=/trunk/netsurf/; revision=13886