diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-11-13 13:27:57 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-11-27 09:55:16 +0100 |
commit | 241730a71bcde0aca285c9e28d3811693e259dce (patch) | |
tree | 3131ecf27724a09b75eb24737c63b06f0272044a /vcl/inc/skia | |
parent | 178079863415bd3618b2008c20aa42ed50ca90ea (diff) |
make Skia VCL backend fall back to raster if vulkan doesn't work
Change-Id: Ic446f6f85e5ebc2e50cb51a3ed1e732b8976a193
Diffstat (limited to 'vcl/inc/skia')
-rw-r--r-- | vcl/inc/skia/gdiimpl.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/inc/skia/gdiimpl.hxx b/vcl/inc/skia/gdiimpl.hxx index 195b5d877eed..7c41e98a91b5 100644 --- a/vcl/inc/skia/gdiimpl.hxx +++ b/vcl/inc/skia/gdiimpl.hxx @@ -241,14 +241,6 @@ protected: SkScalar toSkX(long x) const { return mIsGPU ? x + 0.5 : x; } SkScalar toSkY(long y) const { return mIsGPU ? y + 0.5 : y; } - // Which Skia backend to use. - enum RenderMethod - { - RenderRaster, - RenderVulkan - }; - static RenderMethod renderMethodToUse(); - #ifdef DBG_UTIL void prefillSurface(); #endif |