   texture tex;
   sampler2D s = sampler_state {
      texture = <tex>;
   };

   float4 ps_main(VS_OUTPUT Input) : COLOR0
   {
     return float4(1.0,1.0,1.0,1.0);
   }


