This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed missing cast in win32 GL code.
tags/2021-05-28
jules
13 years ago
parent
154616d271
commit
bb30a6da66
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_opengl/native/juce_OpenGL_win32.h
+ 1
- 1
modules/juce_opengl/native/juce_OpenGL_win32.h
View File
@@ -68,7 +68,7 @@ public:
}
if (contextToShareWith != nullptr)
wglShareLists (contextToShareWith, renderContext);
wglShareLists (
(HGLRC)
contextToShareWith, renderContext);
component.getTopLevelComponent()->repaint();
component.repaint();
Write
Preview
Loading…
Cancel
Save