Cleanup: long-time dead SetPalette DrawCommand removed

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3442 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2009-12-18 23:57:59 +00:00
parent 569c08388d
commit e01ce2e6e4
-7
View File
@@ -101,12 +101,6 @@ typedef struct tfb_dc_scissor
int x, y, w, h; int x, y, w, h;
} TFB_DrawCommand_Scissor; } TFB_DrawCommand_Scissor;
typedef struct tfb_dc_setpal
{
int index;
Color color;
} TFB_DrawCommand_SetPalette;
typedef struct tfb_dc_setmip typedef struct tfb_dc_setmip
{ {
TFB_Image *image; TFB_Image *image;
@@ -153,7 +147,6 @@ typedef struct tfb_drawcommand
TFB_DrawCommand_Copy copy; TFB_DrawCommand_Copy copy;
TFB_DrawCommand_CopyToImage copytoimage; TFB_DrawCommand_CopyToImage copytoimage;
TFB_DrawCommand_Scissor scissor; TFB_DrawCommand_Scissor scissor;
TFB_DrawCommand_SetPalette setpalette;
TFB_DrawCommand_SetMipmap setmipmap; TFB_DrawCommand_SetMipmap setmipmap;
TFB_DrawCommand_DeleteImage deleteimage; TFB_DrawCommand_DeleteImage deleteimage;
TFB_DrawCommand_DeleteData deletedata; TFB_DrawCommand_DeleteData deletedata;