1 /**************************************************************************
3 * Copyright 2010 LunarG, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
32 #include "eglcurrent.h"
36 #ifdef EGL_KHR_reusable_sync
40 * Parse the list of sync attributes and return the proper error code.
43 _eglParseSyncAttribList(_EGLSync
*sync
, const EGLint
*attrib_list
)
45 EGLint i
, err
= EGL_SUCCESS
;
50 for (i
= 0; attrib_list
[i
] != EGL_NONE
; i
++) {
51 EGLint attr
= attrib_list
[i
++];
52 EGLint val
= attrib_list
[i
];
57 err
= EGL_BAD_ATTRIBUTE
;
61 if (err
!= EGL_SUCCESS
) {
62 _eglLog(_EGL_DEBUG
, "bad sync attribute 0x%04x", attr
);
72 _eglInitSync(_EGLSync
*sync
, _EGLDisplay
*dpy
, EGLenum type
,
73 const EGLint
*attrib_list
)
77 if (!(type
== EGL_SYNC_REUSABLE_KHR
&& dpy
->Extensions
.KHR_reusable_sync
) &&
78 !(type
== EGL_SYNC_FENCE_KHR
&& dpy
->Extensions
.KHR_fence_sync
))
79 return _eglError(EGL_BAD_ATTRIBUTE
, "eglCreateSyncKHR");
81 _eglInitResource(&sync
->Resource
, sizeof(*sync
), dpy
);
83 sync
->SyncStatus
= EGL_UNSIGNALED_KHR
;
84 sync
->SyncCondition
= EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR
;
86 err
= _eglParseSyncAttribList(sync
, attrib_list
);
87 if (err
!= EGL_SUCCESS
)
88 return _eglError(err
, "eglCreateSyncKHR");
95 _eglGetSyncAttribKHR(_EGLDriver
*drv
, _EGLDisplay
*dpy
, _EGLSync
*sync
,
96 EGLint attribute
, EGLint
*value
)
99 return _eglError(EGL_BAD_PARAMETER
, "eglGetConfigs");
102 case EGL_SYNC_TYPE_KHR
:
105 case EGL_SYNC_STATUS_KHR
:
106 *value
= sync
->SyncStatus
;
108 case EGL_SYNC_CONDITION_KHR
:
109 if (sync
->Type
!= EGL_SYNC_FENCE_KHR
)
110 return _eglError(EGL_BAD_ATTRIBUTE
, "eglGetSyncAttribKHR");
111 *value
= sync
->SyncCondition
;
114 return _eglError(EGL_BAD_ATTRIBUTE
, "eglGetSyncAttribKHR");
122 #endif /* EGL_KHR_reusable_sync */