renderer_vulkan: exclude more qcom drivers from extensions
This commit is contained in:
parent
9dc9aaf4af
commit
8f62e8e63f
2 changed files with 25 additions and 19 deletions
|
|
@ -892,10 +892,6 @@ void RasterizerVulkan::UpdateDynamicStates() {
|
|||
UpdateFrontFace(regs);
|
||||
UpdateStencilOp(regs);
|
||||
|
||||
if (device.IsExtVertexInputDynamicStateSupported()) {
|
||||
UpdateVertexInput(regs);
|
||||
}
|
||||
|
||||
if (state_tracker.TouchStateEnable()) {
|
||||
UpdateDepthBoundsTestEnable(regs);
|
||||
UpdateDepthTestEnable(regs);
|
||||
|
|
@ -918,6 +914,9 @@ void RasterizerVulkan::UpdateDynamicStates() {
|
|||
UpdateBlending(regs);
|
||||
}
|
||||
}
|
||||
if (device.IsExtVertexInputDynamicStateSupported()) {
|
||||
UpdateVertexInput(regs);
|
||||
}
|
||||
}
|
||||
|
||||
void RasterizerVulkan::HandleTransformFeedback() {
|
||||
|
|
|
|||
Reference in a new issue