summaryrefslogtreecommitdiff
path: root/atari/plot
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Introduced BITMAPF_BUFFER_NATIVE, for fast redraw of bitmaps. Ole Loots2012-04-103-39/+77
| | | | svn path=/trunk/netsurf/; revision=13845
* Fixed declarations of set_std_pixel / get_std_pixelOle Loots2012-03-221-2/+2
| | | | svn path=/trunk/netsurf/; revision=13553
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-222-11/+11
| | | | svn path=/trunk/netsurf/; revision=13548
* Restructured the plotter driver struct and declared misc functions static ↵Ole Loots2012-03-147-401/+467
| | | | | | within the vdi driver. svn path=/trunk/netsurf/; revision=13519
* Added GD Plotter stub.Ole Loots2012-03-123-23/+265
| | | | svn path=/trunk/netsurf/; revision=13512
* Removed unused plotter members.Ole Loots2012-03-122-111/+12
| | | | svn path=/trunk/netsurf/; revision=13511
* more #ifdef WITH_8BPP_SUPPORTOle Loots2012-02-253-4/+19
| | | | svn path=/trunk/netsurf/; revision=13467
* Added missing prototypes.Ole Loots2012-01-062-5/+9
| | | | svn path=/trunk/netsurf/; revision=13382
* Fix rectangle fill, only add/subtract stroke_width when the rectangle has an ↵Ole Loots2012-01-051-4/+10
| | | | | | outline. svn path=/trunk/netsurf/; revision=13374
* Reverted last change and only apply color conversion for alpha channel glyphs. Ole Loots2012-01-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=13373
* Fix clipping and only apply color conversion for hicolor systems.Ole Loots2012-01-031-6/+7
| | | | svn path=/trunk/netsurf/; revision=13372
* It's now possible to render fonts in monochrom mode. Ole Loots2012-01-031-29/+115
| | | | svn path=/trunk/netsurf/; revision=13371
* removed comment.Ole Loots2012-01-031-6/+1
| | | | svn path=/trunk/netsurf/; revision=13370
* Fixed font plotter init and added flag for monochrom glyph rendering. Ole Loots2012-01-032-5/+15
| | | | svn path=/trunk/netsurf/; revision=13369
* Made internal font plotter compatible with 256 colors. Ole Loots2012-01-023-75/+157
| | | | svn path=/trunk/netsurf/; revision=13367
* 256 color plotting: Use vdi to rgb lookup table, made transparency a bit ↵Ole Loots2012-01-021-38/+43
| | | | | | better ( the snapshot problem was related to fvdi, no error in code ) svn path=/trunk/netsurf/; revision=13362
* Added support for 8bit displays, having big problems with transparent plots ↵Ole Loots2011-12-314-690/+965
| | | | | | ( snapshot of background isn't always taken from correct position, maybe a bug in fvdi) svn path=/trunk/netsurf/; revision=13359
* Fixed header, made different font plotters optional. Ole Loots2011-12-048-110/+137
| | | | svn path=/trunk/netsurf/; revision=13230
* release screen-lock when second lock check fails. Ole Loots2011-11-291-2/+4
| | | | svn path=/trunk/netsurf/; revision=13208
* make use of non-blocking request for screen lock. Ole Loots2011-11-292-26/+32
| | | | svn path=/trunk/netsurf/; revision=13202
* Draw rectangle outline manually.Ole Loots2011-11-281-33/+82
| | | | svn path=/trunk/netsurf/; revision=13192
* Properly redraw the rectangle outlineOle Loots2011-11-231-24/+27
| | | | svn path=/trunk/netsurf/; revision=13172
* Comment's...Ole Loots2011-11-231-16/+29
| | | | svn path=/trunk/netsurf/; revision=13171
* Fix rectangle plotter, process stroke_type. Ole Loots2011-11-171-83/+79
| | | | svn path=/trunk/netsurf/; revision=13149
* edit commentsOle Loots2011-08-051-2/+9
| | | | svn path=/trunk/netsurf/; revision=12634
* fixed call parameters for vdi_clip.Ole Loots2011-05-092-3/+2
| | | | svn path=/trunk/netsurf/; revision=12358
* fixed call parameters for vdi_clip.Ole Loots2011-05-091-2/+2
| | | | svn path=/trunk/netsurf/; revision=12357
* cleanupd & comments, fixed clipping of mfdb'sOle Loots2011-04-103-155/+87
| | | | svn path=/trunk/netsurf/; revision=12180