diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-10-06 20:05:44 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-10-06 20:05:44 +0200 |
commit | d1e59accdb148aa9df4c95a8ba52078a7956d4ce (patch) | |
tree | f0c9483c5f88353d5aa0efac1e330097521f0d2d /shm.h | |
parent | 1af2db7928029eb1ec7db3ee5b865815b22057de (diff) | |
download | wbg-d1e59accdb148aa9df4c95a8ba52078a7956d4ce.tar.gz |
shm: don’t cache buffers
wbg typically only renders a buffer once. If we *do* need to
re-render, it’s because something changed: the scaling factor, or a
new monitor came online etc.
Thus, there’s no point in caching buffers; it just uses up memory.
Diffstat (limited to 'shm.h')
-rw-r--r-- | shm.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -22,4 +22,3 @@ struct buffer { }; struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie); -void shm_fini(void); |