2019-03-13 19:20:07 +00:00
|
|
|
/*
|
2020-06-04 21:01:28 +00:00
|
|
|
===========================================================================
|
2019-03-13 19:20:07 +00:00
|
|
|
Copyright (C) 1997-2001 Id Software, Inc.
|
|
|
|
|
2020-06-04 21:01:28 +00:00
|
|
|
This file is part of Quake 2 source code.
|
2019-03-13 19:20:07 +00:00
|
|
|
|
2020-06-04 21:01:28 +00:00
|
|
|
Quake 2 source code is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the License,
|
|
|
|
or (at your option) any later version.
|
2019-03-13 19:20:07 +00:00
|
|
|
|
2020-06-04 21:01:28 +00:00
|
|
|
Quake 2 source code is distributed in the hope that it will be
|
|
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2019-03-13 19:20:07 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2020-06-04 21:01:28 +00:00
|
|
|
along with Quake 2 source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
2019-03-13 19:20:07 +00:00
|
|
|
*/
|
2020-06-04 21:01:28 +00:00
|
|
|
|
2019-03-13 19:20:07 +00:00
|
|
|
// vid.h -- video driver defs
|
|
|
|
|
|
|
|
typedef struct vrect_s
|
|
|
|
{
|
|
|
|
int x,y,width,height;
|
|
|
|
} vrect_t;
|
|
|
|
|
2021-12-02 20:17:38 +00:00
|
|
|
#ifndef __VIDDEF_T
|
|
|
|
#define __VIDDEF_T
|
2019-03-13 19:20:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned width, height; // coordinates from main game
|
|
|
|
} viddef_t;
|
2021-12-02 20:17:38 +00:00
|
|
|
#endif
|
2019-03-13 19:20:07 +00:00
|
|
|
|
|
|
|
extern viddef_t viddef; // global video state
|
|
|
|
|
|
|
|
// Video module initialisation etc
|
|
|
|
void VID_Init (void);
|
|
|
|
void VID_Shutdown (void);
|
|
|
|
void VID_CheckChanges (void);
|
2021-08-30 02:52:34 +00:00
|
|
|
qboolean VID_GetModeInfo (int *width, int *height, int mode);
|