Home | History | Annotate | Download | only in P_static_struct
      1 // -target-api 12
      2 #pragma version(1)
      3 #pragma rs java_package_name(com.example);
      4 
      5 typedef struct Plane_s {
      6     float3 point;
      7 } Plane;
      8 
      9 static Plane carouselPlane = {
     10     { 0.0f, 0.0f, 0.0f }
     11 };
     12