mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
freedreno/fdl: Fix typo in tiled_to_linear_2cpp
The non-aarch64 path was copying in the wrong direction. Fixes:7a5a33e0e3("freedreno/fdl: Add tiling/untiling implementation for a6xx/a7xx") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38226> (cherry picked from commit455eb2c751)
This commit is contained in:
parent
4ca61f20f3
commit
b2178afb93
2 changed files with 2 additions and 2 deletions
|
|
@ -3234,7 +3234,7 @@
|
|||
"description": "freedreno/fdl: Fix typo in tiled_to_linear_2cpp",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "7a5a33e0e397c912cd7eb917af505921a89abaa2",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -525,7 +525,7 @@ tiled_to_linear_2cpp(char *_tiled, char *_linear, uint32_t linear_pitch)
|
|||
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15");
|
||||
}
|
||||
#else
|
||||
memcpy_small<2, LINEAR_TO_TILED, FDL_MACROTILE_4_CHANNEL>(
|
||||
memcpy_small<2, TILED_TO_LINEAR, FDL_MACROTILE_4_CHANNEL>(
|
||||
0, 0, 32, 4, _tiled, _linear, linear_pitch, 0, &dummy_config);
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue