diff options
author | Chris Michael <cp.michael@samsung.com> | 2018-02-20 10:33:51 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2018-02-27 09:31:33 -0500 |
commit | ccf064f5ae663245f2c07113ca325b2095998a5a (patch) | |
tree | 739601133f59330aaaa25ac84b00bf050acd3b33 /src | |
parent | 72b192c0128661cc40fda2e66614953a00671243 (diff) |
ecore-drm2: Add API function to retrieve output user data
With the rework of Ecore_Evas drm engine, we need to get the
ecore_evas itself in the pageflip callback so we have to reassign
output->user_data to the ecore_evas which we can then use to retrieve
via this function
This is needed as the pageflip callback will pass us the output on
which the pageflip completed.
@feature
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_drm2/Ecore_Drm2.h | 12 | ||||
-rw-r--r-- | src/lib/ecore_drm2/ecore_drm2_outputs.c | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h index 8b987b920f..fb1884be2d 100644 --- a/src/lib/ecore_drm2/Ecore_Drm2.h +++ b/src/lib/ecore_drm2/Ecore_Drm2.h | |||
@@ -793,6 +793,18 @@ EAPI Eina_Bool ecore_drm2_output_rotation_set(Ecore_Drm2_Output *output, int rot | |||
793 | EAPI void ecore_drm2_output_user_data_set(Ecore_Drm2_Output *o, void *data); | 793 | EAPI void ecore_drm2_output_user_data_set(Ecore_Drm2_Output *o, void *data); |
794 | 794 | ||
795 | /** | 795 | /** |
796 | * Get the user data for a given output | ||
797 | * | ||
798 | * @param output The output to get user data for | ||
799 | * | ||
800 | * @return The user data associated with given output | ||
801 | * | ||
802 | * @ingroup Ecore_Drm2_Output_Group | ||
803 | * @since 1.21 | ||
804 | */ | ||
805 | EAPI void *ecore_drm2_output_user_data_get(Ecore_Drm2_Output *output); | ||
806 | |||
807 | /** | ||
796 | * Get the subpixel state of the output | 808 | * Get the subpixel state of the output |
797 | * @param output the output | 809 | * @param output the output |
798 | * @return The state value | 810 | * @return The state value |
diff --git a/src/lib/ecore_drm2/ecore_drm2_outputs.c b/src/lib/ecore_drm2/ecore_drm2_outputs.c index a27826ee1e..e39f26a6da 100644 --- a/src/lib/ecore_drm2/ecore_drm2_outputs.c +++ b/src/lib/ecore_drm2/ecore_drm2_outputs.c | |||
@@ -1456,6 +1456,13 @@ ecore_drm2_output_user_data_set(Ecore_Drm2_Output *o, void *data) | |||
1456 | o->user_data = data; | 1456 | o->user_data = data; |
1457 | } | 1457 | } |
1458 | 1458 | ||
1459 | EAPI void * | ||
1460 | ecore_drm2_output_user_data_get(Ecore_Drm2_Output *output) | ||
1461 | { | ||
1462 | EINA_SAFETY_ON_NULL_RETURN_VAL(output, NULL); | ||
1463 | return output->user_data; | ||
1464 | } | ||
1465 | |||
1459 | EAPI void | 1466 | EAPI void |
1460 | ecore_drm2_output_gamma_set(Ecore_Drm2_Output *output, uint16_t size, uint16_t *red, uint16_t *green, uint16_t *blue) | 1467 | ecore_drm2_output_gamma_set(Ecore_Drm2_Output *output, uint16_t size, uint16_t *red, uint16_t *green, uint16_t *blue) |
1461 | { | 1468 | { |