443ec1b794
Also removes fWidth and fHeight from Window and instead calls into WindowContent to get these values. BUG=skia: Change-Id: I72ee506004b7da73db9abb607a3bc82edfcf7d43 Reviewed-on: https://skia-review.googlesource.com/8795 Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Jim Van Verth <jvanverth@google.com> Reviewed-by: Yuqian Li <liyuqian@google.com>
42 lines
864 B
C++
42 lines
864 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;
|
|
int fWidth;
|
|
int fHeight;
|
|
};
|
|
|
|
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
|