Changeset 20981

Show
Ignore:
Timestamp:
01/01/08 12:24:55 (8 months ago)
Author:
patrick
Message:

Exposed vrj::opengl::DrawManager? to Python. Through this interface,
user-level code can register a Python callable as a thread CPU affinity
strategy. Bumped the version to 1.3.9.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PyJuggler/trunk/ChangeLog

    r20972 r20981  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
     3Jan-01-2008 patrick     Exposed vrj::opengl::DrawManager to Python. User-level 
     4                        code can now register a Python callable as a thread 
     5                        CPU affinity strategy. 
     6                        NEW VERSION: 1.3.9 
    37Dec-30-2007 patrick     Updated for Gadgeteer 1.3.18. 
    48                        NEW VERSION: 1.3.8 
  • PyJuggler/trunk/configure.ac

    r20975 r20981  
    416416GADGETEER_PATH([1.3.18], , 
    417417               [AC_MSG_ERROR([*** Gadgeteer is required for PyJuggler ***])]) 
    418 VRJUGGLER_PATH([2.3.11], , 
     418VRJUGGLER_PATH([2.3.14], , 
    419419               [AC_MSG_ERROR([*** VR Juggler is required for PyJuggler ***])]) 
    420420 
  • PyJuggler/trunk/dist/__init__.py

    r20976 r20981  
    66__all__     = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 
    77__build__   = 1 
    8 __version__ = '1.3.8.%d' % __build__ 
     8__version__ = '1.3.9.%d' % __build__ 
    99__date__    = string.join(string.split('$Date$')[1:3], ' ') 
    1010__author__  = 'Patrick Hartling <patrick.hartling@priority5.com>' 
  • PyJuggler/trunk/src/opengl/Makefile.in

    r20975 r20981  
    1717        _App.cpp                \ 
    1818        _ContextData.cpp        \ 
     19        _DrawManager.cpp        \ 
    1920        opengl.cpp 
    2021 
  • PyJuggler/trunk/src/opengl/opengl.cpp

    r20975 r20981  
    99void _Export_App(); 
    1010void _Export_ContextData(); 
     11void _Export_DrawManager(); 
    1112 
    1213// Module ====================================================================== 
     
    2526   _Export_App(); 
    2627   _Export_ContextData(); 
     28   _Export_DrawManager(); 
    2729}