v155: Bug 14435 - Remove abbreviations in VkClearColor
diff --git a/icd/intel/cmd_pipeline.c b/icd/intel/cmd_pipeline.c
index c6fc123..e48de3b 100644
--- a/icd/intel/cmd_pipeline.c
+++ b/icd/intel/cmd_pipeline.c
@@ -3745,7 +3745,7 @@
cmd_meta_clear_depth_stencil_image(cmdBuffer,
view->img, att->initial_layout,
- clear_val->ds.depth, clear_val->ds.stencil,
+ clear_val->depthStencil.depth, clear_val->depthStencil.stencil,
1, &range);
if (att->stencil_clear_on_load) {
@@ -3753,7 +3753,7 @@
cmd_meta_clear_depth_stencil_image(cmdBuffer,
view->img, att->initial_layout,
- clear_val->ds.depth, clear_val->ds.stencil,
+ clear_val->depthStencil.depth, clear_val->depthStencil.stencil,
1, &range);
}
}