st/nine: Fix nine_ff_ps_key padding
authorAxel Davy <axel.davy@ens.fr>
Sun, 10 May 2015 10:01:10 +0000 (12:01 +0200)
committerAxel Davy <axel.davy@ens.fr>
Fri, 21 Aug 2015 20:21:47 +0000 (22:21 +0200)
Signed-off-by: Axel Davy <axel.davy@ens.fr>
src/gallium/state_trackers/nine/nine_ff.c

index 9638d9c9c42916fa6dacb70ca7f98dac18d72302..4428ce6a19fffba63b32703e0065f4c8a7161050 100644 (file)
@@ -113,10 +113,12 @@ struct nine_ff_ps_key
             } ts[8];
             uint32_t fog : 1; /* for vFog coming from VS */
             uint32_t fog_mode : 2;
-            uint32_t specular : 1; /* 9 32-bit words with this */
+            uint32_t specular : 1;
+            uint32_t pad1 : 28;/* 9 32-bit words with this */
             uint8_t colorarg_b4[3];
             uint8_t colorarg_b5[3];
             uint8_t alphaarg_b4[3]; /* 11 32-bit words plus a byte */
+            uint8_t pad2[3];
         };
         uint64_t value64[6]; /* don't forget to resize PixelShader9.ff_key */
         uint32_t value32[12];