1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../../shared/a_modes.inc}
20 procedure r_Render_Initialize
;
21 procedure r_Render_Finalize
;
25 uses SysUtils
, Classes
, g_system
, g_game
, g_options
, r_window
, r_graphics
, r_console
, r_playermodel
;
27 procedure r_Render_Initialize
;
29 if sys_SetDisplayMode(gRC_Width
, gRC_Height
, gBPP
, gRC_FullScreen
, gRC_Maximized
) = False then
30 raise Exception
.Create('Failed to set videomode on startup.');
34 r_PlayerModel_Initialize
;
37 procedure r_Render_Finalize
;
39 r_PlayerModel_Finalize
;