Fix Travis

This commit is contained in:
DrChat 2018-04-13 21:45:47 -05:00
parent f02f192f2b
commit 0f0d600a5b
2 changed files with 3 additions and 2 deletions

View File

@ -959,6 +959,7 @@ void GlslShaderTranslator::EmitStoreResult(const InstructionResult& result,
case InstructionStorageTarget::kDepth:
EmitSourceDepth("gl_FragDepth");
break;
default:
case InstructionStorageTarget::kNone:
return;
}

View File

@ -149,8 +149,8 @@ VkResult xe::gpu::vulkan::BufferCache::CreateVertexDescriptorPool() {
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER,
32 * 16384,
});
vertex_descriptor_pool_ =
std::make_unique<ui::vulkan::DescriptorPool>(*device_, 32 * 16384, pool_sizes);
vertex_descriptor_pool_ = std::make_unique<ui::vulkan::DescriptorPool>(
*device_, 32 * 16384, pool_sizes);
// 32 storage buffers available to vertex shader.
// TODO(DrChat): In the future, this could hold memexport staging data.