diff options
Diffstat (limited to 'libs/hwui/renderthread/RenderThread.h')
-rw-r--r-- | libs/hwui/renderthread/RenderThread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/hwui/renderthread/RenderThread.h b/libs/hwui/renderthread/RenderThread.h index dd060097ddf7..c5e3746587b8 100644 --- a/libs/hwui/renderthread/RenderThread.h +++ b/libs/hwui/renderthread/RenderThread.h @@ -96,6 +96,8 @@ typedef void (*AST_delete)(ASurfaceTransaction* transaction); typedef void (*AST_apply)(ASurfaceTransaction* transaction); typedef void (*AST_setVisibility)(ASurfaceTransaction* transaction, ASurfaceControl* surface_control, int8_t visibility); +typedef void (*AST_setZOrder)(ASurfaceTransaction* transaction, ASurfaceControl* surface_control, + int32_t z_order); struct ASurfaceControlFunctions { ASurfaceControlFunctions(); @@ -112,6 +114,7 @@ struct ASurfaceControlFunctions { AST_delete transactionDeleteFunc; AST_apply transactionApplyFunc; AST_setVisibility transactionSetVisibilityFunc; + AST_setZOrder transactionSetZOrderFunc; }; class ChoreographerSource; |