Changeset 7014

Show
Ignore:
Timestamp:
06/21/07 13:20:54
Author:
robert
Message:

From Trajce Nikolov, windows build fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenSceneGraph/trunk/include/osgViewer/api/Win32/PixelBufferWin32

    r7012 r7014  
    5555        /** Make this graphics context current.*/ 
    5656        virtual bool makeCurrentImplementation(); 
     57        virtual bool makeContextCurrentImplementation( GraphicsContext* /*readContext*/ ); 
    5758 
    5859        /** Release the graphics context.*/ 
     
    6970        /** Get native OpenGL graphics context.*/         
    7071        HGLRC getWGLContext() const { return _hglrc; } 
     72         
     73        virtual void bindPBufferToTextureImplementation( GLenum /*buffer*/ ); 
    7174         
    7275    protected: 
  • OpenSceneGraph/trunk/src/osgViewer/PixelBufferWin32.cpp

    r7013 r7014  
    5858} 
    5959     
    60 bool PixelBufferWin32::valid() const 
    61 { 
    62     return _valid; 
    63 } 
    64  
    6560void PixelBufferWin32::init() 
    6661{ 
     
    7570{ 
    7671    osg::notify(osg::NOTICE) << "PixelBufferWin32::realizeImplementation() not implemented." << std::endl; return false; 
    77 } 
    78  
    79 bool PixelBufferWin32::isRealizedImplementation() const 
    80 { 
    81     osg::notify(osg::NOTICE) << "PixelBufferWin32::isRealizedImplementation() not implemented." << std::endl; return false; 
    8272} 
    8373