opengl.h
资源名称:XLT.rar [点击查看]
上传用户:yunyi28
上传日期:2021-04-25
资源大小:6978k
文件大小:0k
源码类别:
分形几何
开发平台:
Visual C++
- #pragma once
- #include "bsipic.h"
- //#pragma comment(lib,"winmm.lib")
- //#pragma comment(lib,"opengl32.lib")
- //#pragma comment(lib,"glu32.lib")
- //#pragma comment(lib,"glaux.lib")
- extern HDC hDC;
- extern HGLRC hRC;
- class opengl
- {
- bsipic m_bsipic;
- public:
- opengl(void);
- public:
- ~opengl(void);
- BOOL SetupPixelFormat(HDC hDC);
- void init(HWND hwnd,int Width,int Height);
- void Render();
- void CleanUp();
- void ClearUI();
- };