mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-21 15:10:21 +01:00
intel: Fix uninitialized values in debug output for renderbuffer mapping.
This commit is contained in:
parent
b2469ff043
commit
faa44bc2f6
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ intel_map_renderbuffer(struct gl_context *ctx,
|
|||
|
||||
DBG("%s: rb %d (%s) mt mapped: (%d, %d) (%dx%d) -> %p/%d\n",
|
||||
__FUNCTION__, rb->Name, _mesa_get_format_name(rb->Format),
|
||||
x, y, w, h, *out_map, *out_stride);
|
||||
x, y, w, h, map, stride);
|
||||
|
||||
*out_map = map;
|
||||
*out_stride = stride;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue