7d4e12544e
Change-Id: I343d878b2ff3b1abf52007c7612b01c53731566b Bug: dawn:824,dawn:1275,skia:12512 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/516916 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
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
|
|
|
|
// webgpu_cpp.h and X.h don't get along. Include this first, before X11 defines None, Success etc.
|
|
#ifdef SK_DAWN
|
|
#include "webgpu/webgpu_cpp.h"
|
|
#endif
|
|
#include <X11/Xlib.h>
|
|
#include <GL/glx.h>
|
|
|
|
#include <memory>
|
|
|
|
typedef Window XWindow;
|
|
|
|
namespace sk_app {
|
|
|
|
class WindowContext;
|
|
struct DisplayParams;
|
|
|
|
namespace window_context_factory {
|
|
|
|
struct XlibWindowInfo {
|
|
Display* fDisplay;
|
|
XWindow fWindow;
|
|
GLXFBConfig* fFBConfig;
|
|
XVisualInfo* fVisualInfo;
|
|
int fWidth;
|
|
int fHeight;
|
|
};
|
|
|
|
std::unique_ptr<WindowContext> MakeVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
std::unique_ptr<WindowContext> MakeGLForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
#ifdef SK_DAWN
|
|
std::unique_ptr<WindowContext> MakeDawnVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
#endif
|
|
|
|
std::unique_ptr<WindowContext> MakeRasterForXlib(const XlibWindowInfo&, const DisplayParams&);
|
|
|
|
} // namespace window_context_factory
|
|
|
|
} // namespace sk_app
|
|
|
|
#endif
|