a521c962b1
Also fix some compile breakages from recent Skia changes. No changes to Skia API. Change-Id: Ifd0b1d89fb4ea3cf1f6a7170f2f74614276364ae Reviewed-on: https://skia-review.googlesource.com/c/skia/+/257877 Commit-Queue: Stephen White <senorblanco@chromium.org> Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Greg Daniel <egdaniel@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 "dawn/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
|