gloscontext.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gloscontext.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:53:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gloscontext.cpp,v 1000.1 2004/06/01 20:53:05 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CGlOsContext -- wrapper for Mesa3D's off-screen rendering extension
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/opengl/mesa/gloscontext.hpp>
  41. BEGIN_NCBI_SCOPE
  42. //
  43. // CGlOsContext ctor
  44. // initialize our renderer with a virtual frame buffer of a given size.
  45. // This frame buffer will always be initialized as an RGBA image.
  46. CGlOsContext::CGlOsContext(size_t width, size_t height)
  47.     : m_Image(new CImage(width, height, 4))
  48. {
  49.     // create our off-screen mesa rendering context
  50.     // this context will use the screen image we've defined
  51. #if OSMESA_MAJOR_VERSION * 100 + OSMESA_MINOR_VERSION >= 305
  52.     m_Ctx = OSMesaCreateContextExt( OSMESA_RGBA, 16, 0, 0, NULL );
  53. #else
  54.     m_Ctx = OSMesaCreateContext( OSMESA_RGBA, NULL );
  55. #endif
  56.     if ( !m_Ctx ) {
  57.         LOG_POST(Error << "CGlOsContext(): "
  58.                  "Failed to create off-screen rendering context");
  59.     }
  60. }
  61. // destructor for cleaning up our OSMesa context
  62. CGlOsContext::~CGlOsContext()
  63. {
  64.     if (m_Ctx) {
  65.         OSMesaDestroyContext(m_Ctx);
  66.     }
  67. }
  68. // make the current frame buffer the active buffer for rendering
  69. bool CGlOsContext::MakeCurrent(void)
  70. {
  71.     if ( !m_Ctx ) {
  72.         LOG_POST(Error << "CGlOsContext::MakeCurrent(): "
  73.                  "Attempt to make an invalid context current");
  74.         return false;
  75.     }
  76.     if ( !OSMesaMakeCurrent(m_Ctx, m_Image->SetData(), GL_UNSIGNED_BYTE,
  77.                             m_Image->GetWidth(), m_Image->GetHeight()) ) {
  78.         LOG_POST(Error << "CGlOsContext::MakeCurrent(): "
  79.                  "Failed to make image surface current");
  80.         return false;
  81.     }
  82.     return true;
  83. }
  84. // access the image we use for the virtual frame buffer
  85. const CImage& CGlOsContext::GetBuffer(void) const
  86. {
  87.     return *m_Image;
  88. }
  89. // access the image we use for the virtual frame buffer
  90. CImage& CGlOsContext::SetBuffer(void)
  91. {
  92.     return *m_Image;
  93. }
  94. END_NCBI_SCOPE
  95. /*
  96.  * ===========================================================================
  97.  * $Log: gloscontext.cpp,v $
  98.  * Revision 1000.1  2004/06/01 20:53:05  gouriano
  99.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  100.  *
  101.  * Revision 1.3  2004/05/21 22:27:45  gorelenk
  102.  * Added PCH ncbi_pch.hpp
  103.  *
  104.  * Revision 1.2  2003/06/12 19:46:21  dicuccio
  105.  * Added non-const accessor for the image buffer
  106.  *
  107.  * Revision 1.1  2003/06/09 19:21:44  dicuccio
  108.  * Initial revision
  109.  *
  110.  * ===========================================================================
  111.  */