mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
i965: Print more debuginfo in intel_texsubimage_memcpy()
Print info about packing, format, type, and tiling. This will help debug future issues with this fastpath. Reviewed-by: Frank Henigman <fjhenigman@google.com> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
parent
c4205590e7
commit
2f6a315085
1 changed files with 8 additions and 2 deletions
|
|
@ -621,8 +621,14 @@ intel_texsubimage_tiled_memcpy(struct gl_context * ctx,
|
|||
/* We postponed printing this message until having committed to executing
|
||||
* the function.
|
||||
*/
|
||||
DBG("%s: level=%d offset=(%d,%d) (w,h)=(%d,%d)\n",
|
||||
__FUNCTION__, texImage->Level, xoffset, yoffset, width, height);
|
||||
DBG("%s: level=%d offset=(%d,%d) (w,h)=(%d,%d) format=0x%x type=0x%x "
|
||||
"gl_format=0x%x tiling=%d "
|
||||
"packing=(alignment=%d row_length=%d skip_pixels=%d skip_rows=%d) "
|
||||
"for_glTexImage=%d\n",
|
||||
__FUNCTION__, texImage->Level, xoffset, yoffset, width, height,
|
||||
format, type, texImage->TexFormat, image->mt->region->tiling,
|
||||
packing->Alignment, packing->RowLength, packing->SkipPixels,
|
||||
packing->SkipRows, for_glTexImage);
|
||||
|
||||
linear_to_tiled(
|
||||
xoffset * cpp, (xoffset + width) * cpp,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue