KiCad PCB EDA Suite
Loading...
Searching...
No Matches
gl_context_mgr.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2016 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Maciej Suminski <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#ifndef GL_CONTEXT_MANAGER_H
28#define GL_CONTEXT_MANAGER_H
29
30#include <kicad_gl/kiglad.h> // Must be included first
31#include <wx/glcanvas.h>
32
33#include <kicommon.h>
34
35#include <mutex>
36#include <map>
37
39{
40public:
41
42 GL_CONTEXT_MANAGER() : m_glCtx( nullptr ) {}
43
52 wxGLContext* CreateCtx( wxGLCanvas* aCanvas, const wxGLContext* aOther = nullptr );
53
61 void DestroyCtx( wxGLContext* aContext );
62
68 void DeleteAll();
69
80 void LockCtx( wxGLContext* aContext, wxGLCanvas* aCanvas );
81
88 void UnlockCtx( wxGLContext* aContext );
89
95 wxGLContext* GetCurrentCtx() const
96 {
97 return m_glCtx;
98 }
99
105 wxGLCanvas* GetCurrentCanvas() const
106 {
107 auto it = m_glContexts.find( m_glCtx );
108 return it != m_glContexts.end() ? it->second : nullptr;
109 }
110
116 template<typename Func, typename... Args>
117 auto RunWithoutCtxLock( Func&& aFunction, Args&&... args )
118 {
119 wxGLContext* currentCtx = GetCurrentCtx();
120 wxGLCanvas* currentCanvas = GetCurrentCanvas();
121 UnlockCtx( currentCtx );
122
123 if constexpr (std::is_void_v<decltype(aFunction(std::forward<Args>(args)...))>)
124 {
125 std::forward<Func>(aFunction)(std::forward<Args>(args)...);
126 LockCtx( currentCtx, currentCanvas );
127 return;
128 }
129 else
130 {
131 auto result = std::forward<Func>(aFunction)(std::forward<Args>(args)...);
132 LockCtx( currentCtx, currentCanvas );
133 return result;
134 }
135 }
136
137private:
139 std::map<wxGLContext*, wxGLCanvas*> m_glContexts;
140
142 wxGLContext* m_glCtx;
143
145 std::mutex m_glCtxMutex;
146};
147
148#endif /* GL_CONTEXT_MANAGER_H */
149
void UnlockCtx(wxGLContext *aContext)
Allow other canvases to bind an OpenGL context.
wxGLContext * m_glCtx
Lock to prevent unexpected GL context switching.
wxGLContext * GetCurrentCtx() const
Get the currently bound GL context.
void LockCtx(wxGLContext *aContext, wxGLCanvas *aCanvas)
Set a context as current and prevents other canvases from switching it.
std::map< wxGLContext *, wxGLCanvas * > m_glContexts
< Map of GL contexts & their parent canvases.
auto RunWithoutCtxLock(Func &&aFunction, Args &&... args)
Run the given function first releasing the GL context lock, then restoring it.
wxGLCanvas * GetCurrentCanvas() const
Get the currently bound GL canvas.
#define KICOMMON_API
Definition kicommon.h:28
wxString result
Test unit parsing edge cases and error handling.