1/*
2	Copyright (c) 2002, Thomas Kurschel
3
4
5	Part of Radeon accelerant
6
7	Global data
8*/
9
10
11#include "GlobalData.h"
12
13// the sample driver stores everything in global variables;
14// I dislike this idea as this makes supporting multiple graphics
15// card impossible; to be prepared, only the following variable is used
16accelerator_info *ai;
17
18int debug_level_flow = 2;
19int debug_level_info = 4;
20int debug_level_error = 4;
21