Home
last modified time | relevance | path

Searched refs:WindowContext (Results 1 – 22 of 22) sorted by relevance

/external/skia/tools/viewer/sk_app/android/
DWindowContextFactory_android.h17 class WindowContext; variable
22 WindowContext* NewVulkanForAndroid(ANativeWindow*, const DisplayParams&);
24 WindowContext* NewGLForAndroid(ANativeWindow*, const DisplayParams&);
26 WindowContext* NewRasterForAndroid(ANativeWindow*, const DisplayParams&);
DVulkanWindowContext_android.cpp16 WindowContext* NewVulkanForAndroid(ANativeWindow* window, const DisplayParams& params) { in NewVulkanForAndroid()
41 WindowContext* ctx = new VulkanWindowContext(params, createVkSurface, canPresent); in NewVulkanForAndroid()
DRasterWindowContext_android.cpp98 WindowContext* NewRasterForAndroid(ANativeWindow* window, const DisplayParams& params) { in NewRasterForAndroid()
99 WindowContext* ctx = new RasterWindowContext_android(window, params); in NewRasterForAndroid()
DGLWindowContext_android.cpp158 WindowContext* NewGLForAndroid(ANativeWindow* window, const DisplayParams& params) { in NewGLForAndroid()
159 WindowContext* ctx = new GLWindowContext_android(window, params); in NewGLForAndroid()
/external/skia/tools/viewer/sk_app/win/
DWindowContextFactory_win.h16 class WindowContext; variable
21 WindowContext* NewVulkanForWin(HWND, const DisplayParams&);
23 WindowContext* NewGLForWin(HWND, const DisplayParams&);
25 WindowContext* NewRasterForWin(HWND, const DisplayParams&);
DVulkanWindowContext_win.cpp21 WindowContext* NewVulkanForWin(HWND hwnd, const DisplayParams& params) { in NewVulkanForWin()
62 WindowContext* ctx = new VulkanWindowContext(params, createVkSurface, canPresent); in NewVulkanForWin()
DRasterWindowContext_win.cpp90 WindowContext* NewRasterForWin(HWND wnd, const DisplayParams& params) { in NewRasterForWin()
91 WindowContext* ctx = new RasterWindowContext_win(wnd, params); in NewRasterForWin()
DGLWindowContext_win.cpp131 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin()
/external/skia/tools/viewer/sk_app/mac/
DWindowContextFactory_mac.h16 class WindowContext; variable
25 inline WindowContext* NewVulkanForMac(const MacWindowInfo&, const DisplayParams&) { in NewVulkanForMac()
30 WindowContext* NewGLForMac(const MacWindowInfo&, const DisplayParams&);
32 WindowContext* NewRasterForMac(const MacWindowInfo&, const DisplayParams&);
DGLWindowContext_mac.cpp99 WindowContext* NewGLForMac(const MacWindowInfo& info, const DisplayParams& params) { in NewGLForMac()
100 WindowContext* ctx = new GLWindowContext_mac(info, params); in NewGLForMac()
DRasterWindowContext_mac.cpp126 WindowContext* NewRasterForMac(const MacWindowInfo& info, const DisplayParams& params) { in NewRasterForMac()
127 WindowContext* ctx = new RasterWindowContext_mac(info, params); in NewRasterForMac()
/external/skia/tools/viewer/sk_app/unix/
DWindowContextFactory_unix.h18 class WindowContext; variable
32 WindowContext* NewVulkanForXlib(const XlibWindowInfo&, const DisplayParams&);
34 WindowContext* NewGLForXlib(const XlibWindowInfo&, const DisplayParams&);
36 WindowContext* NewRasterForXlib(const XlibWindowInfo&, const DisplayParams&);
DVulkanWindowContext_unix.cpp22 WindowContext* NewVulkanForXlib(const XlibWindowInfo& info, const DisplayParams& displayParams) { in NewVulkanForXlib()
69 WindowContext* context = new VulkanWindowContext(displayParams, createVkSurface, canPresent); in NewVulkanForXlib()
DGLWindowContext_unix.cpp135 WindowContext* NewGLForXlib(const XlibWindowInfo& winInfo, const DisplayParams& params) { in NewGLForXlib()
136 WindowContext* ctx = new GLWindowContext_xlib(winInfo, params); in NewGLForXlib()
DRasterWindowContext_unix.cpp93 WindowContext* NewRasterForXlib(const XlibWindowInfo& info, const DisplayParams& params) { in NewRasterForXlib()
94 WindowContext* ctx = new RasterWindowContext_xlib(info.fDisplay, info.fWindow, info.fWidth, in NewRasterForXlib()
/external/skia/tools/viewer/sk_app/
DWindowContext.h21 class WindowContext {
23 WindowContext(const DisplayParams& params) in WindowContext() function
30 virtual ~WindowContext() {} in ~WindowContext()
DRasterWindowContext.h15 class RasterWindowContext : public WindowContext {
17 RasterWindowContext(const DisplayParams& params) : WindowContext(params) {} in RasterWindowContext()
DWindow.h23 class WindowContext; variable
224 WindowContext* fWindowContext = nullptr;
DGLWindowContext.h23 class GLWindowContext : public WindowContext {
DGLWindowContext.cpp24 : WindowContext(params) in GLWindowContext()
DVulkanWindowContext.h22 class VulkanWindowContext : public WindowContext {
DVulkanWindowContext.cpp33 : WindowContext(params) in VulkanWindowContext()