HomeSort by relevance Sort by last modified time
    Searched refs:WindowContext (Results 1 - 22 of 22) sorted by null

  /external/skia/tools/viewer/sk_app/win/
WindowContextFactory_win.h 16 class WindowContext;
21 WindowContext* NewVulkanForWin(HWND, const DisplayParams&);
23 WindowContext* NewGLForWin(HWND, const DisplayParams&);
25 WindowContext* NewRasterForWin(HWND, const DisplayParams&);
VulkanWindowContext_win.cpp 21 WindowContext* NewVulkanForWin(HWND hwnd, const DisplayParams& params) {
62 WindowContext* ctx = new VulkanWindowContext(params, createVkSurface, canPresent);
RasterWindowContext_win.cpp 87 WindowContext* NewRasterForWin(HWND wnd, const DisplayParams& params) {
88 WindowContext* ctx = new RasterWindowContext_win(wnd, params);
GLWindowContext_win.cpp 129 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) {
  /external/skia/tools/viewer/sk_app/android/
WindowContextFactory_android.h 17 class WindowContext;
22 WindowContext* NewVulkanForAndroid(ANativeWindow*, const DisplayParams&);
24 WindowContext* NewGLForAndroid(ANativeWindow*, const DisplayParams&);
26 WindowContext* NewRasterForAndroid(ANativeWindow*, const DisplayParams&);
VulkanWindowContext_android.cpp 16 WindowContext* NewVulkanForAndroid(ANativeWindow* window, const DisplayParams& params) {
41 WindowContext* ctx = new VulkanWindowContext(params, createVkSurface, canPresent);
RasterWindowContext_android.cpp 96 WindowContext* NewRasterForAndroid(ANativeWindow* window, const DisplayParams& params) {
97 WindowContext* ctx = new RasterWindowContext_android(window, params);
GLWindowContext_android.cpp 155 WindowContext* NewGLForAndroid(ANativeWindow* window, const DisplayParams& params) {
156 WindowContext* ctx = new GLWindowContext_android(window, params);
  /external/skia/tools/viewer/sk_app/mac/
WindowContextFactory_mac.h 16 class WindowContext;
25 inline WindowContext* NewVulkanForMac(const MacWindowInfo&, const DisplayParams&) {
30 WindowContext* NewGLForMac(const MacWindowInfo&, const DisplayParams&);
32 WindowContext* NewRasterForMac(const MacWindowInfo&, const DisplayParams&);
GLWindowContext_mac.cpp 99 WindowContext* NewGLForMac(const MacWindowInfo& info, const DisplayParams& params) {
100 WindowContext* ctx = new GLWindowContext_mac(info, params);
RasterWindowContext_mac.cpp 126 WindowContext* NewRasterForMac(const MacWindowInfo& info, const DisplayParams& params) {
127 WindowContext* ctx = new RasterWindowContext_mac(info, params);
  /external/skia/tools/viewer/sk_app/unix/
WindowContextFactory_unix.h 18 class WindowContext;
32 WindowContext* NewVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
34 WindowContext* NewGLForXlib(const XlibWindowInfo&, const DisplayParams&);
36 WindowContext* NewRasterForXlib(const XlibWindowInfo&, const DisplayParams&);
VulkanWindowContext_unix.cpp 22 WindowContext* NewVulkanForXlib(const XlibWindowInfo& info, const DisplayParams& displayParams) {
69 WindowContext* context = new VulkanWindowContext(displayParams, createVkSurface, canPresent);
GLWindowContext_unix.cpp 133 WindowContext* NewGLForXlib(const XlibWindowInfo& winInfo, const DisplayParams& params) {
134 WindowContext* ctx = new GLWindowContext_xlib(winInfo, params);
RasterWindowContext_unix.cpp 91 WindowContext* NewRasterForXlib(const XlibWindowInfo& info, const DisplayParams& params) {
92 WindowContext* ctx = new RasterWindowContext_xlib(info.fDisplay, info.fWindow, info.fWidth,
  /external/skia/tools/viewer/sk_app/
RasterWindowContext.h 11 #include "WindowContext.h"
15 class RasterWindowContext : public WindowContext {
WindowContext.h 21 class WindowContext {
23 WindowContext() : fContext(nullptr)
28 virtual ~WindowContext() {}
GLWindowContext.h 17 #include "WindowContext.h"
23 class GLWindowContext : public WindowContext {
Window.h 23 class WindowContext;
226 WindowContext* fWindowContext = nullptr;
GLWindowContext.cpp 26 : WindowContext()
VulkanWindowContext.h 16 #include "WindowContext.h"
22 class VulkanWindowContext : public WindowContext {
VulkanWindowContext.cpp 33 : WindowContext()

Completed in 512 milliseconds