From b3226e85cb161a13451e516c0ff2043069e80e74 Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Wed, 1 Jul 2020 13:11:54 +0900 Subject: [PATCH] fix wrong backend interface name Change-Id: I79c6ddfee3b257236e1f972ddf7350f68c13b447 --- include/tdm.h | 2 +- include/tdm_backend.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/tdm.h b/include/tdm.h index 127b7f0..4a9d60d 100644 --- a/include/tdm.h +++ b/include/tdm.h @@ -1089,7 +1089,7 @@ tdm_hwc_get_commit_fence(tdm_hwc *hwc, int *commit_fence); * to an element of windows * @return #TDM_ERROR_NONE if success. Otherwise, error value. */ -EXTERN tdm_error +tdm_error tdm_hwc_get_release_fences(tdm_hwc *hwc, uint32_t *num_elements, tdm_hwc_window **hwc_windows, int *fences); diff --git a/include/tdm_backend.h b/include/tdm_backend.h index afbeb5c..f1f8084 100644 --- a/include/tdm_backend.h +++ b/include/tdm_backend.h @@ -996,8 +996,8 @@ typedef struct _tdm_func_hwc { * to an element of windows * @return #TDM_ERROR_NONE if success. Otherwise, error value. */ - tdm_error (*tdm_hwc_get_release_fences)(tdm_hwc *hwc, uint32_t *num_elements, - tdm_hwc_window **hwc_windows, int *release_fences); + tdm_error (*hwc_get_release_fences)(tdm_hwc *hwc, uint32_t *num_elements, + tdm_hwc_window **hwc_windows, int *release_fences); /** * @brief Set the property which has a given id on the hwc object. -- 2.7.4