From 9ca30cd1d04cf39411c3ede687805c28ebe2a980 Mon Sep 17 00:00:00 2001 From: Jan-Marek Glogowski Date: Thu, 19 Aug 2021 21:45:42 +0200 Subject: VCL allow plugins to declare OpenGL support ... and get rid of the whole GetBackendCapabilities, which was just overkill. Maybe this should even be some bitmap + enum + set/get function, but I'm too lazy... In the end add a bool for the OpenGL support of the VCL plugin (or maybe sticking it into ImplSVData, which is already some catchall for common VCL data). Change-Id: I9f0ececac482d8e2a94ef6024628e9631b49e773 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120760 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski --- vcl/inc/headless/svpinst.hxx | 4 ---- 1 file changed, 4 deletions(-) (limited to 'vcl/inc/headless/svpinst.hxx') diff --git a/vcl/inc/headless/svpinst.hxx b/vcl/inc/headless/svpinst.hxx index 2f48049b4839..51de503c3b24 100644 --- a/vcl/inc/headless/svpinst.hxx +++ b/vcl/inc/headless/svpinst.hxx @@ -159,8 +159,6 @@ public: // SalBitmap virtual std::shared_ptr CreateSalBitmap() override; - std::shared_ptr GetBackendCapabilities() override; - // wait next event and dispatch // must returned by UserEvent (SalFrame::PostEvent) // and timer @@ -169,8 +167,6 @@ public: virtual bool IsMainThread() const override; virtual void updateMainThread() override; - virtual OpenGLContext* CreateOpenGLContext() override; - virtual OUString GetConnectionIdentifier() override; virtual void AddToRecentDocumentList(const OUString& rFileUrl, const OUString& rMimeType, const OUString& rDocumentService) override; -- cgit