From 2b584a94c5c7d05b080795c1487f2ba7499b23c6 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 2 Mar 2020 17:05:29 +0100 Subject: [PATCH] Fix GLES check. --- TracyOpenGL.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TracyOpenGL.hpp b/TracyOpenGL.hpp index b861d22d..234e2504 100644 --- a/TracyOpenGL.hpp +++ b/TracyOpenGL.hpp @@ -1,7 +1,7 @@ #ifndef __TRACYOPENGL_HPP__ #define __TRACYOPENGL_HPP__ -#ifndef GL_TIMESTAMP +#if !defined GL_TIMESTAMP && !defined GL_TIMESTAMP_EXT # error "You must include OpenGL 3.2 headers before including TracyOpenGL.hpp" #endif