diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-22 04:58:41 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-22 04:58:41 +0200 |
commit | b5b4d6b2bdd1809b2e8af0b7ddec32a8d4f88e9a (patch) | |
tree | 4046ff268eb26106a8030e40a619d7ff96d7a27f /include/utils.h | |
parent | b077177081c61bce1b1e5247389a09383369a827 (diff) |
Fix portal capture on intel, support multiple planes in one egl image (might fix capture on intel iris)
Diffstat (limited to 'include/utils.h')
-rw-r--r-- | include/utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/utils.h b/include/utils.h index c08b3f6..3921dad 100644 --- a/include/utils.h +++ b/include/utils.h @@ -44,4 +44,7 @@ bool gsr_card_path_get_render_path(const char *card_path, char *render_path); int create_directory_recursive(char *path); +/* |img_attr| needs to be at least 44 in size */ +void setup_dma_buf_attrs(intptr_t *img_attr, uint32_t format, uint32_t width, uint32_t height, const int *fds, const uint32_t *offsets, const uint32_t *pitches, const uint64_t *modifiers, int num_planes, bool use_modifier); + #endif /* GSR_UTILS_H */ |