mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Use uint32_t in wlr_renderer_begin signature
This matches the signature of wlr_renderer_impl.begin
This commit is contained in:
parent
7693f61d81
commit
0724b3c453
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ void wlr_renderer_destroy(struct wlr_renderer *r) {
|
|||
}
|
||||
}
|
||||
|
||||
void wlr_renderer_begin(struct wlr_renderer *r, int width, int height) {
|
||||
void wlr_renderer_begin(struct wlr_renderer *r, uint32_t width, uint32_t height) {
|
||||
assert(!r->rendering);
|
||||
|
||||
r->impl->begin(r, width, height);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue