From f535b6eaeed44093bed7d90b4be76363c2e2e4f4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 24 May 2021 14:12:17 -0400 Subject: Separate stub backends from other backends Stub backends were a dependency of other backends to allow some code reuse. However, that can cause conflicting symbols if multiple backends are linked into the same binary, which should be possible. To avoid this, move the shared code into the platform implementation, and export those symbols so that backends can use them. This adds some semi-public platform-specific API that can only be used by backends included with pugl. They are undocumented, subject to change at any time without a corresponding version change, and may not be used by third parties (for example by custom backends in an application). --- src/x11_cairo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/x11_cairo.c') diff --git a/src/x11_cairo.c b/src/x11_cairo.c index a0e7d08..d562fc5 100644 --- a/src/x11_cairo.c +++ b/src/x11_cairo.c @@ -152,7 +152,7 @@ puglX11CairoGetContext(PuglView* view) const PuglBackend* puglCairoBackend(void) { - static const PuglBackend backend = {puglX11StubConfigure, + static const PuglBackend backend = {puglX11Configure, puglX11CairoCreate, puglX11CairoDestroy, puglX11CairoEnter, -- cgit v1.2.1