1 /*         ______   ___    ___
2  *        /\  _  \ /\_ \  /\_ \
3  *        \ \ \L\ \\//\ \ \//\ \      __     __   _ __   ___
4  *         \ \  __ \ \ \ \  \ \ \   /'__`\ /'_ `\/\`'__\/ __`\
5  *          \ \ \/\ \ \_\ \_ \_\ \_/\  __//\ \L\ \ \ \//\ \L\ \
6  *           \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
7  *            \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
8  *                                           /\____/
9  *                                           \_/__/
10  *
11  *      256 color polygon scanline filler helpers (gouraud shading, tmapping, etc).
12  *
13  *      By Michael Bukin.
14  *
15  *      See readme.txt for copyright information.
16  */
17 
18 
19 #include "allegro.h"
20 
21 #ifdef ALLEGRO_COLOR8
22 
23 #define _bma_scan_gcol
24 
25 #include "allegro/internal/aintern.h"
26 #include "cdefs8.h"
27 #include "cscan.h"
28 
29 #undef _bma_scan_gcol
30 
31 #endif
32 
33