diff options
author | Christopher Michael <cp.michael@samsung.com> | 2019-04-01 08:13:32 -0400 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2019-04-18 07:21:39 -0400 |
commit | 8e0c4d83edd49063fcd0f214168710e0991e9475 (patch) | |
tree | 6408285ccb372fb86be8c4c481c909423321b751 /src/lib/ecore_drm2 | |
parent | 3856e1a0026ff2c917b963051949a528db179d13 (diff) |
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
Diffstat (limited to 'src/lib/ecore_drm2')
-rw-r--r-- | src/lib/ecore_drm2/ecore_drm2_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
72 | 72 | ||
73 | typedef struct _Ecore_Drm2_Atomic_Property | 73 | typedef struct _Ecore_Drm2_Atomic_Property |
74 | { | 74 | { |
75 | uint32_t id, value; | 75 | uint32_t id; |
76 | uint64_t value; | ||
76 | } Ecore_Drm2_Atomic_Property; | 77 | } Ecore_Drm2_Atomic_Property; |
77 | 78 | ||
78 | typedef struct _Ecore_Drm2_Connector_State | 79 | typedef struct _Ecore_Drm2_Connector_State |