intel: Fix uninitialized values in debug output for renderbuffer mapping.

This commit is contained in:
Eric Anholt 2011-12-13 12:03:37 -08:00
parent b2469ff043
commit faa44bc2f6
1 changed files with 1 additions and 1 deletions

View File

@ -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;