gl_common.h

来自「The goal of this project is to explore t」· C头文件 代码 · 共 23 行

H
23
字号
#if !defined(BRL_GL_COMMON_H)
#define BRL_GL_COMMON_H
/*+-------------------------------------------------------------------
  Ben Landon
  CSCI E-235

  gl_common.h

  This header is so that I can include the header files needed for
  OpenGL rendering.  On win32 these are windows.h, GL/gl.h and
  GL/glu.h.  On other platforms this set is different.

  I'd like these platform dependencies to be centralized in 
  one place, hence this file.
  
*/

#include <windows.h>
#include <GL/gl.h>
#include <GL/glu.h>

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?