| 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
28
29
30
31
32
 | /** 
 * @file llwindowheadless.cpp
 * @brief Headless implementation of LLWindow class
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */
#include "linden_common.h"
#include "indra_constants.h"
#include "llwindowheadless.h"
//
// LLWindowHeadless
//
LLWindowHeadless::LLWindowHeadless(char *title, char *name, S32 x, S32 y, S32 width, S32 height,
							 U32 flags,  BOOL fullscreen, BOOL clearBg,
							 BOOL disable_vsync, BOOL use_gl, BOOL ignore_pixel_depth)
	: LLWindow(fullscreen, flags)
{
}
LLWindowHeadless::~LLWindowHeadless()
{
}
void LLWindowHeadless::swapBuffers()
{
}
 |