From: Steinar H. Gunderson Date: Mon, 1 Oct 2012 16:46:53 +0000 (+0200) Subject: Make check_error() output the file as well as the line, now that we have several. X-Git-Tag: 1.0~470 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=b8ff086e2b949d7135eb5031edb3606d29400eac Make check_error() output the file as well as the line, now that we have several. --- 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)