mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 01:17:49 +00:00
renderer_vulkan: exclude more qcom drivers from extensions
This commit is contained in:
parent
32380366f7
commit
2ccd547309
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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue