diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-20 21:13:39 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-27 18:50:32 -0400 |
commit | f444a0d14c046b7df5a63f34a6f958cb175eb851 (patch) | |
tree | 080e35b29e515b8128f28810bd3d043e6d1263e6 /include/rootston/output.h | |
parent | 4bf936360d42fb5b96a44fd17028ae66fc462362 (diff) |
Implement layer surface damage
Diffstat (limited to 'include/rootston/output.h')
-rw-r--r-- | include/rootston/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h index 5545d76a..5cdbcb32 100644 --- a/include/rootston/output.h +++ b/include/rootston/output.h @@ -36,7 +36,7 @@ void output_damage_from_view(struct roots_output *output, struct roots_view *view); void output_damage_whole_drag_icon(struct roots_output *output, struct roots_drag_icon *icon); -void output_damage_whole_surface(struct wlr_surface *surface, - double lx, double ly, float rotation, void *data); +void output_damage_from_local_surface(struct roots_output *output, + struct wlr_surface *surface, double ox, double oy, float rotation); #endif |