zmike pushed a commit to branch efl-1.22. http://git.enlightenment.org/core/efl.git/commit/?id=d49685cd83c14fa45cc52eb6b16434d7d0606736
commit d49685cd83c14fa45cc52eb6b16434d7d0606736 Author: Christopher Michael <[email protected]> Date: Mon Apr 1 08:13:32 2019 -0400 ecore-drm2: Make atomic property values support uint64_t Some Atomic property values are actually uint64_t, so fix the structure to reflect that. @fix --- src/lib/ecore_drm2/ecore_drm2_private.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h index 25aaac7d71..62b891fcd6 100644 --- a/src/lib/ecore_drm2/ecore_drm2_private.h +++ b/src/lib/ecore_drm2/ecore_drm2_private.h @@ -72,7 +72,8 @@ typedef struct _Ecore_Drm2_Atomic_Blob typedef struct _Ecore_Drm2_Atomic_Property { - uint32_t id, value; + uint32_t id; + uint64_t value; } Ecore_Drm2_Atomic_Property; typedef struct _Ecore_Drm2_Connector_State --
