Skip to content

Commit

Permalink
[VP] fix clearview rendertarget type
Browse files Browse the repository at this point in the history
fix clearview rendertarget type to surface
  • Loading branch information
wennibao authored and intel-mediadev committed Dec 1, 2023
1 parent f71b5bd commit 5169f45
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ class SwFilterPipe

RenderTargetType GetRenderTargetType()
{
for (auto subpipe : m_InputPipes)
std::vector<SwFilterSubPipe *> &pipes = (m_InputPipes.size() == 0) ? m_OutputPipes : m_InputPipes;
for (auto subpipe : pipes)
{
if (subpipe)
{
Expand Down

0 comments on commit 5169f45

Please sign in to comment.