| 786 | static __forceinline bool GtEqu ( vec4f a, vec4f b, Context &, LineInfo * ) { return strcmp(to_rts(a), to_rts(b))>=0; } |
| 787 | static __forceinline bool Less ( vec4f a, vec4f b, Context &, LineInfo * ) { return strcmp(to_rts(a), to_rts(b))<0; } |
| 788 | static __forceinline bool Gt ( vec4f a, vec4f b, Context &, LineInfo * ) { return strcmp(to_rts(a), to_rts(b))>0; } |
| 789 | static vec4f Add ( vec4f a, vec4f b, Context &, LineInfo * ); |
| 790 | static void SetAdd ( char * a, vec4f b, Context &, LineInfo * ); |
| 791 | }; |