v155: Bug 14435 - Remove abbreviations in VkClearColor
diff --git a/icd/intel/cmd_meta.c b/icd/intel/cmd_meta.c
index 9313c22..e39a840 100644
--- a/icd/intel/cmd_meta.c
+++ b/icd/intel/cmd_meta.c
@@ -920,10 +920,10 @@
meta.shader_id = INTEL_DEV_META_FS_CLEAR_COLOR;
meta.samples = img->samples;
- meta.clear_val[0] = pClearColor->u32[0];
- meta.clear_val[1] = pClearColor->u32[1];
- meta.clear_val[2] = pClearColor->u32[2];
- meta.clear_val[3] = pClearColor->u32[3];
+ meta.clear_val[0] = pClearColor->uint32[0];
+ meta.clear_val[1] = pClearColor->uint32[1];
+ meta.clear_val[2] = pClearColor->uint32[2];
+ meta.clear_val[3] = pClearColor->uint32[3];
format = img->layout.format;
for (i = 0; i < rangeCount; i++) {