aboutsummaryrefslogtreecommitdiff
path: root/render/wlr_texture.c
diff options
context:
space:
mode:
authornyorain <nyorain@gmail.com>2018-10-15 23:56:56 +0200
committernyorain <nyorain@gmail.com>2018-10-15 23:56:56 +0200
commitcd28637187149a0f90429e63408bacd98033e59f (patch)
treef2409377901db23d677f254ecf6d77f871051016 /render/wlr_texture.c
parent8beeb88309d87474e1b4e8eadcf245a24f04b2d0 (diff)
Remove fmt parameter from wlr_texture_write_pixels
It's not allowed to change the format of a texture so remove the confusing parameter.
Diffstat (limited to 'render/wlr_texture.c')
-rw-r--r--render/wlr_texture.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/wlr_texture.c b/render/wlr_texture.c
index 06872f1e..833032c9 100644
--- a/render/wlr_texture.c
+++ b/render/wlr_texture.c
@@ -55,10 +55,10 @@ bool wlr_texture_is_opaque(struct wlr_texture *texture) {
}
bool wlr_texture_write_pixels(struct wlr_texture *texture,
- enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
- uint32_t height, uint32_t src_x, uint32_t src_y, uint32_t dst_x,
- uint32_t dst_y, const void *data) {
- return texture->impl->write_pixels(texture, wl_fmt, stride, width, height,
+ uint32_t stride, uint32_t width, uint32_t height,
+ uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
+ const void *data) {
+ return texture->impl->write_pixels(texture, stride, width, height,
src_x, src_y, dst_x, dst_y, data);
}