Skip to content

Commit

Permalink
[VP] pront not DW align
Browse files Browse the repository at this point in the history
print not DW align
  • Loading branch information
jiafengy1 authored and intel-mediadev committed Jun 27, 2024
1 parent c15f6b7 commit aedbec4
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1899,6 +1899,14 @@ MOS_STATUS VpRenderFcKernel::InitFcCurbeData()
(uint16_t)compParams.target[0].surf->rcDst.top;
}

if (!MOS_IS_ALIGNED(m_curbeData.DW69.DestHorizontalBlockOrigin, 4) || !MOS_IS_ALIGNED(m_curbeData.DW69.DestVerticalBlockOrigin, 4))
{
VP_RENDER_NORMALMESSAGE("Block_start_x or Block_start_y is not DW align, Block_start_x = %d, Block_start_y = %d",
m_curbeData.DW69.DestHorizontalBlockOrigin,
m_curbeData.DW69.DestVerticalBlockOrigin);
}


PrintCurbeData(m_curbeData);
return MOS_STATUS_SUCCESS;
}
Expand Down

0 comments on commit aedbec4

Please sign in to comment.