aboutsummaryrefslogtreecommitdiff
path: root/include/render
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-02-21 10:22:58 +0100
committerGuido Günther <agx@sigxcpu.org>2018-02-21 10:25:52 +0100
commit2688f6163f5cce95302bb40ae35ff855ee1ccb1d (patch)
tree5fd6618ac30c81834ae3c4a9a1cfb71a0ed8765e /include/render
parent2e7d8862549a786c5aafcbe20db290377e3228ac (diff)
Rename _strip_path to wlr_strip_path
since it's a public function
Diffstat (limited to 'include/render')
-rw-r--r--include/render/gles2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/render/gles2.h b/include/render/gles2.h
index 797c5293..e015160d 100644
--- a/include/render/gles2.h
+++ b/include/render/gles2.h
@@ -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()