summaryrefslogtreecommitdiff
path: root/src/plot/16bpp.c
Commit message (Collapse)AuthorAgeFilesLines
* Rationalise UNUSED macros. This changeset allows libnsfb to berjek/clang-warningsRob Kendrick (humdrum)2013-04-251-4/+4
| | | | | | | | | | | | | built warning-free both with Clang 3.3 (from trunk) and GCC 4.7. Remove the use of GCC-specific __attribute__ ((unused)) as this only works on declarations, meaning there is no "fallback" to use on compilers that are not GCC or clang. The (void)foo; approach works with both clang and GCC, and hopefully other compilers people might be using. The alternative would to have been two UNUSED macros, one for use in definitions, and one for use in function bodies.
* Commit fixes from "Building NetSurf on arm-linux framebuffer" thread on ↵Michael Drake2011-04-191-1/+1
| | | | | | netsurf-users ML. svn path=/trunk/libnsfb/; revision=12203
* make some of the plot code commonVincent Sanders2010-07-091-473/+8
| | | | svn path=/trunk/libnsfb/; revision=10618
* Missed horizontal in non-alpha case in r10615. Update comment.Michael Drake2010-07-081-2/+2
| | | | svn path=/trunk/libnsfb/; revision=10617
* Pre-seed remainder counters with correct starting value to avoid clipping ↵Michael Drake2010-07-081-7/+19
| | | | | | edge case artifact. svn path=/trunk/libnsfb/; revision=10615
* Don't try to plot bitmaps at 0 width or height.Michael Drake2010-07-081-0/+3
| | | | svn path=/trunk/libnsfb/; revision=10613
* Slight optimisation for scaled image plotting.Michael Drake2010-07-081-3/+3
| | | | svn path=/trunk/libnsfb/; revision=10612
* Add 8bpp scaled bitmap plotter. Fix 16bpp scaled bitmap plotter.Michael Drake2010-07-081-1/+2
| | | | svn path=/trunk/libnsfb/; revision=10611
* Add support for 16bpp scaled bitmap plotting. Make slight changes to match ↵Michael Drake2010-07-081-13/+140
| | | | | | 32bpp implementation. NOTE: UNTESTED. svn path=/trunk/libnsfb/; revision=10609
* move plot functions to their own sub directoryVincent Sanders2010-01-201-0/+448
fix 8 and 16bpp plotters when used with cursor svn path=/trunk/libnsfb/; revision=9850