summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2017-06-06 10:44:55 -0400
committerChris Michael <cp.michael@samsung.com>2017-06-06 10:44:55 -0400
commit0dc439abbc44e90067c9ad3c2696787285be53d6 (patch)
tree6ee9ae852192f1888b592276de3a683b49c2733e
parent2f10ce10559692b862316b8bda4ecbadb3086b47 (diff)
downloadefl-0dc439abbc44e90067c9ad3c2696787285be53d6.tar.gz
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>
-rw-r--r--src/lib/ecore_drm2/ecore_drm2_private.h2
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
struct
{
const char *path;
- int value, max;
+ double value, max;
Ecore_Drm2_Backlight_Type type;
} backlight;