1struct PixelLocalData { 2 int i; 3 float f; 4}; 5 6pixel_local PixelLocalData pls; 7 8void main() { 9 pls.i++; 10 pls.f *= 2.0; 11} 12