shm: get_buffer(): remove 'copies' argument; it's not used

This commit is contained in:
Daniel Eklöf 2019-11-02 00:23:51 +01:00
parent 632b6ee0ea
commit 8df82938b0
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 4 additions and 7 deletions

3
shm.h
View file

@ -19,6 +19,5 @@ struct buffer {
pixman_image_t *pix;
};
struct buffer *shm_get_buffer(
struct wl_shm *shm, int width, int height, size_t copies);
struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height);
void shm_fini(void);