diff options
| author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
|---|---|---|
| committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
| commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
| tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/llwindow/llwindowheadless.cpp | |
Print done when done.
Diffstat (limited to 'indra/llwindow/llwindowheadless.cpp')
| -rw-r--r-- | indra/llwindow/llwindowheadless.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/indra/llwindow/llwindowheadless.cpp b/indra/llwindow/llwindowheadless.cpp new file mode 100644 index 0000000000..1251ed1bb7 --- /dev/null +++ b/indra/llwindow/llwindowheadless.cpp @@ -0,0 +1,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() +{ +} + |
