render/dmabuf: make src arg const in wlr_dmabuf_attributes_copy

This commit is contained in:
Simon Ser 2021-02-02 19:53:16 +01:00
parent 7ac2ce25e3
commit 3d7aa73867
2 changed files with 2 additions and 2 deletions

View File

@ -40,6 +40,6 @@ void wlr_dmabuf_attributes_finish(struct wlr_dmabuf_attributes *attribs);
* Clones the DMA-BUF attributes.
*/
bool wlr_dmabuf_attributes_copy(struct wlr_dmabuf_attributes *dst,
struct wlr_dmabuf_attributes *src);
const struct wlr_dmabuf_attributes *src);
#endif

View File

@ -13,7 +13,7 @@ void wlr_dmabuf_attributes_finish(struct wlr_dmabuf_attributes *attribs) {
}
bool wlr_dmabuf_attributes_copy(struct wlr_dmabuf_attributes *dst,
struct wlr_dmabuf_attributes *src) {
const struct wlr_dmabuf_attributes *src) {
memcpy(dst, src, sizeof(struct wlr_dmabuf_attributes));
int i;