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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gldlist.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:50:44  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gldlist.cpp,v 1000.2 2004/06/01 20:50:44 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.  *    CGlDisplayList        - manager for a single display list
  38.  *    CGlDisplayListCompile - utility class to permit scoped creation of
  39.  *                            display lists.
  40.  */
  41. #include <ncbi_pch.hpp>
  42. #include <gui/opengl/gldlist.hpp>
  43. BEGIN_NCBI_SCOPE
  44. CGlDisplayList::CGlDisplayList()
  45.     : m_DList(0), m_IsValid(false)
  46. {
  47. }
  48. CGlDisplayList::~CGlDisplayList()
  49. {
  50.     Delete();    
  51. }
  52. void CGlDisplayList::x_Init()
  53. {
  54.     if (glIsList(m_DList)) {
  55.         glDeleteLists(m_DList, 1);
  56.     }
  57.     m_DList = glGenLists(1);
  58. }
  59. void CGlDisplayList::Begin(GLenum mode)
  60. {
  61.     if (!glIsList(m_DList)) {
  62.         x_Init();
  63.     }
  64.     glNewList(m_DList, mode);
  65.     m_IsValid = true;
  66. }
  67. void CGlDisplayList::End()
  68. {
  69.     glEndList();
  70. }
  71. void CGlDisplayList::Call() const
  72. {
  73.     glCallList(m_DList);
  74. }
  75. void CGlDisplayList::Delete()
  76. {
  77.     // this may fail if we don't have a valid OpenGL context made current, but
  78.     // we have to risk it.
  79.     if (glIsList(m_DList)) {
  80.         glDeleteLists(m_DList, 1);
  81.         m_DList = 0;
  82.     }
  83.     m_IsValid = false;
  84. }
  85. CGlDisplayListCompile::CGlDisplayListCompile(CGlDisplayList& dlist,
  86.                                              GLenum mode)
  87.     : m_DList(dlist)
  88. {
  89.     m_DList.Begin(mode);
  90. }
  91. CGlDisplayListCompile::~CGlDisplayListCompile()
  92. {
  93.     m_DList.End();
  94. }
  95. END_NCBI_SCOPE
  96. /*
  97.  * ===========================================================================
  98.  * $Log: gldlist.cpp,v $
  99.  * Revision 1000.2  2004/06/01 20:50:44  gouriano
  100.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  101.  *
  102.  * Revision 1.9  2004/05/21 22:27:45  gorelenk
  103.  * Added PCH ncbi_pch.hpp
  104.  *
  105.  * Revision 1.8  2004/03/11 17:38:00  dicuccio
  106.  * Invalid display list is 0, not -1
  107.  *
  108.  * Revision 1.7  2004/02/17 15:15:39  yazhuk
  109.  * Added Delete()
  110.  *
  111.  * Revision 1.6  2003/09/29 15:02:13  johnson
  112.  * isValid set to false upon construction
  113.  *
  114.  * Revision 1.5  2003/08/19 16:34:46  johnson
  115.  * isvalid set to true *whenever* Begin is called
  116.  *
  117.  * Revision 1.4  2003/06/09 19:24:51  dicuccio
  118.  * Changed ctor to take GLenum instead of internal typedef
  119.  *
  120.  * Revision 1.3  2003/01/13 13:10:11  dicuccio
  121.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  122.  * Moved all FLUID-generated code into namespace ncbi.
  123.  *
  124.  * Revision 1.2  2002/12/06 13:59:45  dicuccio
  125.  * Made Call() a const function.
  126.  *
  127.  * Revision 1.1  2002/11/22 18:06:28  dicuccio
  128.  * Initial revision.
  129.  *
  130.  * ===========================================================================
  131.  */