]> git.sesse.net Git - nageru/commitdiff
Remove unused code.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 14 May 2019 22:14:46 +0000 (00:14 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 14 May 2019 22:14:46 +0000 (00:14 +0200)
shared/ref_counted_gl_sync.h

index 5604e9e6f8f9a2707c9d2f0e0170d04c3efc688c..e6139426b88c22ae602ce5e5ee9d6ec4eccd92d0 100644 (file)
@@ -27,12 +27,6 @@ private:
                return glFenceSync(condition, flags);
        }
 
-       static void locked_glDeleteSync(GLsync sync)
-       {
-               std::lock_guard<std::mutex> lock(fence_lock);
-               glDeleteSync(sync);
-       }
-
        static std::mutex fence_lock;
 };