examples: screencopy-dmabuf: Fix y-inversion

This commit is contained in:
Andri Yngvason 2020-06-28 14:03:54 +00:00 committed by Simon Ser
parent 1d835f2035
commit a54ed85881
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ int main(int argc, char *argv[]) {
}
write_image("wayland-screenshot.png", buffer.format, buffer.width,
buffer.height, stride, !buffer.y_invert, data);
buffer.height, stride, buffer.y_invert, data);
gbm_bo_unmap(buffer.bo, map_data);
gbm_bo_destroy(buffer.bo);