mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
Remove fmt parameter from wlr_texture_write_pixels
It's not allowed to change the format of a texture so remove the confusing parameter.
This commit is contained in:
parent
8beeb88309
commit
cd28637187
6 changed files with 32 additions and 20 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue