Show
Ignore:
Timestamp:
02/16/07 22:09:34 (2 years ago)
Author:
baxissimo
Message:

Added top level add_blah_callback calls in gui.d to hook the system-level input routines. May rethink this a bit still. That may be wanted in some cases (reshape, or recording all mouse motion for example) , but probably more useful would be routines that get called as a _fallback_ when no gui widget intercepts the event.

Fixed disconnect in signalobj.d

Added disconnect routines to adapter.d

Fixed dxut to work without Derelict.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/luigi/opengl.d

    r6 r46  
    3131module luigi.opengl; 
    3232 
     33version(useDerelict) { 
    3334public import derelict.opengl.gl; 
     35} else { 
     36public import gl; 
     37} 
    3438 
    35