00001 00002 /* 00003 This file is part of Advanced Strategic Command; http://www.asc-hq.de 00004 Copyright (C) 1994-2003 Martin Bickel and Marc Schellenberger 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; see the file COPYING. If not, write to the 00018 Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00019 Boston, MA 02111-1307 USA 00020 */ 00021 00022 #include "blitter.h" 00023 00024 map<int,int*> RotationCache::cache; 00025 int RotationCache::xsize = -1; 00026 int RotationCache::ysize = -1; 00027 00028 ZoomCache::ZoomMap ZoomCache::zoomCache; 00029 00030 NullParamType nullParam; 00031 00032 00033 int foobar_func() 00034 { 00035 return 0; 00036 } 00037 00038 00039 // base 10: 00040 // const int ColorMerger_Alpha_XLAT_Table_shadings[8] = { 9, 8, 6, 4, 11, 12, 14, 17 }; 00041 00042 // base 16: 00043 const int ColorMerger_Alpha_XLAT_Table_shadings[8] = { 14, 12, 9, 6, 18, 20, 23, 28 }; 00044
1.4.2