This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Activate GL context after polling events each frame, bump version
v0.6
Andrew Belt
6 years ago
parent
ec0933e8ff
commit
7d8c04c993
2 changed files
with
2 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+1
-0
src/window.cpp
+ 1
- 1
Makefile
View File
@@ -1,5 +1,5 @@
RACK_DIR ?= .
RACK_DIR ?= .
VERSION = 0.6.2
b
VERSION = 0.6.2
c
FLAGS += \
FLAGS += \
-Iinclude \
-Iinclude \
+ 1
- 0
src/window.cpp
View File
@@ -439,6 +439,7 @@ void windowRun() {
// Poll events
// Poll events
glfwPollEvents();
glfwPollEvents();
glfwMakeContextCurrent(gWindow);
{
{
double xpos, ypos;
double xpos, ypos;
glfwGetCursorPos(gWindow, &xpos, &ypos);
glfwGetCursorPos(gWindow, &xpos, &ypos);
Write
Preview
Loading…
Cancel
Save