Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OpenKinect/libfreenect
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.6
Choose a base ref
...
head repository: OpenKinect/libfreenect
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 11, 2017

  1. Allow micview to exit cleanly on Linux (#527)

    This change fixes a bug where micview would hang when the user presses 'q' to
    exit, and you'd have to kill -9 the process to make the window go away.
    
    On Linux, with at least the radeon graphics driver, glutCreateWindow appears to
    spawn several child threads for shaders, a disk cache, and something else:
    
    si_shader:0
    si_shader:1
    si_shader:2
    si_shader:3
    disk_cache:0
    radeon_cs:0
    
    These threads appear to keep the process as a whole from exiting when
    pthread_exit() is called.  The solution is to call glutDestroyWindow(), which
    will cause glutMainLoop() to return, which causes main() to return cleanly.
    zarvox authored and piedar committed Oct 11, 2017
    Configuration menu
    Copy the full SHA
    924298a View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. raspberry pi3 fix (#530)

    Signed-off-by: mertg <[email protected]>
    Reviewed-by: Benn Snyder <[email protected]>
    mertg authored and piedar committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    8816601 View commit details
    Browse the repository at this point in the history
Loading