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(unsigned int Width, unsigned int Height, bool bFullscreen, HWND hWnd);
  17. void Resize( int iHeight,int iFOVAngle);
  18. void ChangeFOVAngle(int state);
  19. private:
  20. int m_ScrWidth;
  21. int m_ScrHeight;
  22. int m_FOV;
  23. HGLRC m_hRC; // Permanent rendering context
  24. HDC m_hDC; // Private GDI device context
  25. HWND m_hWnd; // Window to wich the RC is attached
  26. bool ChangeResolution(unsigned int iHeight,unsigned int iWidth);
  27. bool InitGLState();
  28. };
  29. #endif // !defined(AFX_CGL_H__C78240E8_DC59_11D5_812C_5254AB37CDC9__INCLUDED_)