OpenGL.h
上传用户:helili
上传日期:2015-01-05
资源大小:34k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. #if !defined(AFX_OPENGL_H__99E34DDC_206E_4E76_99C9_95271B2A801C__INCLUDED_)
  2. #define AFX_OPENGL_H__99E34DDC_206E_4E76_99C9_95271B2A801C__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // OpenGL.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // COpenGL window
  10. class COpenGL : public CWnd
  11. {
  12. // Construction
  13. public:
  14. COpenGL();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(COpenGL)
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~COpenGL();
  26. ////////////////////////////////////////////////////////////////
  27. //添加的成员函数与成员变量
  28. int MySetPixelFormat(HDC hdc);
  29. void DrawColorBox(void);
  30. HDC hdc ;
  31. HGLRC hglrc;
  32. GLfloat step,s;
  33. ////////////////////////////////////////////////////////////////
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(COpenGL)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. afx_msg void OnPaint();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_OPENGL_H__99E34DDC_206E_4E76_99C9_95271B2A801C__INCLUDED_)