arb_multisample.h
来自「关于OpenGL的实例教程源代码」· C头文件 代码 · 共 26 行
H
26 行
/*====================================
Name: ARB_multisample.h
Author: Colt "MainRoach" McAnlis
Date: 4/29/04
Desc:
This file contains our external items
====================================*/
#ifndef __ARB_MULTISAMPLE_H__
#define __ARB_MULTISAMPLE_H__
#include <gl/wglext.h> //WGL extensions
#include <gl/glext.h> //GL extensions
//Globals
extern bool arbMultisampleSupported;
extern int arbMultisampleFormat;
//If you don't want multisampling, set this to 0
#define CHECK_FOR_MULTISAMPLE 1
//to check for our sampling
bool InitMultisample(HINSTANCE hInstance,HWND hWnd,PIXELFORMATDESCRIPTOR pfd);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?