Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: ui/gl/gl_fence_egl.cc

Issue 903273002: Update from https://crrev.com/315085 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gl/gl_fence_egl.h ('k') | ui/gl/gl_fence_nv.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gl/gl_fence_egl.h" 5 #include "ui/gl/gl_fence_egl.h"
6 6
7 #include "ui/gl/egl_util.h" 7 #include "ui/gl/egl_util.h"
8 #include "ui/gl/gl_bindings.h" 8 #include "ui/gl/gl_bindings.h"
9 #include "ui/gl/gl_context.h"
10 9
11 namespace gfx { 10 namespace gfx {
12 11
13 GLFenceEGL::GLFenceEGL(bool flush) { 12 namespace {
13
14 bool g_ignore_egl_sync_failures = false;
15
16 } // namespace
17
18 // static
19 void GLFenceEGL::SetIgnoreFailures() {
20 g_ignore_egl_sync_failures = true;
21 }
22
23 GLFenceEGL::GLFenceEGL() {
14 display_ = eglGetCurrentDisplay(); 24 display_ = eglGetCurrentDisplay();
15 sync_ = eglCreateSyncKHR(display_, EGL_SYNC_FENCE_KHR, NULL); 25 sync_ = eglCreateSyncKHR(display_, EGL_SYNC_FENCE_KHR, NULL);
16 DCHECK(sync_ != EGL_NO_SYNC_KHR); 26 DCHECK(sync_ != EGL_NO_SYNC_KHR);
17 if (flush) { 27 glFlush();
18 glFlush();
19 } else {
20 flush_event_ = GLContext::GetCurrent()->SignalFlush();
21 }
22 } 28 }
23 29
24 bool GLFenceEGL::HasCompleted() { 30 bool GLFenceEGL::HasCompleted() {
25 EGLint value = 0; 31 EGLint value = 0;
26 if (eglGetSyncAttribKHR(display_, sync_, EGL_SYNC_STATUS_KHR, &value) != 32 if (eglGetSyncAttribKHR(display_, sync_, EGL_SYNC_STATUS_KHR, &value) !=
27 EGL_TRUE) { 33 EGL_TRUE) {
28 LOG(ERROR) << "Failed to get EGLSync attribute. error code:" 34 LOG(ERROR) << "Failed to get EGLSync attribute. error code:"
29 << eglGetError(); 35 << eglGetError();
30 return true; 36 return true;
31 } 37 }
32 38
33 DCHECK(value == EGL_SIGNALED_KHR || value == EGL_UNSIGNALED_KHR); 39 DCHECK(value == EGL_SIGNALED_KHR || value == EGL_UNSIGNALED_KHR);
34 return !value || value == EGL_SIGNALED_KHR; 40 return !value || value == EGL_SIGNALED_KHR;
35 } 41 }
36 42
37 void GLFenceEGL::ClientWait() { 43 void GLFenceEGL::ClientWait() {
38 if (!flush_event_.get() || flush_event_->IsSignaled()) { 44 EGLint flags = 0;
39 EGLint flags = 0; 45 EGLTimeKHR time = EGL_FOREVER_KHR;
40 EGLTimeKHR time = EGL_FOREVER_KHR; 46 EGLint result = eglClientWaitSyncKHR(display_, sync_, flags, time);
41 EGLint result = eglClientWaitSyncKHR(display_, sync_, flags, time); 47 DCHECK_IMPLIES(!g_ignore_egl_sync_failures,
42 DCHECK_NE(EGL_TIMEOUT_EXPIRED_KHR, result); 48 EGL_TIMEOUT_EXPIRED_KHR == result);
43 if (result == EGL_FALSE) { 49 if (result == EGL_FALSE) {
44 LOG(FATAL) << "Failed to wait for EGLSync. error:" 50 LOG(ERROR) << "Failed to wait for EGLSync. error:"
45 << ui::GetLastEGLErrorString(); 51 << ui::GetLastEGLErrorString();
46 } 52 CHECK(g_ignore_egl_sync_failures);
47 } else {
48 LOG(ERROR) << "Trying to wait for uncommitted fence. Skipping...";
49 } 53 }
50 } 54 }
51 55
52 void GLFenceEGL::ServerWait() { 56 void GLFenceEGL::ServerWait() {
53 if (!gfx::g_driver_egl.ext.b_EGL_KHR_wait_sync) { 57 if (!gfx::g_driver_egl.ext.b_EGL_KHR_wait_sync) {
54 ClientWait(); 58 ClientWait();
55 return; 59 return;
56 } 60 }
57 if (!flush_event_.get() || flush_event_->IsSignaled()) { 61 EGLint flags = 0;
58 EGLint flags = 0; 62 if (eglWaitSyncKHR(display_, sync_, flags) == EGL_FALSE) {
59 if (eglWaitSyncKHR(display_, sync_, flags) == EGL_FALSE) { 63 LOG(ERROR) << "Failed to wait for EGLSync. error:"
60 LOG(FATAL) << "Failed to wait for EGLSync. error:" 64 << ui::GetLastEGLErrorString();
61 << ui::GetLastEGLErrorString(); 65 CHECK(g_ignore_egl_sync_failures);
62 }
63 } else {
64 LOG(ERROR) << "Trying to wait for uncommitted fence. Skipping...";
65 } 66 }
66 } 67 }
67 68
68 GLFenceEGL::~GLFenceEGL() { 69 GLFenceEGL::~GLFenceEGL() {
69 eglDestroySyncKHR(display_, sync_); 70 eglDestroySyncKHR(display_, sync_);
70 } 71 }
71 72
72 } // namespace gfx 73 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gl/gl_fence_egl.h ('k') | ui/gl/gl_fence_nv.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698