mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
st/wgl: Fix debug output format specifiers of stw_framebuffer_get_size().
This commit is contained in:
parent
b6c601a5e8
commit
c78ac563f1
1 changed files with 3 additions and 3 deletions
|
|
@ -150,13 +150,13 @@ stw_framebuffer_get_size( struct stw_framebuffer *fb )
|
|||
|
||||
#if 0
|
||||
debug_printf("\n");
|
||||
debug_printf("%s: client_position = (%i, %i)\n",
|
||||
debug_printf("%s: client_position = (%li, %li)\n",
|
||||
__FUNCTION__, client_pos.x, client_pos.y);
|
||||
debug_printf("%s: window_rect = (%i, %i) - (%i, %i)\n",
|
||||
debug_printf("%s: window_rect = (%li, %li) - (%li, %li)\n",
|
||||
__FUNCTION__,
|
||||
window_rect.left, window_rect.top,
|
||||
window_rect.right, window_rect.bottom);
|
||||
debug_printf("%s: client_rect = (%i, %i) - (%i, %i)\n",
|
||||
debug_printf("%s: client_rect = (%li, %li) - (%li, %li)\n",
|
||||
__FUNCTION__,
|
||||
fb->client_rect.left, fb->client_rect.top,
|
||||
fb->client_rect.right, fb->client_rect.bottom);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue