render/dmabuf: make src arg const in wlr_dmabuf_attributes_copy

master
Simon Ser 4 years ago
parent 7ac2ce25e3
commit 3d7aa73867

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

@ -13,7 +13,7 @@ void wlr_dmabuf_attributes_finish(struct wlr_dmabuf_attributes *attribs) {
} }
bool wlr_dmabuf_attributes_copy(struct wlr_dmabuf_attributes *dst, 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)); memcpy(dst, src, sizeof(struct wlr_dmabuf_attributes));
int i; int i;

Loading…
Cancel
Save