diff options
author | Chris Michael <cp.michael@samsung.com> | 2017-06-06 10:44:55 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2017-06-06 10:44:55 -0400 |
commit | 0dc439abbc44e90067c9ad3c2696787285be53d6 (patch) | |
tree | 6ee9ae852192f1888b592276de3a683b49c2733e /src/lib | |
parent | 2f10ce10559692b862316b8bda4ecbadb3086b47 (diff) |
ecore-drm2: Fix output backlight value type definitions
When we go to set output backlight level we use doubles, so lets just
store these values as doubles in the structure.
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ecore_drm2/ecore_drm2_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h index abf8b97ffb..1d3300ea11 100644 --- a/src/lib/ecore_drm2/ecore_drm2_private.h +++ b/src/lib/ecore_drm2/ecore_drm2_private.h | |||
@@ -766,7 +766,7 @@ struct _Ecore_Drm2_Output | |||
766 | struct | 766 | struct |
767 | { | 767 | { |
768 | const char *path; | 768 | const char *path; |
769 | int value, max; | 769 | double value, max; |
770 | Ecore_Drm2_Backlight_Type type; | 770 | Ecore_Drm2_Backlight_Type type; |
771 | } backlight; | 771 | } backlight; |
772 | 772 | ||