mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
backend/backend: add a TODO about image ops ordering
This commit is contained in:
parent
c5145479b0
commit
670b4abae7
1 changed files with 7 additions and 0 deletions
|
@ -195,6 +195,13 @@ struct backend_operations {
|
|||
int max_buffer_age;
|
||||
|
||||
// =========== Post-processing ============
|
||||
|
||||
/* TODO(yshui) Consider preserving the order of image ops.
|
||||
* Currently in both backends, the image ops are applied lazily when needed.
|
||||
* However neither backends preserve the order of image ops, they just applied all
|
||||
* pending lazy ops in a pre-determined fixed order, regardless in which order
|
||||
* they were originally applied. This might lead to inconsistencies.*/
|
||||
|
||||
/**
|
||||
* Manipulate an image
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue