togl: fix MacOS build( fixes #187 )

This commit is contained in:
nillerusr 2023-02-03 02:27:22 +03:00
parent 9586dc98e4
commit 3345902612
2 changed files with 2 additions and 17 deletions

View File

@ -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

View File

@ -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"