#include "common.h" struct ui_vert_out { half2 tc0 : TEXCOORD0; float4 P : POSITION; }; half4 main ( ui_vert_out I ) : COLOR { half4 r = tex2D (s_base,I.tc0); return r; }