mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-26 17:26:14 +00:00
Fix horizontal stride translation.
This commit is contained in:
parent
f2f18561e5
commit
d4c82e8278
@ -979,7 +979,7 @@ case 52:
|
||||
{
|
||||
yyval.region.vert_stride = ffs(yyvsp[-5].integer);
|
||||
yyval.region.width = ffs(yyvsp[-3].integer) - 1;
|
||||
yyval.region.horiz_stride = ffs(yyvsp[-1].integer) - 1;
|
||||
yyval.region.horiz_stride = ffs(yyvsp[-1].integer);
|
||||
}
|
||||
break;
|
||||
case 53:
|
||||
|
@ -413,7 +413,7 @@ region: LANGLE INTEGER COMMA INTEGER COMMA INTEGER RANGLE
|
||||
{
|
||||
$$.vert_stride = ffs($2);
|
||||
$$.width = ffs($4) - 1;
|
||||
$$.horiz_stride = ffs($6) - 1;
|
||||
$$.horiz_stride = ffs($6);
|
||||
}
|
||||
;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user