@@ -1176,8 +1176,8 @@ TEST(GraphicsTypesXTest, SpecializationConstants)
11761176
11771177 // Test AddSpecializationConstant deep-copies raw bytes.
11781178 {
1179- Uint8 MutableData[] = {10 , 20 , 30 , 40 , 50 };
1180- const Uint8 RefData[] = {10 , 20 , 30 , 40 , 50 };
1179+ Uint8 MutableData[] = {10 , 20 , 30 , 40 , 50 };
1180+ const Uint8 RefData[] = {10 , 20 , 30 , 40 , 50 };
11811181
11821182 ComputePipelineStateCreateInfoX DescX;
11831183 DescX.AddSpecializationConstant ({" SC_Bytes" , SHADER_TYPE_PIXEL, static_cast <Uint32>(_countof (MutableData)), MutableData});
@@ -1197,10 +1197,10 @@ TEST(GraphicsTypesXTest, SpecializationConstants)
11971197
11981198 // Test create-info wrapper constructor deep-copies raw bytes.
11991199 {
1200- const Uint8 RefData[] = {1 , 2 , 3 , 4 };
1200+ const Uint8 RefData[] = {1 , 2 , 3 , 4 };
12011201 ComputePipelineStateCreateInfoX DescX;
12021202 {
1203- Uint8 MutableData[] = {1 , 2 , 3 , 4 };
1203+ Uint8 MutableData[] = {1 , 2 , 3 , 4 };
12041204 const SpecializationConstant SpecConst{
12051205 " SC_CtorBytes" ,
12061206 SHADER_TYPE_COMPUTE,
0 commit comments