engine: reject mbf21 and shit24 wads. there is no way to know if it is safe to ignore...
[k8vavoom.git] / source / screen.h
blob68749731945649c586dde429761906cb1f40c82c
1 //**************************************************************************
2 //**
3 //** ## ## ## ## ## #### #### ### ###
4 //** ## ## ## ## ## ## ## ## ## ## #### ####
5 //** ## ## ## ## ## ## ## ## ## ## ## ## ## ##
6 //** ## ## ######## ## ## ## ## ## ## ## ### ##
7 //** ### ## ## ### ## ## ## ## ## ##
8 //** # ## ## # #### #### ## ##
9 //**
10 //** Copyright (C) 1999-2006 Jānis Legzdiņš
11 //** Copyright (C) 2018-2023 Ketmar Dark
12 //**
13 //** This program is free software: you can redistribute it and/or modify
14 //** it under the terms of the GNU General Public License as published by
15 //** the Free Software Foundation, version 3 of the License ONLY.
16 //**
17 //** This program is distributed in the hope that it will be useful,
18 //** but WITHOUT ANY WARRANTY; without even the implied warranty of
19 //** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 //** GNU General Public License for more details.
21 //**
22 //** You should have received a copy of the GNU General Public License
23 //** along with this program. If not, see <http://www.gnu.org/licenses/>.
24 //**
25 //**************************************************************************
26 #ifndef VAVOOM_SCREEN_HEADER
27 #define VAVOOM_SCREEN_HEADER
30 extern int RealScreenWidth;
31 extern int RealScreenHeight;
33 extern int ScreenWidth;
34 extern int ScreenHeight;
36 extern int VirtualWidth;
37 extern int VirtualHeight;
39 extern float fScaleX;
40 extern float fScaleY;
43 void SCR_Init ();
44 void SCR_Update (bool fullUpdate=true);
46 void SCR_SignalWipeStart ();
48 void SCR_SetVirtualScreen (int Width, int Height);
51 #endif