ecore-drm2: Rename output_fb_release to just fb_release

As this function releases FBOs on a given output, lets just shorten
the API function name so it can stay grouped into the ecore_drm2_fb.c
file ... leaving it as ecore_drm2_output_fb_release reads like it
should have gone into the ecore_drm2_output.c file...

NB: No real function changes here, just an API rename.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-09-09 15:08:40 -04:00
parent 50aa37790f
commit 45ce4c8008
3 changed files with 16 additions and 16 deletions

View File

@ -799,6 +799,20 @@ EAPI Eina_Bool ecore_drm2_fb_busy_get(Ecore_Drm2_Fb *fb);
*/
EAPI void ecore_drm2_fb_busy_set(Ecore_Drm2_Fb *fb, Eina_Bool busy);
/**
* Try to force a framebuffer release for an output
*
* This tries to release the next, pending, or current buffer from
* the output. If successful there will be a release callback to
* the registered handler, and the fb will no longer be flagged busy.
*
* @param output The output to force release
*
* @ingroup Ecore_Drm2_Fb_Group
* @since 1.19
*/
EAPI void ecore_drm2_fb_release(Ecore_Drm2_Output *o);
/**
* Set the user data for the output's page flip handler
*
@ -824,20 +838,6 @@ EAPI void ecore_drm2_output_user_data_set(Ecore_Drm2_Output *o, void *data);
*/
EAPI void ecore_drm2_output_release_handler_set(Ecore_Drm2_Output *output, Ecore_Drm2_Release_Handler handler, void *data);
/**
* Try to force a framebuffer release for an output
*
* This tries to release the next, pending, or current buffer from
* the output. If successful there will be a release callback to
* the registered handler, and the fb will no longer be flagged busy.
*
* @param output The output to force release
*
* @ingroup Ecore_Drm2_Output_Group
* @since 1.19
*/
EAPI void ecore_drm2_output_fb_release(Ecore_Drm2_Output *o);
/**
* Get the Framebuffer's gbm buffer object
*

View File

@ -334,7 +334,7 @@ ecore_drm2_fb_busy_set(Ecore_Drm2_Fb *fb, Eina_Bool busy)
}
EAPI void
ecore_drm2_output_fb_release(Ecore_Drm2_Output *o)
ecore_drm2_fb_release(Ecore_Drm2_Output *o)
{
EINA_SAFETY_ON_NULL_RETURN(o);

View File

@ -96,7 +96,7 @@ _evas_outbuf_buffer_swap(Outbuf *ob)
bo = gbm_surface_lock_front_buffer(ob->surface);
if (!bo)
{
ecore_drm2_output_fb_release(ob->priv.output);
ecore_drm2_fb_release(ob->priv.output);
bo = gbm_surface_lock_front_buffer(ob->surface);
}
if (bo) fb = _evas_outbuf_fb_get(ob, bo);