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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: glutils.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:50:28  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OPENGL___GL_UTILS__HPP
  10. #define GUI_OPENGL___GL_UTILS__HPP
  11. /*  $Id: glutils.hpp,v 1000.1 2004/06/01 19:50:28 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    OpenGL utility functions
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. /** @addtogroup GUI_OPENGL
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. /////////////////////////////////////////////////////////////////////////////
  49. //  CGlUtils::
  50. //
  51. class NCBI_GUIOPENGL_EXPORT CGlUtils
  52. {
  53. public:
  54.     // status of hardware acceleration.
  55.     enum EAccelState {
  56.         eNotDetermined,
  57.         eAccelerated,
  58.         eNotAccelerated
  59.     };
  60.     // check if there are any OpenGL errors
  61.     static void     CheckGlError();
  62.     // dump many of the most common OpenGL states
  63.     static void     DumpState();
  64.     // get the status of hardware acceleration.  This cannot be determined
  65.     // without an active OpenGL context.
  66.     static EAccelState  GetAccelerated(void);
  67.     // set the status of hardware acceleration.  This is provided to permit a
  68.     // user override of the detected state.
  69.     static void         SetAccelerated(EAccelState acc);
  70. private:
  71.     // hardware acceleration
  72.     static EAccelState m_Accel;
  73. };
  74. #ifndef _DEBUG
  75. //
  76. // in release mode, this function does nothing
  77. //
  78. inline
  79. void CGlUtils::DumpState(void)
  80. {
  81. }
  82. #endif
  83. END_NCBI_SCOPE
  84. /* @} */
  85. /*
  86.  * ===========================================================================
  87.  * $Log: glutils.hpp,v $
  88.  * Revision 1000.1  2004/06/01 19:50:28  gouriano
  89.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  90.  *
  91.  * Revision 1.9  2004/05/11 18:54:22  dicuccio
  92.  * Added doxygne modules info
  93.  *
  94.  * Revision 1.8  2004/05/03 12:43:59  dicuccio
  95.  * Added #include for gui/gui.hpp
  96.  *
  97.  * Revision 1.7  2003/09/29 15:20:07  dicuccio
  98.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  99.  *
  100.  * Revision 1.6  2003/05/06 15:51:56  dicuccio
  101.  * Reorganized CGlCanvas and CGlUtils: moved hardware check into CGlUtils; split
  102.  * CGlCanvas into 2D and 3D variants
  103.  *
  104.  * Revision 1.5  2003/01/13 13:11:42  dicuccio
  105.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  106.  * Moved all FLUID-generated code into namespace ncbi.
  107.  *
  108.  * Revision 1.4  2002/12/19 18:13:03  dicuccio
  109.  * Added export specifiers for Win32.
  110.  *
  111.  * Revision 1.3  2002/11/08 02:06:07  dicuccio
  112.  * Fixed syntax error in preprocessor definition.
  113.  *
  114.  * Revision 1.2  2002/11/07 18:24:48  dicuccio
  115.  * Minor #ifdef changes.  Created macro to wrap dumping of OpenGL state.
  116.  *
  117.  * Revision 1.1  2002/11/04 20:05:38  dicuccio
  118.  * Initial revision
  119.  *
  120.  * ===========================================================================
  121.  */
  122. #endif  // GUI_OPENGL___GL_UTILS__HPP