(svn r11684) -Codechange: split gfx.h in a type and functional header.

This commit is contained in:
rubidium
2007-12-23 10:56:02 +00:00
parent 82d240e300
commit a773d45885
64 changed files with 343 additions and 287 deletions

View File

@@ -1,8 +1,9 @@
/* $Id$ */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../helpers.hpp"
#include "../gfx_func.h"
#include "../zoom_func.h"
#include "../debug.h"
#include "../table/sprites.h"
#include "../video/video_driver.hpp"

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include "../stdafx.h"
#include "../gfx.h"
#include "../gfx_func.h"
#include "32bpp_base.hpp"
void *Blitter_32bppBase::MoveTo(const void *video, int x, int y)

View File

@@ -1,8 +1,8 @@
/* $Id$ */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../zoom_func.h"
#include "../gfx_func.h"
#include "../debug.h"
#include "../table/sprites.h"
#include "32bpp_optimized.hpp"

View File

@@ -1,8 +1,8 @@
/* $Id$ */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../gfx_func.h"
#include "../zoom_func.h"
#include "../debug.h"
#include "../table/sprites.h"
#include "32bpp_simple.hpp"

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include "../stdafx.h"
#include "../gfx.h"
#include "../gfx_func.h"
#include "8bpp_base.hpp"
void Blitter_8bppBase::DrawColorMappingRect(void *dst, int width, int height, int pal)

View File

@@ -3,8 +3,7 @@
/** @file 8bpp_debug.cpp */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../zoom_func.h"
#include "../functions.h"
#include "8bpp_debug.hpp"

View File

@@ -3,9 +3,9 @@
/** @file 8bpp_optimized.cpp */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../zoom_func.h"
#include "../debug.h"
#include "../helpers.hpp"
#include "8bpp_optimized.hpp"
static FBlitter_8bppOptimized iFBlitter_8bppOptimized;

View File

@@ -3,8 +3,7 @@
/** @file 8bpp_simple.cpp */
#include "../stdafx.h"
#include "../zoom.hpp"
#include "../gfx.h"
#include "../zoom_func.h"
#include "8bpp_simple.hpp"
static FBlitter_8bppSimple iFBlitter_8bppSimple;

View File

@@ -5,7 +5,7 @@
#include "../spritecache.h"
#include "../spriteloader/spriteloader.hpp"
#include "../zoom.hpp"
#include "../zoom_type.h"
enum BlitterMode {
BM_NORMAL,