Browse Source

togl: fix MacOS build( fixes #187 )

pull/192/head
nillerusr 1 year ago
parent
commit
3345902612
  1. 11
      public/togl/linuxwin/glmgrext.h
  2. 8
      public/togl/rendermechanism.h

11
public/togl/linuxwin/glmgrext.h

@ -28,16 +28,7 @@ @@ -28,16 +28,7 @@
//===============================================================================
#pragma once
#ifdef OSX
#include <OpenGL/gl.h>
#include <OpenGL/glext.h>
#elif defined(DX_TO_GL_ABSTRACTION)
#include <GL/gl.h>
#include <GL/glext.h>
#else
#error
#endif
#include "SDL_opengl.h"
#ifndef GL_EXT_framebuffer_sRGB
#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9

8
public/togl/rendermechanism.h

@ -34,13 +34,7 @@ @@ -34,13 +34,7 @@
#undef PROTECTED_THINGS_ENABLE
#ifdef OSX
#include <OpenGL/OpenGL.h>
#else
#include <GL/gl.h>
#include <GL/glext.h>
#endif
#include "SDL_opengl.h"
#include "tier0/basetypes.h"
#include "tier0/platform.h"

Loading…
Cancel
Save