Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-07-21 | Fix initial display on Windows again | David Robillard | 1 | -0/+1 | |
2019-07-21 | Implement focus on Windows | David Robillard | 1 | -0/+6 | |
2019-07-21 | Implement enter and leave notifications on Windows | David Robillard | 1 | -1/+40 | |
2019-07-21 | Print more information about crossing and focus events | David Robillard | 1 | -4/+6 | |
2019-07-21 | Implement enter and leave notifications on MacOS | David Robillard | 1 | -2/+24 | |
2019-07-21 | Show mouse enter/leave state in pugl_test background | David Robillard | 1 | -0/+5 | |
2019-07-21 | Remove redundant prototypes | David Robillard | 1 | -21/+0 | |
2019-07-21 | Draw during resizing on MacOS | David Robillard | 1 | -2/+32 | |
Unfortunately drawing still stalls if the user just grabs the resize handle until the first resize event happens, but it seems to be impossible to fix this without using another thread. | |||||
2019-07-21 | Clean up Objective C syntax | David Robillard | 1 | -7/+7 | |
2019-07-21 | Draw during resizing on Windows | David Robillard | 1 | -10/+48 | |
2019-07-21 | Draw in pugl_test according to display time | David Robillard | 1 | -21/+21 | |
2019-07-21 | Fix initial window display on Windows | David Robillard | 1 | -5/+7 | |
2019-07-21 | Clean up event loop on MacOS | David Robillard | 1 | -20/+14 | |
2019-07-21 | Fix tracking area implementation on MacOS | David Robillard | 1 | -9/+5 | |
I am not sure why updateTrackingAreas was being spammed before, but that caused the event loop to constantly tick when the mouse was hovered over the window despite nothing else happening. Everything seems to work fine without it, and this seems to match other code, so remove it. Also call super in updateTrackingAreas as suggested by the documentation. | |||||
2019-07-21 | Make time start from approximately zero | David Robillard | 5 | -13/+18 | |
2019-07-20 | Remove redisplay flag and use system events instead | David Robillard | 6 | -23/+9 | |
2019-07-20 | Add CI rows for MinGW | David Robillard | 1 | -0/+32 | |
2019-07-20 | Use C for Windows implementation | David Robillard | 2 | -60/+65 | |
This avoids C++ binary compatibility and dependency hassles when cross-compiling. | |||||
2019-06-30 | Make translateKey take a PuglEventKey | David Robillard | 1 | -9/+9 | |
2019-06-30 | Send a configure event on initial window mapping | David Robillard | 1 | -0/+10 | |
2019-06-30 | Tidy up whitespace | David Robillard | 5 | -3/+2 | |
2019-06-30 | Clean up redundant wrappers around SetWindowLongPtr | David Robillard | 1 | -16/+2 | |
2019-06-30 | Implement attributes on Windows | David Robillard | 1 | -46/+190 | |
2019-06-30 | Clean up window creation on Windows | David Robillard | 1 | -30/+24 | |
2019-06-29 | Fix horizontal mouse axis in pugl_test | David Robillard | 1 | -1/+1 | |
2019-06-29 | Fix various warnings | David Robillard | 4 | -29/+40 | |
2019-06-29 | Implement attributes on MacOS | David Robillard | 1 | -7/+18 | |
2019-06-27 | Enable vsync on Windows | David Robillard | 1 | -0/+9 | |
2019-06-27 | Draw while resizing on Windows | David Robillard | 1 | -0/+2 | |
2019-06-27 | Add pugl_test option to continuously animate and report FPS | David Robillard | 1 | -7/+42 | |
2019-06-27 | Add puglGetTime() | David Robillard | 4 | -0/+42 | |
2019-06-27 | Fix documentation | David Robillard | 3 | -8/+4 | |
2019-06-27 | Remove redundant glFlush on Windows | David Robillard | 1 | -1/+0 | |
2019-06-27 | Fix some warnings on Windows | David Robillard | 1 | -5/+5 | |
2019-06-27 | Remove dead code on Windows | David Robillard | 1 | -17/+0 | |
2019-06-27 | Fix double-buffering | David Robillard | 2 | -8/+5 | |
2019-06-27 | Add pugl_test options for FSAA and double-buffering | David Robillard | 1 | -1/+12 | |
2019-06-27 | Fix window embedding on Windows | Stefan Westerfeld | 1 | -1/+1 | |
2019-06-27 | Fix window embedding on MacOS | Stefan Westerfeld | 1 | -2/+2 | |
2019-06-27 | Make event processing non-blocking on MacOS | Stefan Westerfeld | 1 | -4/+8 | |
2019-06-27 | Defer to NSOpenGLView reshape method | David Robillard | 1 | -0/+1 | |
This apparently does nothing, but the compiler warns about the missing super call. | |||||
2019-06-27 | Build test programs in bundles on MacOS | David Robillard | 1 | -1/+6 | |
This makes keyboard events work in pugl_test. | |||||
2019-06-27 | Disable deprecation warnings on MacOS | David Robillard | 1 | -0/+2 | |
2019-06-27 | Fix const casts | David Robillard | 1 | -10/+10 | |
2019-06-27 | Consistently use uint32_t everywhere | David Robillard | 5 | -22/+22 | |
2019-06-25 | Fix void function prototypes | David Robillard | 2 | -2/+2 | |
2019-06-25 | Fix unnecessary const cast | David Robillard | 1 | -1/+1 | |
2019-04-20 | Add ARM CI rows | David Robillard | 1 | -4/+36 | |
2019-04-14 | Add Gitlab CI configuration | David Robillard | 1 | -0/+40 | |
2019-04-14 | Fix MacOS build | David Robillard | 2 | -1/+6 | |