comparison DPF-Prymula-audioplugins/dpf/dgl/src/pugl-extra/haiku_stub.cpp @ 3:84e66ea83026

DPF-Prymula-audioplugins-0.231015-2
author prymula <prymula76@outlook.com>
date Mon, 16 Oct 2023 21:53:34 +0200
parents
children
comparison
equal deleted inserted replaced
2:cf2cb71d31dd 3:84e66ea83026
1 // Copyright 2012-2022 David Robillard <d@drobilla.net>
2 // Copyright 2021-2022 Filipe Coelho <falktx@falktx.com>
3 // SPDX-License-Identifier: ISC
4
5 #include "pugl/stub.h"
6
7 #include "../pugl-upstream/src/stub.h"
8
9 #include "pugl/pugl.h"
10
11 const PuglBackend*
12 puglStubBackend(void)
13 {
14 static const PuglBackend backend = {
15 puglStubConfigure,
16 puglStubCreate,
17 puglStubDestroy,
18 puglStubEnter,
19 puglStubLeave,
20 puglStubGetContext,
21 };
22
23 return &backend;
24 }