mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-27 12:21:11 +00:00
Fix android build
This commit is contained in:
@@ -588,7 +588,7 @@ void VulkanReplay::RenderMesh(uint32_t eventId, const std::vector<MeshFormat> &s
|
||||
case SolidShade::Lit:
|
||||
pipe = cache.pipes[MeshDisplayPipelines::ePipe_Lit];
|
||||
// point list topologies don't have lighting obvious, just render them as solid
|
||||
if(!pipe)
|
||||
if(pipe == VK_NULL_HANDLE)
|
||||
pipe = cache.pipes[MeshDisplayPipelines::ePipe_SolidDepth];
|
||||
break;
|
||||
case SolidShade::Secondary: pipe = cache.pipes[MeshDisplayPipelines::ePipe_Secondary]; break;
|
||||
|
||||
Reference in New Issue
Block a user