Added two more conversion targets: geos-bitmap, which will create a GEOS
compacted bitmap, and raw, which is probably mostly useful for debugging. It converts an indexed image to a row of bytes which correspond to the color indices of the pixels. git-svn-id: svn://svn.cc65.org/cc65/trunk@5615 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -39,9 +39,11 @@
|
||||
#include "attr.h"
|
||||
#include "convert.h"
|
||||
#include "error.h"
|
||||
#include "geosbitmap.h"
|
||||
#include "geosicon.h"
|
||||
#include "koala.h"
|
||||
#include "lynxsprite.h"
|
||||
#include "raw.h"
|
||||
#include "vic2sprite.h"
|
||||
|
||||
|
||||
@@ -61,9 +63,11 @@ struct ConverterMapEntry {
|
||||
|
||||
/* Converter table, alphabetically sorted */
|
||||
static const ConverterMapEntry ConverterMap[] = {
|
||||
{ "geos-bitmap", GenGeosBitmap },
|
||||
{ "geos-icon", GenGeosIcon },
|
||||
{ "koala", GenKoala },
|
||||
{ "lynx-sprite", GenLynxSprite },
|
||||
{ "raw", GenRaw },
|
||||
{ "vic2-sprite", GenVic2Sprite },
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user