From 0a7aebadfbb3534284546aa3ca8612314c08f136 Mon Sep 17 00:00:00 2001 From: Miguel Costa Date: Tue, 26 Jun 2018 16:56:45 +0200 Subject: Update ANGLE to chromium/3280 Change-Id: I0802c0d7486f772d361f87a544d6c5af937f4ca1 Reviewed-by: Friedemann Kleint --- .../angle/src/libANGLE/renderer/FenceSyncImpl.h | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/3rdparty/angle/src/libANGLE/renderer/FenceSyncImpl.h (limited to 'src/3rdparty/angle/src/libANGLE/renderer/FenceSyncImpl.h') diff --git a/src/3rdparty/angle/src/libANGLE/renderer/FenceSyncImpl.h b/src/3rdparty/angle/src/libANGLE/renderer/FenceSyncImpl.h deleted file mode 100644 index 6b78e69d47..0000000000 --- a/src/3rdparty/angle/src/libANGLE/renderer/FenceSyncImpl.h +++ /dev/null @@ -1,35 +0,0 @@ -// -// Copyright (c) 2015 The ANGLE Project Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. -// - -// FenceSyncImpl.h: Defines the rx::FenceSyncImpl class. - -#ifndef LIBANGLE_RENDERER_FENCESYNCIMPL_H_ -#define LIBANGLE_RENDERER_FENCESYNCIMPL_H_ - -#include "libANGLE/Error.h" - -#include "common/angleutils.h" - -#include "angle_gl.h" - -namespace rx -{ - -class FenceSyncImpl : angle::NonCopyable -{ - public: - FenceSyncImpl() { }; - virtual ~FenceSyncImpl() { }; - - virtual gl::Error set(GLenum condition, GLbitfield flags) = 0; - virtual gl::Error clientWait(GLbitfield flags, GLuint64 timeout, GLenum *outResult) = 0; - virtual gl::Error serverWait(GLbitfield flags, GLuint64 timeout) = 0; - virtual gl::Error getStatus(GLint *outResult) = 0; -}; - -} - -#endif // LIBANGLE_RENDERER_FENCESYNCIMPL_H_ -- cgit v1.2.3