aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/win_gl.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-01 20:13:20 +0100
committerDavid Robillard <d@drobilla.net>2020-03-01 20:32:43 +0100
commit9426312710ff8b65b21c398010d7d58fb89a25ba (patch)
treeb4adbd863671d6205d038bd55b97c39f8b62cbc1 /pugl/detail/win_gl.c
parent0d37c19ac71d153a093960eadccf791f54fc2547 (diff)
downloadpugl-9426312710ff8b65b21c398010d7d58fb89a25ba.tar.gz
pugl-9426312710ff8b65b21c398010d7d58fb89a25ba.tar.bz2
pugl-9426312710ff8b65b21c398010d7d58fb89a25ba.zip
Cleanup: Use a consistent style for all backend definitions
Diffstat (limited to 'pugl/detail/win_gl.c')
-rw-r--r--pugl/detail/win_gl.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/pugl/detail/win_gl.c b/pugl/detail/win_gl.c
index d722d28..cb08831 100644
--- a/pugl/detail/win_gl.c
+++ b/pugl/detail/win_gl.c
@@ -296,15 +296,13 @@ puglGetProcAddress(const char* name)
const PuglBackend*
puglGlBackend()
{
- static const PuglBackend backend = {
- puglWinGlConfigure,
- puglWinGlCreate,
- puglWinGlDestroy,
- puglWinGlEnter,
- puglWinGlLeave,
- puglStubResize,
- puglStubGetContext
- };
+ static const PuglBackend backend = {puglWinGlConfigure,
+ puglWinGlCreate,
+ puglWinGlDestroy,
+ puglWinGlEnter,
+ puglWinGlLeave,
+ puglStubResize,
+ puglStubGetContext};
return &backend;
}