| 291 | } |
| 292 | |
| 293 | Descriptor Following::GetDepthResolveTarget(ICaptureContext &ctx) |
| 294 | { |
| 295 | bool copy = false, clear = false, compute = false; |
| 296 | GetActionContext(ctx, copy, clear, compute); |
| 297 | |
| 298 | if(copy || clear || compute) |
| 299 | return Descriptor(); |
| 300 | else |
| 301 | return ctx.CurPipelineState().GetDepthResolveTarget(); |
| 302 | } |
| 303 | |
| 304 | rdcarray<UsedDescriptor> Following::GetReadWriteResources(ICaptureContext &ctx, ShaderStage stage, |
| 305 | bool onlyUsed) |
no test coverage detected