diff options
author | Marek Olšák <[email protected]> | 2015-05-12 22:53:00 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-06-12 15:49:41 +0100 |
commit | add82b672d05b9a6c47b7929cdcdddf25e227b01 (patch) | |
tree | febbd6f5a387367974884693ca65cc0ea98214a9 /src/gallium | |
parent | 3514680b918c2605e082990a411d972b65d41602 (diff) |
clover: clarify and fix the EGL interop error case
Cc: 10.6 <[email protected]>
(cherry picked from commit 6acb61fc9c2c5f81569d17d90a480abc48ec6055)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/clover/api/interop.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/clover/api/interop.cpp b/src/gallium/state_trackers/clover/api/interop.cpp index ea0c7c73c30..b96069f5167 100644 --- a/src/gallium/state_trackers/clover/api/interop.cpp +++ b/src/gallium/state_trackers/clover/api/interop.cpp @@ -31,7 +31,12 @@ extern "C" { PUBLIC bool opencl_dri_event_add_ref(cl_event event) { - return clRetainEvent(event) == CL_SUCCESS; + /* This should fail if the event hasn't been created by + * clEnqueueReleaseGLObjects or clEnqueueReleaseEGLObjects. + * + * TODO: implement the CL functions + */ + return false; /*return clRetainEvent(event) == CL_SUCCESS;*/ } PUBLIC bool |