Sha256: 4d9eb0a256fe1b702a717e98fdd39732b5cae7a6548067a1decfbe26e3038e60
Contents?: true
Size: 546 Bytes
Versions: 16
Compression:
Stored size: 546 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RAYS_SRC_OPENGL_H__ #define __RAYS_SRC_OPENGL_H__ #if defined(OSX) #include <OpenGL/gl.h> #include <OpenGL/glext.h> #elif defined(IOS) #include <OpenGLES/ES3/gl.h> #include <OpenGLES/ES3/glext.h> #elif defined(WIN32) #include <GL/gl.h> #include <GL/glext.h> #endif #include <rays/opengl.h> namespace Rays { void OpenGL_set_context (Context context); Context OpenGL_get_context (); GLenum OpenGL_get_error (); void OpenGL_check_error (const char* file, int line); }// Rays #endif//EOH
Version data entries
16 entries across 16 versions & 1 rubygems