diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-05-12 11:59:40 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-05-12 12:07:31 -0400 |
commit | e577a108cf4d802d9a09fbe7ebb8ea9e02dac688 (patch) | |
tree | 6a7a1504e8c2e79f6a5d49e4ff83746b27d6546d /src/lib/ecore_drm/Ecore_Drm.h | |
parent | df28c380d301e805ece38f54310d4b2992eedfbd (diff) |
ecore-drm: Add a 'name' field to Ecore_Drm_Event_Output
Summary: This adds a new 'name' field to the Ecore_Drm_Event_Output
structure so that when we catch drm output events in E, we can compare
this name to find an e_randr screen and update compositor's outputs.
@feature
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_drm/Ecore_Drm.h')
-rw-r--r-- | src/lib/ecore_drm/Ecore_Drm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ecore_drm/Ecore_Drm.h b/src/lib/ecore_drm/Ecore_Drm.h index f468b56c3f..0a8b7d4665 100644 --- a/src/lib/ecore_drm/Ecore_Drm.h +++ b/src/lib/ecore_drm/Ecore_Drm.h | |||
@@ -147,6 +147,7 @@ struct _Ecore_Drm_Event_Output | |||
147 | int transform; | 147 | int transform; |
148 | const char *make; | 148 | const char *make; |
149 | const char *model; | 149 | const char *model; |
150 | const char *name; /** @since 1.15 */ | ||
150 | Eina_Bool plug : 1; | 151 | Eina_Bool plug : 1; |
151 | }; | 152 | }; |
152 | 153 | ||