2016-07-26 19:02:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WindowContextFactory_unix_DEFINED
|
|
|
|
#define WindowContextFactory_unix_DEFINED
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
typedef Window XWindow;
|
|
|
|
|
|
|
|
namespace sk_app {
|
|
|
|
|
|
|
|
class WindowContext;
|
|
|
|
struct DisplayParams;
|
|
|
|
|
|
|
|
namespace window_context_factory {
|
|
|
|
|
|
|
|
struct XlibWindowInfo {
|
|
|
|
Display* fDisplay;
|
|
|
|
XWindow fWindow;
|
|
|
|
XVisualInfo* fVisualInfo;
|
2017-02-24 20:22:53 +00:00
|
|
|
int fWidth;
|
|
|
|
int fHeight;
|
2016-07-26 19:02:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
WindowContext* NewVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
|
|
|
|
WindowContext* NewGLForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
|
2016-07-26 19:56:32 +00:00
|
|
|
WindowContext* NewRasterForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
|
2016-07-26 19:02:50 +00:00
|
|
|
} // namespace window_context_factory
|
|
|
|
|
|
|
|
} // namespace sk_app
|
|
|
|
|
|
|
|
#endif
|