Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 2440b25c59b0ccde0a0a5744943f233af22ad919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
   render/render.cc
   This file is part of the Osirion project and is distributed under 
   the terms of the GNU General Public License version 2 
*/

// project headers
#include "render/render.h"
#include "sys/sys.h"

namespace render {

void init() 
{
	con_debug << "Initializing render..." << std::endl;

	con_print << "Renderer:  " << gl::renderer() << std::endl;
	con_print << "Vendor:    " << gl::vendor() << std::endl;
	con_print << "Version:   " << gl::version() << std::endl;
}

void shutdown()
{
	con_debug << "Shutting down render..." << std::endl;
}

}