6c471f75b2
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
40 lines
813 B
C++
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
|