Rename _strip_path to wlr_strip_path

since it's a public function
This commit is contained in:
Guido Günther 2018-02-21 10:22:58 +01:00
parent 2e7d886254
commit 2688f6163f
3 changed files with 5 additions and 5 deletions

View file

@ -62,7 +62,7 @@ extern const GLchar fragment_src_external[];
bool _gles2_flush_errors(const char *file, int line);
#define gles2_flush_errors(...) \
_gles2_flush_errors(_strip_path(__FILE__), __LINE__)
_gles2_flush_errors(wlr_strip_path(__FILE__), __LINE__)
#define GL_CALL(func) func; gles2_flush_errors()