From e01ce2e6e43ef2cc7f0f371690dbab8e6abb1682 Mon Sep 17 00:00:00 2001 From: avolkov Date: Fri, 18 Dec 2009 23:57:59 +0000 Subject: [PATCH] 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 --- sc2/src/libs/graphics/drawcmd.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sc2/src/libs/graphics/drawcmd.h b/sc2/src/libs/graphics/drawcmd.h index c123372e3..97cfff1f7 100644 --- a/sc2/src/libs/graphics/drawcmd.h +++ b/sc2/src/libs/graphics/drawcmd.h @@ -101,12 +101,6 @@ typedef struct tfb_dc_scissor int x, y, w, h; } TFB_DrawCommand_Scissor; -typedef struct tfb_dc_setpal -{ - int index; - Color color; -} TFB_DrawCommand_SetPalette; - typedef struct tfb_dc_setmip { TFB_Image *image; @@ -153,7 +147,6 @@ typedef struct tfb_drawcommand TFB_DrawCommand_Copy copy; TFB_DrawCommand_CopyToImage copytoimage; TFB_DrawCommand_Scissor scissor; - TFB_DrawCommand_SetPalette setpalette; TFB_DrawCommand_SetMipmap setmipmap; TFB_DrawCommand_DeleteImage deleteimage; TFB_DrawCommand_DeleteData deletedata;