1 | /* Copyright Krzysztof Kowalczyk 2006-2007 |
2 | License: GPLv2 */ |
3 | |
4 | /* This is a no-op preview support for perf-test. |
5 | Using this perf-test still works for performance testing, you just don't |
6 | get any visual feedback during testing. |
7 | */ |
8 | |
9 | #include "splash/SplashBitmap.h" |
10 | |
11 | void PreviewBitmapInit(); |
12 | void PreviewBitmapDestroy(); |
13 | void PreviewBitmapSplash(SplashBitmap *bmpSplash); |
14 | |
15 | void PreviewBitmapSplash(SplashBitmap *bmpSplash) { } |
16 | |
17 | void PreviewBitmapDestroy() { } |
18 | |
19 | void PreviewBitmapInit() { } |
20 | |