summaryrefslogtreecommitdiffstats
path: root/src/VBox/HostServices/SharedOpenGL/crserver/main.c
blob: 9b525e5628e06c8118adb863185d4b73bd780582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright (c) 2001, Stanford University
 * All rights reserved
 *
 * See the file LICENSE.txt for information on redistributing this software.
 */

#include "cr_server.h"

/**
 * \mainpage Crserver 
 *
 * \section CrserverIntroduction Introduction
 *
 * Chromium consists of all the top-level files in the cr
 * directory.  The crserver module basically takes care of API dispatch,
 * and OpenGL state management.
 *
 */

int main( int argc, char *argv[] )
{
	return CRServerMain( argc, argv );
}