• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2020 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 
7 // EGLSyncImpl.cpp: Implements the rx::EGLSyncImpl class.
8 
9 #include "libANGLE/renderer/EGLReusableSync.h"
10 
11 #include "angle_gl.h"
12 
13 #include "common/utilities.h"
14 
15 namespace rx
16 {
17 
signal(const egl::Display * display,const gl::Context * context,EGLint mode)18 egl::Error EGLSyncImpl::signal(const egl::Display *display, const gl::Context *context, EGLint mode)
19 {
20     UNREACHABLE();
21     return egl::EglBadMatch();
22 }
23 
dupNativeFenceFD(const egl::Display * display,EGLint * fdOut) const24 egl::Error EGLSyncImpl::dupNativeFenceFD(const egl::Display *display, EGLint *fdOut) const
25 {
26     UNREACHABLE();
27     return egl::EglBadMatch();
28 }
29 
30 }  // namespace rx
31