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
parent 3856e1a002
commit 8e0c4d83ed
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