Browse Source
Merge pull request #10775 from liamwhite/cb2
renderer_vulkan: propagate conditional barrier support
pull/15/merge
bunnei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
|
|
|
@ -358,6 +358,7 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, const Device& device |
|
|
|
.support_snorm_render_buffer = true, |
|
|
|
.support_viewport_index_layer = device.IsExtShaderViewportIndexLayerSupported(), |
|
|
|
.support_geometry_shader_passthrough = device.IsNvGeometryShaderPassthroughSupported(), |
|
|
|
.support_conditional_barrier = device.SupportsConditionalBarriers(), |
|
|
|
}; |
|
|
|
|
|
|
|
if (device.GetMaxVertexInputAttributes() < Maxwell::NumVertexAttributes) { |
|
|
|
|