CGL.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // CGL.h: interface for the CGL class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CGL_H__C78240E8_DC59_11D5_812C_5254AB37CDC9__INCLUDED_)
  5. #define AFX_CGL_H__C78240E8_DC59_11D5_812C_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CGL  
  10. {
  11. public:
  12. CGL();
  13. virtual ~CGL();
  14. void SwapBuffers();
  15. void DestroyGL();
  16. bool InitGL( HWND hWnd, int iColorBits);
  17. void Resize(int iWidth, int iHeight);
  18. bool SetGLMenuState();
  19. bool SetGLMissionState();
  20. private:
  21. HGLRC m_hRC; // Permanent rendering context
  22. HDC m_hDC; // Private GDI device context
  23. HWND m_hWnd; // Window to wich the RC is attached
  24. float  m_fov;
  25. };
  26. #endif // !defined(AFX_CGL_H__C78240E8_DC59_11D5_812C_5254AB37CDC9__INCLUDED_)