Changeset 7014
- Timestamp:
- 06/21/07 13:20:54
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/include/osgViewer/api/Win32/PixelBufferWin32
r7012 r7014 55 55 /** Make this graphics context current.*/ 56 56 virtual bool makeCurrentImplementation(); 57 virtual bool makeContextCurrentImplementation( GraphicsContext* /*readContext*/ ); 57 58 58 59 /** Release the graphics context.*/ … … 69 70 /** Get native OpenGL graphics context.*/ 70 71 HGLRC getWGLContext() const { return _hglrc; } 72 73 virtual void bindPBufferToTextureImplementation( GLenum /*buffer*/ ); 71 74 72 75 protected: OpenSceneGraph/trunk/src/osgViewer/PixelBufferWin32.cpp
r7013 r7014 58 58 } 59 59 60 bool PixelBufferWin32::valid() const61 {62 return _valid;63 }64 65 60 void PixelBufferWin32::init() 66 61 { … … 75 70 { 76 71 osg::notify(osg::NOTICE) << "PixelBufferWin32::realizeImplementation() not implemented." << std::endl; return false; 77 }78 79 bool PixelBufferWin32::isRealizedImplementation() const80 {81 osg::notify(osg::NOTICE) << "PixelBufferWin32::isRealizedImplementation() not implemented." << std::endl; return false;82 72 } 83 73
