skia2/tools/viewer/sk_app/unix/WindowContextFactory_unix.h
bsalomon 6c471f75b2 Add sw support to viewer on Linux.
This doesn't yet do anything with srgb/colorspace.

Replaces the --vulkan flag with --backend which takes 'gl', 'vk', or 'sw'.

GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2165813002

Review-Url: https://codereview.chromium.org/2165813002
2016-07-26 12:56:32 -07:00

40 lines
813 B
C++

/*
* 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;
};
WindowContext* NewVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
WindowContext* NewGLForXlib(const XlibWindowInfo&, const DisplayParams&);
WindowContext* NewRasterForXlib(const XlibWindowInfo&, const DisplayParams&);
} // namespace window_context_factory
} // namespace sk_app
#endif