00001 /*==================================== 00002 Name: ARB_multisample.h 00003 Author: Colt "MainRoach" McAnlis 00004 Date: 4/29/04 00005 Desc: 00006 This file contains our external items 00007 00008 ====================================*/ 00009 00010 #ifndef __ARB_MULTISAMPLE_H__ 00011 #define __ARB_MULTISAMPLE_H__ 00012 00013 #include "wglext.h" //WGL extensions 00014 #include "glext.h" //GL extensions 00015 00016 //Globals 00017 extern bool arbMultisampleSupported; 00018 extern int arbMultisampleFormat; 00019 00020 //If you don't want multisampling, set this to 0 00021 #define CHECK_FOR_MULTISAMPLE 1 00022 00023 //to check for our sampling 00024 bool InitMultisample(HINSTANCE hInstance,HWND hWnd,PIXELFORMATDESCRIPTOR pfd); 00025 00026 #endif