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
This commit is contained in:
Christopher Michael 2019-04-01 08:13:32 -04:00 committed by Mike Blumenkrantz
parent 6df5d038dc
commit d49685cd83
1 changed files with 2 additions and 1 deletions

View File

@ -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