Skip to content

Commit

Permalink
Add small integer workaround for qcom.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed Sep 15, 2024
1 parent da63f6e commit 1f69c76
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions parallel-rdp/rdp_renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ bool Renderer::init_caps()
LOGW("Current proprietary Intel Windows driver is tested to perform much better without 8/16-bit integer support.\n");
allow_small_types = false;
}
else if (features.driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY_KHR)
{
LOGW("Current proprietary Qcom driver is known to be buggy with 8/16-bit integer arithmetic, disabling support for time being.\n");
allow_small_types = false;
}

// Intel ANV *must* use small integer arithmetic, or it doesn't pass test suite.
}
Expand Down

0 comments on commit 1f69c76

Please sign in to comment.