oglquad.h
来自「游戏编程精华02-含有几十个游戏编程例子」· C头文件 代码 · 共 45 行
H
45 行
/******************************************************************************
Copyright (C) 1999, 2000 NVIDIA Corporation
This file is provided without support, instruction, or implied warranty of any
kind. NVIDIA makes no guarantee of its fitness for a particular purpose and is
not liable under any circumstances for any damages or loss whatsoever arising
from the use or inability to use this file or items derived from it.
Comments:
******************************************************************************/
#ifndef __SHADER_QUAD_H
#define __SHADER_QUAD_H
#include "MouseUI.h"
class CSimpleOGLQuad : public EBEffect
{
public:
CSimpleOGLQuad();
~CSimpleOGLQuad();
virtual EBGFXAPI API() const { return GFXAPI_OPENGL; };
virtual void UpdateProperties();
virtual HRESULT Initialize(HGLRC);
virtual HRESULT Free();
virtual HRESULT Start();
virtual HRESULT Tick(EBTimer* pTimer);
virtual HRESULT ConfirmDevice(PIXELFORMATDESCRIPTOR*);
virtual void Resize(HWND hWnd, int w, int h, bool bUpdate);
virtual void Keyboard(DWORD dwKey, UINT nFlags, bool bDown);
virtual void MouseButton(HWND hWnd, eButtonID button, bool bDown, int x, int y);
virtual void MouseMove(HWND hWnd, int x, int y);
private:
bool m_bWireframe;
MouseUI* m_pUI;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?