00001
00032 #if LL_LINUX
00033
00034 #include "linden_common.h"
00035 #include "indra_constants.h"
00036
00037 #include "llwindowlinux.h"
00038 #include "llgl.h"
00039 #include "llglheaders.h"
00040
00041
00042
00043
00044 LLWindowLinux::LLWindowLinux(char *title, char *name, S32 x, S32 y, S32 width, S32 height,
00045 U32 flags, BOOL fullscreen, BOOL clearBg,
00046 BOOL disable_vsync, BOOL use_gl, BOOL ignore_pixel_depth)
00047 : LLWindow(fullscreen, flags)
00048 {
00049 llerrs << "Linux window not yet supported" << llendl;
00050 }
00051
00052
00053 LLWindowLinux::~LLWindowLinux()
00054 {
00055 }
00056
00057 void LLWindowLinux::swapBuffers()
00058 {
00059 }
00060
00061 #endif // LL_LINUX