From: Steinar H. Gunderson Date: Tue, 14 May 2019 22:14:46 +0000 (+0200) Subject: Remove unused code. X-Git-Tag: 1.9.0~43 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=7163b3183566e477057943dd2f325d4984a76eef Remove unused code. --- diff --git a/shared/ref_counted_gl_sync.h b/shared/ref_counted_gl_sync.h index 5604e9e..e613942 100644 --- a/shared/ref_counted_gl_sync.h +++ b/shared/ref_counted_gl_sync.h @@ -27,12 +27,6 @@ private: return glFenceSync(condition, flags); } - static void locked_glDeleteSync(GLsync sync) - { - std::lock_guard lock(fence_lock); - glDeleteSync(sync); - } - static std::mutex fence_lock; };