From b8ff086e2b949d7135eb5031edb3606d29400eac Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 1 Oct 2012 18:46:53 +0200 Subject: [PATCH] Make check_error() output the file as well as the line, now that we have several. --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.h b/util.h index a6ca0e8..ab0ee5d 100644 --- a/util.h +++ b/util.h @@ -17,7 +17,7 @@ GLhandleARB compile_shader(const std::string &shader_src, GLenum type); #ifdef NDEBUG #define check_error() #else -#define check_error() { int err = glGetError(); if (err != GL_NO_ERROR) { printf("GL error 0x%x at line %d\n", err, __LINE__); exit(1); } } +#define check_error() { int err = glGetError(); if (err != GL_NO_ERROR) { printf("GL error 0x%x at %s:%d\n", err, __FILE__, __LINE__); exit(1); } } #endif #endif // !defined(_UTIL_H) -- 2.39.2