diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2022-12-01 04:41:43 -0500 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-01 04:41:43 -0500 |
commit | db0e962368244c3171a8f93466eda231dccf2bc7 (patch) | |
tree | 8ccc4ad097ce3ad4afa58ae5290c4bc2859caec3 /include/wlr/render/wlr_texture.h | |
parent | f103dc74d89c88a8e1865ce47843906b0aaa8380 (diff) |
wlr_texture: Expose owning renderer
Diffstat (limited to 'include/wlr/render/wlr_texture.h')
-rw-r--r-- | include/wlr/render/wlr_texture.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/render/wlr_texture.h b/include/wlr/render/wlr_texture.h index 8d401518..87ed993f 100644 --- a/include/wlr/render/wlr_texture.h +++ b/include/wlr/render/wlr_texture.h @@ -21,6 +21,8 @@ struct wlr_texture_impl; struct wlr_texture { const struct wlr_texture_impl *impl; uint32_t width, height; + + struct wlr_renderer *renderer; }; /** |