summaryrefslogtreecommitdiffstats
path: root/libass/ass_rasterizer_c.c
Commit message (Collapse)AuthorAgeFilesLines
* Fully fix compilation with MSVC/ICLOleg Oshmyan2015-09-171-0/+1
| | | | | | | | | As before, this does not add any build system support: a config.h file and a project must still be manually created (or the compiler can be run manually instead of using a project). Signed-off-by: Grigori Goronzy <greg@kinoho.net> Signed-off-by: Oleg Oshmyan <chortos@inbox.lv>
* Include config.h in all source files and in no headersOleg Oshmyan2015-09-171-0/+2
| | | | | | | | | This way, #include "config.h" is consistently the very first thing the compiler sees when compiling any file. Some source files currently don't use anything defined in config.h, but it's easier and less error-prone to include it now to anticipate possible future changes in those files, config.h or other headers.
* Improve rasterizer commentsDr.Smile2015-06-261-4/+4
|
* Skip memset() when using internal rasterizerDr.Smile2015-02-091-4/+4
|
* Flip coordinate system in rasterizerDr.Smile2014-11-231-54/+54
|
* Fix UB at left shifts of negative integersDr.Smile2014-11-071-2/+2
|
* Implement fast quad-tree rasterizer in C and x86/SSE2/AVX2Dr.Smile2014-04-291-0/+382
Signed-off-by: Rodger Combs <rodger.combs@gmail.com>