summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2019-02-25 14:01:05 -0500
committerChristopher Michael <cp.michael@samsung.com>2019-12-03 11:17:28 -0500
commitccd0576df8c1bb2e96039fb749b98f38aa65c72c (patch)
treeb4464b8ace9b81601d23d50c566a8b0bdf9f9daf
parenteddb12338203013c1a71cb4907d1ebf0c2865056 (diff)
downloadefl-ccd0576df8c1bb2e96039fb749b98f38aa65c72c.tar.gz
ecore-drm2: Re-Enable support for more than one output
This small patch removes a temporary block which was disabling outputs which were not marked as primary. This allows us to support multiple outputs in wayland again.
-rw-r--r--src/lib/ecore_drm2/ecore_drm2_outputs.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/ecore_drm2/ecore_drm2_outputs.c b/src/lib/ecore_drm2/ecore_drm2_outputs.c
index 7bf5bc0c71..3832e1782e 100644
--- a/src/lib/ecore_drm2/ecore_drm2_outputs.c
+++ b/src/lib/ecore_drm2/ecore_drm2_outputs.c
@@ -762,12 +762,6 @@ _output_create(Ecore_Drm2_Device *dev, const drmModeRes *res, const drmModeConne
if (!eina_list_count(dev->outputs))
output->primary = EINA_TRUE;
- else
- {
- /* temporarily disable other outputs which are not primary */
- output->connected = EINA_FALSE;
- output->enabled = EINA_FALSE;
- }
dev->outputs = eina_list_append(dev->outputs, output);