Fix Travis
This commit is contained in:
parent
f02f192f2b
commit
0f0d600a5b
|
@ -959,6 +959,7 @@ void GlslShaderTranslator::EmitStoreResult(const InstructionResult& result,
|
||||||
case InstructionStorageTarget::kDepth:
|
case InstructionStorageTarget::kDepth:
|
||||||
EmitSourceDepth("gl_FragDepth");
|
EmitSourceDepth("gl_FragDepth");
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
case InstructionStorageTarget::kNone:
|
case InstructionStorageTarget::kNone:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,8 +149,8 @@ VkResult xe::gpu::vulkan::BufferCache::CreateVertexDescriptorPool() {
|
||||||
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
||||||
32 * 16384,
|
32 * 16384,
|
||||||
});
|
});
|
||||||
vertex_descriptor_pool_ =
|
vertex_descriptor_pool_ = std::make_unique<ui::vulkan::DescriptorPool>(
|
||||||
std::make_unique<ui::vulkan::DescriptorPool>(*device_, 32 * 16384, pool_sizes);
|
*device_, 32 * 16384, pool_sizes);
|
||||||
|
|
||||||
// 32 storage buffers available to vertex shader.
|
// 32 storage buffers available to vertex shader.
|
||||||
// TODO(DrChat): In the future, this could hold memexport staging data.
|
// TODO(DrChat): In the future, this could hold memexport staging data.
|
||||||
|
|
Loading…
Reference in New Issue